:root{
	--primary-color			: #000000;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #2161AB;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: 'SFProDisplayMedium';
}
* {
	box-sizing: border-box;
  }
  @font-face {
    font-family: 'SFProDisplayMedium';
    src: url('../fonts/SFProDisplayMedium.eot');
    src: url('../fonts/SFProDisplayMedium.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayMedium.woff2') format('woff2'),
         url('../fonts/SFProDisplayMedium.woff') format('woff'),
         url('../fonts/SFProDisplayMedium.ttf') format('truetype'),
         url('../fonts/SFProDisplayMedium.svg#SFProDisplayMedium') format('svg');
}
@font-face {
    font-family: 'SFProDisplayBold';
    src: url('../fonts/SFProDisplayBold.eot');
    src: url('../fonts/SFProDisplayBold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayBold.woff2') format('woff2'),
         url('../fonts/SFProDisplayBold.woff') format('woff'),
         url('../fonts/SFProDisplayBold.ttf') format('truetype'),
         url('../fonts/SFProDisplayBold.svg#SFProDisplayBold') format('svg');
}
@font-face {
    font-family: 'SFProDisplaySemibold';
    src: url('../fonts/SFProDisplaySemibold.eot');
    src: url('../fonts/SFProDisplaySemibold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplaySemibold.woff2') format('woff2'),
         url('../fonts/SFProDisplaySemibold.woff') format('woff'),
         url('../fonts/SFProDisplaySemibold.ttf') format('truetype'),
         url('../fonts/SFProDisplaySemibold.svg#SFProDisplaySemibold') format('svg');
}
@font-face {
    font-family: 'SFProDisplayRegular';
    src: url('../fonts/SFProDisplayRegular.eot');
    src: url('../fonts/SFProDisplayRegular.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayRegular.woff2') format('woff2'),
         url('../fonts/SFProDisplayRegular.woff') format('woff'),
         url('../fonts/SFProDisplayRegular.ttf') format('truetype'),
         url('../fonts/SFProDisplayRegular.svg#SFProDisplayRegular') format('svg');
}
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: 'SFProDisplayMedium';
    font-size: 16px;
    color: #767676;
}
html[lang="ar"] body {
    font-family: "Noto Kufi Arabic", sans-serif !important;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 96px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 160px 0;
}
h1{
    font-family: 'SFProDisplayBold';
    font-size: 72px;
    line-height: 64px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}
html[lang="ar"] h1 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
h2{
    font-family: 'SFProDisplaySemibold';
    font-size: 64px;
    line-height:60px;
    color:var(--text-color);
    margin-bottom: 32px;
    text-transform: capitalize;
}
html[lang="ar"] h2 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
h3{
    font-family: 'SFProDisplaySemibold';
    font-size: 32px;
    line-height: 40px;
    color:var(--text-color);
    margin-bottom: 32px;
}
html[lang="ar"] h3 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
h4{
    font-family: 'SFProDisplaySemibold';
    font-size: 22px;
    line-height: 30px;
    color:var(--text-color);
    margin-bottom: 32px;
}
html[lang="ar"] h4 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
h5{
    font-size:19px;
    line-height: 26px;
    color:var(--text-color);
    margin-bottom: 32px;
    font-family: 'SFProDisplaySemibold';
}
html[lang="ar"] h5 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-family: 'SFProDisplaySemibold';
    color:var(--text-color);
    margin-bottom: 32px;
}
html[lang="ar"] h6 {
   font-family: "Noto Kufi Arabic", sans-serif;
}
p{
    font-size: 24px;
    font-family: 'SFProDisplayMedium';
    font-weight: 500;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 32px;
}
html[lang="ar"] p {
   font-family: "Noto Kufi Arabic", sans-serif;
}
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 24px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:16px 24px;
  border: none;
  border-radius: 64px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color:var(--primary-color);
  font-family: 'SFProDisplaySemibold';
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #fff;
	transition: all 0.3s linear;
	background-color:var(--accent-color);
}
html[lang="ar"] .common-btn,
html[lang="ar"] .appointment-btn{
   font-family: "Noto Kufi Arabic", sans-serif;
   line-height: 16px;
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 80px;
  z-index: 100;
  width: 100%;
}
.main-header .common-btn {
  font-size: 16px;
  height: 50px;
}
.outer-menu {
    padding: 0;
    height: 103px;
    max-height: 103px;
    background-color: #fff;
    border-radius: 24px;
    padding:0 16px;
}
.outer-menu ul li{
    margin:0 8px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 20px;
    line-height: 20px;
    font-weight: normal;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:#0D0D0D;
    padding:10px;
    border-bottom: transparent solid 2px;
}
.outer-menu ul li a:hover, .outer-menu ul li.current-menu-item a {
  color: #0D0D0D;
  border-bottom: var(--accent-color) solid 2px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: #222;
}
.outer-menu ul li.lang-item {
  display: none;
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  width: auto;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 90px !important;
  max-height: 90px !important;
  background-color:#fff!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
  display: flex;
  gap: 8px;
}
.is-sticky .outer-menu {
  height: 77px;
  padding: 12px 32px;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: auto;
  width: auto;
}
.call-btn {
  padding: 12px;
  gap: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #000000;
  border-radius: 45px;
}
.language-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  width: 77px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 24px;
}
.language-switcher select {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  text-transform: uppercase;
}
html[lang="ar"] .main-menu ul {
  display: flex;
  flex-direction: row;
}
html[lang="ar"] .outer-menu ul li a {
  font-weight: 500;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section  {
  position: relative;
  padding: 16px;
}
.hero-image {
  position: relative;
  padding: 445px 0 310px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
}
.hero-video {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    height: 890px;
}
.hero-video::before {
  position: absolute;
  top: 0;
  overflow: hidden;
  border-radius: 32px;
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}
.hero-video-banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
}
.hero-video video {
	width:100%;
	height: 100%;
	object-fit: cover;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-content {
	position: absolute;
	z-index: 20;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 150px 0 0;
	text-align: center;
	bottom: 220px;
	left: 50%;
    transform: translate(-50%, 0);
    top: auto;
}
.hero-content  h1 {
  margin-bottom: 27px;
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
}
.hero-content  p {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: 0;
}
html[lang="ar"] .hero-content p {
  font-weight: 600;
}
.hero-content .common-btn {
  font-weight: normal;
  font-size: 24px;
  line-height: 20px;
  padding: 16px 24px;
  height: 65px;
  font-family: 'SFProDisplayMedium';
}
html[lang="ar"] .hero-content .common-btn {
  font-weight: 500;
}
/* gallery */

.section-title h2 span {
    color: #2161AB;
}
.section-title p {
  color: #373737;
  margin: 0 !important;
}
.section-title {
  margin-bottom: 56px;
  border-bottom: #DADADA solid 2px;
  text-align: center;
  padding-bottom: 20px;
}
.switcher {
  display: table;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background: rgba(202, 201, 201, 0.2);
  border: 1px solid #FFFFFF;
  border-radius: 32px;
  margin: 0 auto 56px;
}
.switcher .nav-pills li {
  margin: 0 28px 0 0;
}
.switcher .nav-pills li:last-child {
  margin-right: 0;
}
.switcher .nav-pills .nav-link.active, 
.switcher .nav-pills .show > .nav-link {  
  background: #FFFFFF;
  border: 1px solid #DFDFDF;
  box-shadow: 0px 46px 18px rgba(163, 159, 159, 0.01), 0px 26px 15px rgba(163, 159, 159, 0.05), 0px 11px 11px rgba(163, 159, 159, 0.09), 0px 3px 6px rgba(163, 159, 159, 0.1);
  border-radius: 24px;
  color: var(--accent-color);
}
.switcher .nav-pills .nav-link {
  padding: 8px 24px;
  font-size: 20px;
  line-height: 18px;
  color: #DADADA;
  border-radius: 24px;
  text-decoration: none;
}
html[lang="ar"] .switcher .nav-pills .nav-link {
  color: #B3AEAE;
}
html[lang="ar"] .switcher .nav-pills .nav-link.active,
html[lang="ar"] .nav-pills .show > .nav-link {
  color: var(--accent-color);
}
.hotel-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px;
  gap: 16px;
}
.hotel-item {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 24px;
  width: calc(25% - 16px);
}
.hotel-image {
  border-radius: 8px;
  margin-bottom: 23px;
  overflow: hidden;
}
.hotel-image img {
  width: 100%;
  height: auto;
}
.hotel-item h3 {
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 8px;
}
.hotel-item .location {
  float: right;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
}
.hotel-item p {
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: #646464;
}
.hotel-booking {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  gap: 32px;
}
.booking-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 8px;
  border: 0.5px solid #C2C2C2;
  border-radius: 12px;
}
.booking-item span {
  font-family: 'SFProDisplaySemibold';
  font-style: normal;
  font-size: 7px;
  line-height: 10px;
  text-transform: capitalize;
  color: #141414;
  display: block;
  text-align: center;
}
html[lang="ar"] .booking-item span {
   font-family: "Noto Kufi Arabic", sans-serif;
}
.hotel-item ul li {
  font-size: 12px;
  line-height: 14px;
  color: #646464;
  text-transform: capitalize;
  margin: 0 0 12px 0;
  padding-left: 25px;
}
html[lang="ar"] .hotel-item ul li {
  font-size: 14px;
  font-weight: 600;
}
.hotel-item ul li.wi-fi {
  background: url(../images/wifi-icon.svg) no-repeat left top;
}
.hotel-item ul li.restaurant {
  background: url(../images/restaurant-icon.svg) no-repeat left top;
}
.hotel-item ul li.reception {
  background: url(../images/reception-icon.svg) no-repeat left top;
}
.hotel-btn-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.hotel-btn-wrap .common-btn {
  background: #000000;
  border: 1px solid #000000;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  height: 43px;
  width: 100%;
}
.hotel-btn-wrap .common-btn.bordered {
  color: #000000;
  background-color: transparent;
}

/* amenties */

.amenties {
  position: relative;
  background-color: #F9F5F5;
}
.amenties .section-title {
  margin-bottom: 40px;
}
.amenties h4 {
  font-size: 24px;
  line-height: 24px;
  color: #373737;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
  margin-bottom: 0;
}
.amenties-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 32px;
  margin-bottom: 48px;
}
.amenties-list li {
  padding: 0;
  margin: 0;
  flex: 0 0 calc((100% - (6 * 32px)) / 7); 
  display: flex;
  align-items: center;
  gap: 32px;
}
html[lang="ar"] .amenties-list li {
  font-weight: 500;
}

/* gallery */


.gallery-carousel-box h3 {
    font-size: 24px;
    line-height: 18px;
    text-transform: capitalize;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
    color: #000;
}
.gallery-carousel-box {
  --gap: 40px;
  position: relative;
  display: flex;
  white-space: nowrap;
   /*overflow: hidden; */
  user-select: none;
  gap: var(--gap);
  margin-top: 0;
}
.gallery-carousel-box img {
  border-radius: 32px;
}
.gallery-scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: galleryscroll 20s linear infinite;
}
@keyframes galleryscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* locations */

.locations {
    position: relative;
  } 
  .location-map {
    background: linear-gradient(90deg, #FFEFBA 0%, #FFF7DD 50%, #FFFFFF 100%);
    box-shadow: 0px 112px 45px rgba(206, 179, 105, 0.01), 0px 63px 38px rgba(206, 179, 105, 0.05), 0px 28px 28px rgba(206, 179, 105, 0.09), 0px 7px 15px rgba(206, 179, 105, 0.1);
    border-radius: 32px;
    padding: 80px 30px;
    gap: 30px;   
    display: flex;
    flex-direction: row;
  }
  .hotel-tab-location {
    margin-left: 40px;
  }
  .map-item {
    background: url(../images/location-map.svg) no-repeat center;
    position: relative;
    width: 600px;
    height: 355px;
    cursor: pointer;
  }
    .map-item ul li {
      position: absolute;
      left: 0;
      top: 0;
      margin: 0;
      padding: 0;
    }
    .map-item ul li.location-map1 {
      top: -11px;
      left: 8.5px;
    }
    .map-item ul li.location-map2 {
      top: 33px;
      left: 6.5px;
    }
    .map-item ul li.location-map3 {
      top: 144.5px;
      left: 87px;
    }
    .map-item ul li.location-map4 {
      top: 140px;
      left: auto;
      right: 49px;
    }
    .map-item ul li.location-map5 {
      top:auto !important;
      left: auto !important;
      right: 75px;
      bottom: 15px;
    }
    .hotel-tab-wrap p {
      cursor: pointer;
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: #000 solid 1px;
      background: url(../images/hotel-icon.svg) no-repeat left top;
      padding-left: 40px;
    }
    .hotel-tab-wrap p svg {
    margin-left: auto;
    float: right;
    }
    .counter-wrap {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 0px;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;      
    }
    .counter-wrap h2 {
      background: linear-gradient(90deg, #3E5151 0%, #DECBA4 95.19%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
      font-size: 64px;
      line-height: 64px;
      margin-bottom: 5px;
      font-family: 'SFProDisplayBold';
      text-align: center;
    }
    
    .counter-wrap p {
      font-size: 20px;
      line-height: 24px;
      color: #646464;
      font-family: 'SFProDisplayRegular';
      margin-bottom: 0;
      text-align: center;
    }
    html[lang="ar"] .counter-wrap h2,
    html[lang="ar"] .counter-wrap p{
       font-family: "Noto Kufi Arabic", sans-serif;
    }
    .counter-item {
      width: 41%;
      padding: 0 5px;
    }
/* gallery */

.gallery-page-section {
  position: relative;
}
.gallery-page-section .common-btn {
  font-size: 18px;
  line-height: 20px;
  margin-top: 40px;
  height: 45px;
}
.bento-gallery-split {
  display: table;
  width: 100%;
}
.bento-left,
.bento-right {
  display: flex;
  flex-wrap: wrap;
  float: left;
}
.bento-left {
  width: 60%;
  display: flex;
}
.bento-right {
  width: 40%;
  display: flex;
}
.bento-item {
  overflow: hidden;
  padding: 8px;
  margin: 0;
}
.bento-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
.bento-left .bento-item.wide,
.bento-left .bento-item:first-child {
  width: 100%;
}
.bento-left .bento-item {
  width: 25%;
  height: 40%;
}
.bento-right .bento-item.tall {
  height: 100%;
  width: 50%;
}
.bento-right .bento-item {
  width: 50%;
  height: 50%;
}
.bento-right .bento-item img {
  aspect-ratio: 1 / 1.05;
}
.bento-right .bento-item.tall img {
  aspect-ratio: 1 / 2.15;
}
.bento-right .bento-item:last-child {
  margin-left: auto;
  margin-top: -52.5%;
}


/* Ads */

.ads {
  position: relative;
  padding: 0;
}
.ads-content-wrap {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #C5A687;
  border-radius: 32px;
}
.ads-content {
  padding: 80px 120px;
  border-radius: 24px 0px 0px 24px;
  max-width: 875px;
}
.ads-content h2 {
  font-size: 72px;
  line-height: 62px;
  color: #FFFFFF;
  font-family: 'SFProDisplayBold';
  text-transform: capitalize;
}
.ads-content p {
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  font-family: 'SFProDisplayRegular';
}
 html[lang="ar"] .ads-content h2,
    html[lang="ar"] .ads-content p {
       font-family: "Noto Kufi Arabic", sans-serif;
    }
.ads-content .btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.ads-content .btn-wrap .common-btn {
  background-color: #fff;
  border: #fff solid 2px;
  color: #000;
  height: 43px;
  font-size: 16px;
  line-height: 16px;
}
.ads-content .btn-wrap .common-btn.bordered {
  background-color: transparent;
  color: #fff;
}


/* services-section */

.services-section {
  position: relative;
  background-color: #6A6054;
}
.services-image {
  border-radius: 32px;
  overflow: hidden;
}
.services-section h2 {
  color: var(--white-color);
}
.services-section h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    color: #f2f2f2;
    margin-bottom: 16px;
}
 .services-section p {
    color: #f2f2f2;
    margin-bottom: 40px;
}
.services-content {
  padding-left: 13px;
}
.service-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 2px solid #dcdcdc;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-bottom: 14px;
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item:hover {
    opacity: 0.8;
}
.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(252, 250, 250, 0.73);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.service-icon img {
    width: 32px;
    height: 32px;
}
.service-item span {
    flex: 1;
    font-size: 32px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 44px;
    text-transform: capitalize;
    color: #ffffff;
}

/*  testimonials */
.testimonials {
  padding-top: 137px;
  padding-bottom: 114px;
}
.testimonials .section-title {
  text-align: left;
}
.testimonials h2 {
  max-width: 672px;
}
.testimonials .review-btn {
  padding: 15px 16px;
  background: #FFF5DE;
  width: 247px;
  height: 65px;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  color: #DE9C00;
  display: block;
  text-align: center;
  float: right;
}

.testimonial-ratings {
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.14);
  border-radius: 24px;
  text-align: center;
  width:311px;
  height: 391px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-ratings ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  width: 27px;
  height: 27px;
}
.testimonial-ratings h4 {
  font-size: 72px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 5px;
}
.testimonial-ratings h4 small {
  font-size: 24px;
  line-height: 32px;
  color: #646464;
}
.testimonial-ratings h6,
.testimonial-ratings p {
  font-size: 16px;
  color: #646464;
  margin:5px 0 0;
}
.testimonial-ratings h6 {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  text-transform: capitalize;
  margin: 15px 0;
}
.testimonial-ratings h6 img {
  margin-right: 5px;
}
.testimonial-text {
  width: 70%;
}
.testimonial-text p {
  color: #646464;
  font-size: 24px;
  line-height: 32px;
}
.testimonial-author {
  color: #202020;
  font-size: 20px;
  line-height: 24px;
  font-style: italic;
}
.testimonial-location p {
font-size: 18px !important;
line-height: 21px !important;
 color: #202020 !important;
 margin: 0 !important;
}

/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 
  ;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-content {
  background: #FFFAFB;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 48px 56px;
  gap: 98px;
}
.testimonial-text {
  position: relative;
  width: 72%;
}
.testimonial-text::before {
  position: absolute;
  left: 0;
  top: -100px;
  content: "";
  width: 100px;
  height: 74px;
  background: url(../images/quote.svg);
}
.testimonial-text::after {
  position: absolute;
  right: 0;
  bottom: -90px;
  content: "";
  width: 100px;
  height: 74px;
  background: url(../images/quote.svg);
  transform: rotate(180deg);
}

/* Text */

.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  display: none;
}
.slick-slider {
  position: relative;
}

   /* Footer */
  .footer {
      background-color: #D2B79D;
      color: #ffffff;
      padding: 96px 0 20px;
  }
    .footer-logo {
      margin-bottom: 56px;
    }
  .footer-logo p {
    font-size: 24px;
    line-height: 28px;
    color: #000;
    max-width: 350px;
  }
  .footer-content {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
  }
  .footer h3 {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 64px;
    max-width: 350px;
    opacity: 0.6;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-address {
    max-width: 290px;
  }
  .footer-title {
      font-size: 24px;
      line-height: 28px;
      text-transform: capitalize;
      color: #000;
      margin-bottom: 15px;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#000;
      text-decoration: none;
      margin-bottom: 7px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5;
  }
  footer .social-icon li a {
    background-color: rgba(0, 0, 0, 0.12) !important;
    color: #000 !important;
   }
    .footer-link a {
      color:var(--primary-color);
    }
  .footer-link:hover,
  .footer-section li a:hover {
      color:var(--primary-color);
  }  
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#000;
      border-top: 1px solid #282828;
      padding: 16px 0;
      opacity: 0.7;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#000;
     margin: 0;
     text-align: right;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }

  /* inner banner */
 
  .inner-hero-section {
     position: relative;
     padding: 16px;
  }
  .inner-hero-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 295px 66px 50px;
    border-radius: 32px;
    min-height: 611px;
  }
    .inner-hero-content {
      position: absolute;
      top: auto;
      left: 0;
      bottom: 66px;
      width: 100%;
      padding: 0 0;
      text-align: center;
    }
  .inner-hero-content h1 {
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 32px;
  }
  .inner-hero-content p{
    margin-bottom: 0;
    color: #FFFFFF;
    max-width: 1178px;
    margin: 0 auto;
  }
  html[lang="ar"] .inner-hero-content p{
    font-weight: 600;
  }
  /* About page */

  .about-page-section {
    position: relative;
  }
 .about-logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 47px;
    justify-content: center;
 }
   .about-page-section h3 {
    font-size: 40px;
    line-height: 42px;
    text-transform: capitalize;
    color: #373737;
    text-align: center;
   }
  .about-page-section p {
    font-size: 22px;
    line-height: 28px;
    color: #373737;
    max-width: 1233px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-amenties {
    max-width: 1233px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;   
    margin: 80px auto 0; 
  }
  .about-amenties-left {
    max-width: 480px;
  }
  .about-amenties-left h3 {
    font-family: 'SFProDisplayMedium';
    text-align: left;
  }
  html[lang="ar"]  .about-amenties-left h3{
       font-family: "Noto Kufi Arabic", sans-serif;
    }
  .about-amenties-left p {
    color: #8C8888;
    margin: 0;
  }
  .about-amenties-right {
    padding: 40px 32px;
    background: #F9F5F5;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 50%;
    max-width: 508px;
  }
    .about-amenties-right li {
      margin-bottom: 32px; 
      color: #646464;
      font-size: 16px;
      margin: 0;
      display: inline-block;
      vertical-align: top;
      width: 48%;
      margin-bottom: 28px;
    }
    .about-amenties-right li:last-child,
    .about-amenties-right li:nth-last-child(2)  {
    margin-bottom: 0;
    }
  .about-amenties-right li img {
    margin-right: 9px;
    width: 32px;
    display: inline-block;
    vertical-align: middle;
  }
  .about-ads-content {
    margin-left: auto;
    max-width: 865px;
  }
  .about-ads-content h2 {
    color: #141414;
  }
  .about-ads-content p {
    color: #827F7F;
  }
  .about-ads-content .btn-wrap .common-btn {
    background-color: #000;
    color: #fff !important;
    border-color: #000;
  }
  .mission-vission {
    margin-top: 120px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .mission-vission .section-title {
    margin-bottom: 106px;
  }
  .mission-vission h2 {
    color: #fff;
    font-size: 40px;
    line-height: 42px;
    text-transform: capitalize;
  }
  .mission-vission p {
    color: #fff;
  }
  .vission-wrap,
   .mission-wrap {
    max-width: 660.5px;    
    position: relative;
  }
  .vission-wrap::before,
   .mission-wrap::before {
    background: url(../images/vission-box-bg.png) no-repeat center bottom;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height:300px;
    z-index: 5;
  }
  .mission-wrap::before {
    background: url(../images/mission-box-bg.png) no-repeat center bottom;
    bottom: -1px;
  }
    .mission-wrap {
      margin-left: auto;
       max-width: 705px;    
    }
  .mission-vission .text-box {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px 16px 16px 0px;
    margin-left: 119px;
    padding-left: 87px;
    display: flex;
    align-items: center;
    min-height: 148px;
  }
  .mission-wrap .vission .text-box {
    margin-left: 112px;
    padding-left: 113px;
  }
  .mission-vission .text-box p {
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    margin: 0;
    color: #fff;
  }
    .mission-vission h3 {
      text-align: right;
      color: #fff;
      padding-bottom: 30px;
      position: relative;
      text-transform: capitalize;
    }
    .vission-misssion-wrap {
      max-width: 1414px;
      margin: 0 auto;
    }
    .our-values {
      text-align: center;
      padding-top: 80px;
    }
    .our-values h2 {
    font-size: 40px;
    line-height: 42px;
    color: #373737;
    text-transform: capitalize;
    }
  .our-values p {
    margin-bottom: 40px;
  }
  .values-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px;
    gap: 16px;
  }
  .values-item {
    width: 49%;
    background: #EBF4FF;
    border-radius: 24px;
    padding: 40px 16px;
    gap: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .values-item h6 {
    color: #2161AB;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 29px;
    margin: 0;
  }
  .values-item p {
    color: #3F3F3F;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
  }
  .values-text {
    text-align: left;
  }


/* Contact page */
.contact-banner {
  background-color: #F6F6F6;
}
.contact-page-section {
  position: relative;
  background-color: #F6F6F6;
}
.contact-page-section .contact-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 64px;
  background-color: #fff;
}
.contact-page-section .container {
  max-width: 1286px;
  margin: 0 auto;
}
.contact-img,
.contact-content-box {
  width: 50%;
}
.contact-content-box {
  padding:32px 56px 0;
}
.contact-content-box label {
  color: #000000;
  opacity: 0.5;
  font-size: 16px;
  line-height: 19px;
  font-family: 'SFProDisplayBold';
  display: block;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: normal;
}
html[lang="ar"] .contact-content-box label {
  font-weight: 500;
}
.contact-content-box input[type="text"],
.contact-content-box input[type="tel"],
.contact-content-box input[type="email"],
.contact-content-box textarea {
  background: #F8F8F8;
  border-radius: 8px;
  padding: 24px 16px;
  font-size: 18px;
  line-height: 21px;
  color:rgba(130, 130, 130, 0.5);
  height: 61px;
  width: 100%;
  border: none !important;
  outline: none !important;
}
.contact-content-box textarea {
  padding: 16px 16px;
  height: 134px;
}
.contact-content-box br {
  display: none;
}
.contact-content-box p {
  margin: 0;
}
.contact-content-box .form-group {
  margin-bottom: 26px;
}
.contact-content-box .form-group:last-child {
  margin: 0;
}
.contact-content-box input[type="submit"] {
  width: 100%;
  text-align: center;
  height: 68px;
  padding:12px 24px;
  border-radius: 40px;
  color: #fff;
  text-transform: capitalize;
  background-color: #000000;
  font-size: 24px;
  margin-top: 16px;
  text-decoration: none !important;
}
.contact-content-box input[type="submit"]:hover {
  background-color: #2161AB;
}
.wpcf7-spinner {
  display: none;
}
.contact-info h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.contact-info p a {
  color: #433F3F;
}
.social-icon li {
  margin: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: top;
}
.social-icon li a {
  width: 44px;
  height: 44px;
  background: #444444;
  border-radius: 40px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 44px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background: #646464;
   color: #fff;
}
.contact-info p,
.contact-info h6 {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 32px;
  color: #433F3F;
}
.contact-info p {
  min-height: 52px;
}
.contact-info h6 {
  margin-bottom: 15px;
}
.contact-info p strong {
  color: #2161AB;
  display: block;
  font-weight: normal;
}
html[lang="ar"] .contact-info p strong {
  font-weight: 500;
}
.map {
  padding-bottom: 120px;
}
.contact-info p.phone {
  background: url(../images/phone-contact-icon.svg) no-repeat left top;
  padding-left: 35px;
}
.contact-info p.email {
  background: url(../images/mail-contact-icon.svg) no-repeat left top;
  padding-left: 35px;
}

/* gallery */

.gallery-list {
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-auto-rows: 400px;
}
.gallery-list-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.gallery-list-item.normal {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-list-item.wide {
  grid-column: span 3;
}

.gallery-list-item.tall {
  grid-row: span 2;
}

.gallery-list-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-list-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-page-section {
  text-align: center;
}

/* hotel-details */

.hotel-amenties .about-amenties-right  {
  width: 100%;
  max-width: 100%;
  padding: 30px 32px;
}
.hotel-amenties .about-amenties-right li {
  width: 14%;
  margin-bottom: 0;
  padding: 10px 0;
}
.hotel-categories {
  margin: 64px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.hotel-categories-item {
  border: 1px solid #DADADA;
  border-radius: 8px;
  padding: 16px;
  gap: 24px;
  width: calc(20% - 16px);
}
.hotel-categories-item h6 {
  font-size: 24px;
  line-height: 26px;
  color: #2161AB;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.hotel-categories-item p {
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-bottom: 0;
}
.hotels h4 {
  text-align: center;
  font-size: 24px;
  color: #373737;
  font-family: 'SFProDisplayMedium';
}
 html[lang="ar"]  .hotels h4{
       font-family: "Noto Kufi Arabic", sans-serif;
    }
.hotel-details-text {
  margin-left: 40px;
}
.product-gallery-wrapper ss3-force-full-width {
  width: 100% !important;
}
div#n2-ss-2 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple {
  background: #fff !important;
}
div#n2-ss-2 .n2-thumbnail-dot img {
  width: 96px !important;
  height: 129px !important;
}
#n2-ss-2 .n2-ss-slide-background {
    border-radius: 20px;
    overflow: hidden;
}
.back-icon {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #C8C8C8;
  border-radius: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  margin-right: 24px;
}
.back-btn {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 32px;
  display: table;
}
.hotel-details-text h3 {
  font-size: 40px;
  margin-bottom: 6px;
  text-transform: capitalize;
}
.hotel-details-text .location {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hotel-details-text p {
  font-size: 20px;
  line-height: 28px;
  color: #646464;
  margin-bottom: 24px;
}
.hotel-details-text p.small {
  font-size: 16px;
}
.hotel-details-text h6 {
  margin-top: 32px;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.hotel-details-text .common-btn 
{
  height: 43px;
  font-size: 16px;
  line-height: 20px;
  width: 210px;
}
.hotel-details-text .booking-wrap {
  max-width: 455px;
  gap: 24px;
  padding: 16px;
  border-radius: 24px;
}
.hotel-details-text .booking-wrap .booking-item img {
  width: 87.75px;
  height: 87.75px;
  margin-bottom: 10px;
}
.hotel-details-text .booking-wrap .booking-item span {
  font-size: 14px;
}
.book-btn {
  width: 85px;
  height: 32px;
  border: 1px solid #000000;
  border-radius: 24px;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  color: #141414;
  padding: 7px 16px;
  display: block;
  margin-top: 12px;
}
.hotel-details h4 {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}
.product-details-section.hotels {
  padding: 80px 0 0 0;
}
.hotel-details .row {
  margin-bottom: 98px;
}
.hotel-amenties {
  padding-top: 32px;
}
.hotel-amenties h4 {
  text-align: center;
}
.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color: #000 !important;
    color: var(--white-color);
    border-radius: 30px !important;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}
  html[lang="ar"] .locations,
  html[lang="ar"] .bento-gallery-split,
  html[lang="ar"] .contact-contact-info .phone,
  html[lang="ar"] .contact-contact-info .phone,
   html[lang="ar"] .contact-page-section .row {
    direction: ltr;
  text-align: left;
  }
    html[lang="ar"] .contact-footer,
    html[lang="ar"] .gallery-carousel-box,
    html[lang="ar"] .product-details-section.hotels {
   direction: ltr;
 }
 html[lang="ar"] .contact-footer {
  unicode-bidi: bidi-override;
 }
html[lang="ar"] .ads-content,
html[lang="ar"] .mission-wrap {
  margin-right: auto;
  margin-left: 0;
}
html[lang="ar"] .about-ads-content {
  margin-left: auto;
  margin-right: 0;
}
   html[lang="ar"] .testimonials .section-title,
   html[lang="ar"] .values-text {
  text-align: right;
}
 html[lang="ar"] .designed {
  text-align: left;
}
 html[lang="ar"] .testimonials .review-btn,
  html[lang="ar"] .hotel-item .location {
  float: left;
}
  /* media query */

  @media only screen and (max-width: 1900px){	
    .map-item {
      background-size: 100% auto;
    }
    .counter-wrap h2 {
      font-size: 57px;
    }
    .counter-wrap p {
        font-size: 18px;
    }

  }

  @media only screen and (max-width: 1800px){	
    .container-fluid {
      padding: 0 80px;
    }   
    .testimonial-content {
      gap: 80px;
    }
    section {
      padding: 140px 0;
    }
    .gallery-list-item:nth-last-child(2){
      grid-column: span 2;
    }
    .switcher .nav-pills li {
      margin: 0 16px 0 0;
    }
    .counter-wrap h2 {
      font-size: 53px;
    }
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 70px;
    }
    .hero-image  {
      padding: 380px 0 260px;
    }
	.hero-content {
		bottom: 200px;
	}
    section {
      padding: 120px 0;
    }
    .testimonials {
      padding-top: 120px;
      padding-bottom: 100px;
    }
    .common-btn, .appointment-btn {
      padding: 16px 20px;
    }
    .booking-wrap {
      gap: 5px;
      padding: 6px;
    }
    .hotel-booking {
      gap: 20px;
    }
    .amenties-list li {
      gap: 20px;
    }
    .counter-wrap h2 {
      font-size: 48px;
      line-height: 58px;
    }
    .hotel-tab-location {
      margin-left: 20px;
    }
    .hotel-tab-location .switcher .nav-pills .nav-link {
      padding: 8px 22px;
    }
  }
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    .hero-image  {
      padding: 320px 0 220px;
    }
	.hero-content {
		bottom: 190px;
	}
    .main-header {
      top: 60px;
    }
    h1 {
      font-size: 64px;
      line-height: 60px;
    }
    h2 {
      font-size: 60px;
      line-height: 56px;
    }
    p {
      font-size: 22px;
      line-height: 30px;
    }
   .booking-item span {
    font-size: 6px;
   }
    .hero-image  p {
      font-size: 22px;
      line-height: 30px;
    }
    .hero-content .common-btn,
    .gallery-carousel-box h3 {
      font-size: 22px;
    }
    section {
      padding: 120px 0;
    }
    .gallery p {
      font-size: 30px;
      line-height: 40px;
    }
    .gallery-carousel-box {
      --gap: 30px;
    }    
    .hotel-btn-wrap .common-btn {
      font-size: 15px;
      padding: 16px 15px;
    }
    .testimonial-text {
      position: relative;
      width: 68%;
    }
    .testimonial-text p {
      font-size: 22px;
      line-height: 28px;
    }
    .hotel-item h3 {
      font-size: 22px;
    }
    .counter-wrap h2 {
      font-size: 42px;
      line-height: 46px;
    }
    .counter-wrap p {
      font-size: 16px;
      line-height: 22px;
    }
    .location-map {
      padding: 60px 15px;
      gap: 20px;
    }
    .hotel-tab-location .switcher .nav-pills li {
      margin: 0 10px 0 0;
    }
    .hotel-tab-location  .switcher .nav-pills .nav-link {
      padding: 8px 20px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }     
   .testimonials .review-btn {
    font-size: 22px;
   }
     .testimonial-text p,
     .footer-logo p {
      font-size: 20px;
      line-height: 28px;
    }
    .footer-title {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-link, .footer-section li a {
      font-size: 20px;
    }
    .ads-content p {
      font-size: 30px;
      line-height: 38px;
    }
    .ads-content h2 {
      font-size: 66px;
      line-height: 60px; 
    } 
    .inner-hero-img {
      min-height: 550px;
    } 
    .hotel-categories-item h6 {
      font-size: 22px;
    }
    .hotel-categories-item p {
      font-size: 18px;
      line-height: 24px;
    }
    .hotel-details-text {
      margin-left: 30px;
    }
    .hotel-details .row {
      margin-bottom: 80px;
    }
    .location-map {
      gap: 0;
    }
    .hotel-tab-location .switcher .nav-pills li {
      margin: 0 7px 0 0;
    }
  }
  @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }
     .main-header.is-sticky .container-fluid {
      padding: 0;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }
    .hero-image  {
      padding: 300px 0 200px;
    }
	.hero-content {
		bottom: 180px;
	}
    h1 {
      font-size: 58px;
      line-height: 56px;
    }
    h2 {
      font-size: 54px;
      line-height: 50px;
      margin-bottom: 25px;
    }
    p,
    .hero-image  p,
    .about-page-section p {
      font-size: 20px;
      line-height: 28px;
    }
    /* .hero-content {
      max-width: 650px;
    } */
    .hero-content .common-btn,
    .gallery-carousel-box h3 {
      font-size: 20px;
    }
    section {
      padding: 90px 0;
    }   
    .gallery-carousel-box {
      --gap: 30px;
    }   
    .common-btn {
      font-size: 22px;
      height: 56px;
    }   
    .footer {
      padding: 70px 0 20px;
    }    
     .inner-hero-img {
        padding: 200px 0;
        min-height: 480px;
     }  
     .mission-vission .section-title {
  margin-bottom: 86px;
} 
    .ads-content h2 {
      font-size: 62px;
      line-height: 56px; 
    }  
    .ads-content {
      padding: 80px 90px;
      max-width: 775px;
    }
    .ads-content p {
      font-size: 28px;
      line-height: 36px;
    }
    .testimonial-content {
      gap: 70px;
    }
     .testimonial-ratings {
        width: 295px;
        height: 345px;
      }
      .testimonial-text::before {
        top: -66px;
        background-size: 80px auto;
        background-repeat: no-repeat;
      }
      .testimonial-text::after {
        bottom: -66px;
        background-size: 80px auto;
        background-repeat: no-repeat;
      }
    .footer-link, .footer-section li a {
      font-size: 20px;
      font-weight: normal;
    }
    .social-icon li {
      margin-right: 1px;
    }
    .testimonial-text p {
      font-size: 20px;
    }
     .hotel-item h3 {
      font-size: 20px;
    }
    .hotel-item p {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 20px;
    }
    .hotel-booking {
      gap: 10px;
    }
    .hotel-item .location {
      font-size: 14px;
    }
     .hotel-btn-wrap .common-btn {
      font-size: 14px;
      padding: 16px 15px;
    }
    .amenties-list {
      margin-bottom: 30px;
    }
    .amenties-list li {
      gap: 10px;
      font-size: 14px;
    }
    html[lang="ar"] .amenties-list li {
       font-size: 15px;
    }
    .testimonials .review-btn {
      font-size: 20px;
      height: 60px;
    }
    .gallery-carousel-box img {
      height: 450px;
      width: auto;
    }
    .testimonials {
      padding-top:90px;
      padding-bottom: 90px;
    }
    .testimonial-ratings {
      width: 250px;
      height: 300px;
    } 
    .mission-vission {
      margin-top: 90px;
    }   
    .vission-wrap, .mission-wrap {
      max-width: 615.5px;
    }
    .vission-wrap {
      margin-bottom: 30px;
    }
    .mission-vission .text-box {
      margin-left: 95px;
    }
    .hotel-details .row {
      margin-bottom: 80px;
    }
    .hotel-details-text p {
      font-size: 18px;
      line-height: 26px;
    }
    .hotel-tab-location  .switcher .nav-pills .nav-link {
      font-size: 18px;
      padding: 8px 18px;
    }
    .counter-wrap {
      gap: 20px;
    }
    .counter-wrap h2 {
      font-size: 40px;
      line-height: 40px;
    }
    .mission-wrap .vission .text-box {
      margin-left: 68px;
      padding-left: 103px;
    }
    .hero-video {
        height: 750px;
    }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }
    .contact-phone, .contact-message {
      padding: 6px;
      margin-right: 0;
    }
    .contact-now-box .common-btn {
      margin-left: 10px;
    } 
    .hero-image {
      padding: 280px 0 150px;
    }
	.hero-content {
		bottom: 150px;
	}
    .hotel-item {
      padding: 12px;
    }
    .section-title {
      margin-bottom: 40px;
    }
    .ads-content {
      padding: 60px 50px;
      max-width: 670px;
    }
    .footer-link, .footer-section li a {
      font-size: 18px;
      font-weight: normal;
    }
    html[lang="ar"] .footer-link,html[lang="ar"] .footer-section li a {
      font-weight: 500;
    }
    .social-icon li a {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 18px;
    }
    .inner-hero-content p {
      max-width: 1095px;
    }
    .values-item h6 {
      font-size: 22px;
    }
    .values-item p {
      font-size: 18px;
    }
    .contact-img img {
      height: 100%;
    }
    .hotel-details-text {
      margin-left: 20px;
    }
     .counter-wrap h2 {
      font-size: 37px;
      line-height: 38px;
    }
  .counter-item {
    width: 38%;
    padding: 0;
  }
   .hotel-tab-location .switcher .nav-pills li {
    margin: 0 7px 0 0;
  }
  .hotel-tab-location .switcher .nav-pills .nav-link {
    font-size: 15px;
  }
  }
  @media only screen and (max-width: 1200px){	
    .outer-menu ul li a {
      font-size: 15px;
      line-height: 15px;
    }
    .contact-phone, .contact-message {
      padding: 2px;
    }
    .contact-now-box .common-btn {
      margin-left: 5px;
    }   
    .hero-image  {
      padding: 250px 0 140px;
    }
	.hero-content {
		bottom: 140px;
	}
    h1 {
      font-size: 52px;
      line-height: 46px;
    }
    h2 {
      font-size: 50px;
      line-height: 48px;
      margin-bottom: 25px;
    }
    p,
    .hero-image  p {
      font-size: 18px;
      line-height: 26px;
    }
    .hero-content .common-btn,
    .gallery h3 {
      font-size: 18px;
    }
    section {
      padding: 70px 0;
    }
    .gallery p {
      font-size: 24px;
      line-height: 32px;
    }
    .gallery-carousel-box {
      --gap: 25px;
    }    
    .testimonials {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .testimonial-content {
      padding: 15px 15px 25px;
    }
    .testimonials p {
      max-width: 980px;
      margin: 0 0 25px;
    }
     .footer {
      padding: 50px 0 15px;
    }
    .footer h3 {
      font-size: 34px;
      line-height: 34px;
      margin-bottom: 40px;
      max-width: 310px;
    }    
     .main-header {
        top: 40px;
      }
    .inner-hero-img {
        padding: 160px 80px;
    }
    .booking-wrap {
      flex-wrap: wrap;
      width: 48%;
    }
    .hotel-booking {
      align-items: center;
    }
     .hotel-btn-wrap .common-btn {
      font-size: 13px;
      padding: 16px 11px;
    }
    .amenties-list li {
      gap: 10px;
      font-size: 14px;
      line-height: 18px;
    }
    .gallery-carousel-box img {
      height: 400px;
      width: auto;
    }
     .ads-content h2 {
      font-size: 52px;
      line-height: 52px;
    }
     .ads-content p {
      font-size: 26px;
      line-height: 34px;
    }
     .ads-content {
        padding: 40px 30px;
        max-width: 670px;
     }
     .testimonial-content {
        gap: 60px;
      }
      .testimonial-text p {
        font-size: 18px;
        line-height: 26px;
      }
      .testimonial-author,
      .testimonial-location p {
        font-size: 16px !important;
        line-height: 24px;
      }
      .testimonial-text::before,
      .testimonial-text::after {
        background-size: 60px auto;
        background-repeat: no-repeat;
      }
      .testimonial-text::after { 
        bottom: -40px;
      }
      .testimonial-text::before {
        top: -45px;
      }
      .footer-logo {
        margin-bottom: 40px;
      }
      .social-icon li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
      }
      .footer-title {
        font-size: 20px;
        line-height: 24px;
      }  
      .inner-hero-content p {
        max-width: 800px;
      } 
      .about-page-section h3 {
        font-size: 36px;
        line-height: 38px;
      } 
      .about-page-section p {
        font-size: 18px;
        line-height: 26px;
      }  
      .mission-vission .text-box p {
        font-size: 14px;
        line-height: 18px;
      }
      .mission-wrap::before { 
        background-size: 650px auto;
      }
      .vission-wrap, .mission-wrap {
        max-width: 645.5px;
      }
      .mission-wrap .vission .text-box {
        margin-left: 101px;
        padding-left: 90px;
      }
     .mission-vission {
        margin-top: 70px;
      }
      .gallery-list {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        grid-auto-rows: 350px;
      }
      .contact-page-section .contact-wrap {
        margin-bottom: 50px;
      }
      .contact-info p, .contact-info h6 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 25px;
      }
      .product-details-section.hotels {
        padding: 60px 0 0 0;
      }
      .hotel-details-text .location {
        margin-bottom: 15px;
      }
      .hotel-details-text .booking-wrap {
        width: 100%;
        gap: 22px;
      }
      .hotel-categories-item h6 {
        font-size: 19px;
      }
       .hotel-categories-item p {
        font-size: 16px;
        line-height: 22px;
      }
      .hotel-categories-item {
        padding: 12px;
      }
      .hotel-amenties .about-amenties-right {
        padding: 30px 20px;
      }
       .hotel-details .row {
        margin-bottom: 60px;
      }
      .hotel-details-text h3 {
        font-size: 38px;
      }
      .hotel-details-text .location {
        font-size: 22px;
      }
      .counter-wrap {
        gap: 10px;
        height: 300px;
      }
       .counter-wrap p {
        font-size: 12px;
        line-height: 15px;
      }
       .counter-wrap h2 {
        font-size: 28px;
        line-height: 38px;
      }
      .hero-video {
        height: 700px;
      }
  }
  @media only screen and (max-width: 1100px){	
      .hero-image {
        padding: 250px 0 100px;
      }
	  .hero-content {
		bottom: 100px;
	  }
      .hotel-item {
        padding: 12px;
        width: 49%;
      }
      .hotel-list {
        flex-wrap: wrap;
        justify-content: center;
      }
      .testimonial-content {
        gap: 40px;
      }
      .footer-link, .footer-section li a {
        font-size: 16px;
      }
      .footer-logo {
        margin-bottom: 30px;
      }
      .social-icon li a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
      }
      .footer-copyright,
      .designed {
        font-size: 14px;
        line-height: 16px;
      }
       .testimonials p {
        max-width: 980px;
        margin: 0 0 15px;
      }
      .testimonial-text::before, .testimonial-text::after {
        background-size: 50px auto;
      }
      .testimonial-text::before {
        top: -36px;
      }
       .testimonials .review-btn {
        font-size: 18px;
        height: 54px;
        padding: 11px 16px;
        width: 195px;
      }
      .about-amenties-left {
        max-width: 436px;
      }
      .contact-content-box {
        padding: 25px 40px 0;
      }
      .contact-info p, .contact-info h6, .contact-page-section h6 {
        font-size: 18px;
        line-height: 22px;
      }
      .contact-info p {
        min-height: 40px;
      }
      .hotel-details .col-md-5,
      .hotel-details .col-md-7 {
        width: 100%;
      }
      .hotel-details-text {
        margin-left: 0;
        margin-top: 30px;
      }
      .hotel-details .row {
        margin-bottom: 40px;
      }
      .hotel-amenties {
        padding-top: 15px;
      }
      .hotel-categories-item {
          width: calc(25% - 16px);
      }      
     .locations .col-md-7,
      .locations .col-md-5 {
      width: 100%;
     }
     .map-item {
      width: 324px;
      background-size: auto;
     }
     .counter-wrap {
      margin-left: auto;
     }
     .location-map {
      margin-bottom: 40px;
     }
     .locations {
      padding-bottom: 0;
     }
     .hotel-tab-location {
      margin-left: 0;
    }
  }
  @media only screen and (max-width: 991px){
    .main-header {
      top: 30px;
    }
    .menu-logo {
      display: block;
    }
    .is-sticky .outer-menu {
      padding: 0 15px;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 25px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--text-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--text-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
  .outer-menu ul li a:hover, .outer-menu ul li.current-menu-item a {
    border: none;
  }   
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
    direction: ltr;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	}  
  .outer-menu ul li.lang-item {
    display: block;
    background: url(../images/language-icon.svg) no-repeat 15px center;
    padding-left: 30px;
  }
  .hero-image  {
    padding: 200px 0 100px;
  }
  .hero-content {
	bottom: 100px;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section {
    padding: 50px 0;
  }
   h1 {
        font-size: 44px;
        line-height: 46px;
   }
   h2 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .hero-image  h1 {
    margin-bottom: 20px;
  }
  .hero-image {
    padding: 220px 0 49px;
  }
  .hero-content {
	bottom: 49px;
  }
  .navbar-brand img {
    height: 90px;
    width: auto;
  }
  .switcher {
    margin: 0 auto 40px;
  }
  .hotel-item {
    padding: 12px;
    width: 48%;
  }  
  .gallery-carousel-box {
    --gap: 20px;
    margin-top: 25px;
  }
  .gallery-image img {
    width: auto;
    height: 360px;
  }
  .bento-item {
    padding: 4px;
  }
  .gallery-page-section .common-btn {
    font-size: 16px;
    line-height: 20px;
    margin-top: 30px;
    height: 45px;
  }
  .ads-content h2 {
    font-size: 42px;
    line-height: 46px;
  }
  .ads-content p {
    font-size: 20px;
    line-height: 26px;
  }
   .ads-content {
    padding: 40px 15px;
    max-width: 470px;
  }  
  .amenties h4 {
    font-size: 22px;
    line-height: 22px;
  }
  .testimonial-ratings {
    width: 230px;
    height: 230px;
  }
  .testimonial-ratings p {
    margin: 0;
  }
  .testimonial-text {
    width: 100%;
    margin-top: 30px;
  }
   .testimonial-content {
    gap: 0;
  }
  footer .col-md-4 {
    padding-bottom: 20px;
  }
  footer .col-md-4,
  footer .col-md-3,
  footer .col-md-2 {
    width:50%;
  }
  .amenties-list {
    display: block;
    padding: 30px 0px;
    list-style: none;
    margin:30px 0 0;
    padding: 0;
}
  .amenties-list li {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 18px;
  }
  .amenties-list li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
  .gallery-image img {
    width: auto;
    height: 320px;
  }
    html[lang="ar"] .testimonial-text::after {
    bottom: 0;
    left: 0;
    right: auto;
  }
   .testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .inner-hero-img {
    padding: 200px 0;
    min-height: 400px;
  }
  .inner-hero-content p {
    max-width: 90%;
  }
  .about-logo-wrap {
    margin-bottom: 35px;
  }
  .about-page-section h3 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .about-amenties {
    margin-top: 60px;
  }
  .about-amenties-left {
    max-width: 326px;
  }
  .about-amenties-right {
  padding: 30px 15px; 
  }
  .about-amenties-right li {
    margin-bottom: 20px;
  }
  .mission-vission .section-title {
    margin-bottom: 56px;
  }
  .our-values {
    text-align: center;
    padding-top: 60px;
  }
  .values-item {
    width: 48.8%;
    padding: 20px 15px;
    gap: 15px;
  }
   .values-item h6 {
    font-size: 20px;
    line-height: 24px;
  }
  .values-item p {
    font-size: 16px;
    line-height: 22px;
  }
  .mission-vission {
    margin-top: 50px;
  }
  .gallery-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 350px;
  }
  .contact-content-box {
    padding: 25px 20px 0;
  }
  .contact-info p, .contact-info h6, .contact-page-section h6 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .contact-page-section .contact-wrap {
    margin-bottom: 40px;
  }
  .hotel-amenties .about-amenties-right li {
    width: 24%;
  }
   .hotel-categories-item h6 {
    font-size: 16px;
    line-height: 18px;
  }
  .hotel-categories-item p {
    font-size: 14px;
    line-height: 22px;
  }
   .product-details-section.hotels {
    padding: 40px 0 0 0;
  }
  .hotel-details-text h3 {
    font-size: 34px;
  }
   .hotel-details-text .location {
    font-size: 20px;
  }
   .hotel-details .row {
    margin-bottom: 30px;
  }
  .hotel-amenties {
    padding-top: 0;
  }
  .hotel-categories {
    margin: 50px 0;
  }
  .counter-wrap {
    margin-left: auto;
    width: 50%;
  }
  html[lang="ar"] .main-menu ul {
    display: flex;
    flex-direction: column;
  }
  html[lang="ar"] .outer-menu .navbar-toggler { 
    left:25px;
    right:auto;
  }
  .contact-page-section .row {
    display: none;
  }
   .hero-video {
      height: 700px;
  }
}
@media only screen and (max-width: 767px){
  
  .hero-image  {
    padding: 150px 0 70px;
  }
  .hero-content {
	bottom: 70px;
  }
  p, .hero-image  p, .blog-details ul li {
    font-size: 16px;
    line-height: 24px;
  }
  h1, h2, .our-values h2, .mission-vission h2 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }
   .hero-content .common-btn {
    height: 56px;
  }
 .switcher .nav-pills li {
  margin: 0 10px 0 0;
}
  .footer {
    padding: 50px 0 10px;
  }   
   .inner-hero-img {
    padding: 80px 15px;
    min-height: 380px;
  }   
  .footer-copyright {
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 15px; 
  }
  html[lang="ar"] .designed {
  text-align: center;
}
 .testimonials .review-btn,
 html[lang="ar"] .testimonials .review-btn {
  float: none;
  margin-bottom: 10px;
 }
 .switcher .nav-pills .nav-link {
  padding: 8px 16px;
  font-size: 18px;
  line-height: 18px;
 }
 .values-item {
  width: 100%; 
 }
   .about-page-section p {
    font-size: 16px;
    line-height: 24px;
  }
   .about-amenties {
    margin-top: 30px;
  }
   .about-amenties-left {
    max-width: 100%;
  }
  .about-amenties-right {
    width: 100%;
    max-width: 100%;
  }
  .vission-wrap, .mission-wrap {
    max-width: 100%;
  }
  .vission-wrap::before, .mission-wrap::before { 
    background-size: 100% auto;
  }
  .mission-vission .text-box {
    padding: 10px 10px;
    padding-left: 10px;
    margin-left: 104px;
    height: 120px;
    min-height: 120px;
    overflow-y: auto;
    padding-left: 85px;
  }
   .mission-wrap .vission .text-box {
    padding: 10px 10px;
    margin-left: 92px;
    padding-left: 75px;
  }
  .mission-vission .text-box p {
    font-size: 12px;
    line-height: 16px;
  }
  .gallery-list {
    gap: 10px;
  }
  .contact-img img {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 0.75;
  }
  .contact-img, .contact-content-box {
    width: 100%;
  }
  .contact-info p {
    min-height: auto;
    margin-bottom: 20px;
  }
  .contact-page-section h6 {
    margin-bottom: 20px;
  }
  .hotel-categories-item {
    width: calc(34.2% - 16px);
  }
  .hotel-amenties .about-amenties-right li {
    font-size: 12px;
  }
  .about-amenties-right li img {
    margin-right: 3px;
    width: 25px;
  }
  .location-map {
    padding: 30px 15px 15px;
    gap: 20px;
    flex-wrap: wrap;
  }
   .counter-wrap {
    margin-left: auto;
    width: 100%;
  }
  .map-item {
    margin: 0 auto;
  }
   .counter-wrap {
    width: 100%;
    height: 200px;
  }
  .back-btn {
    font-size: 16px;
  }
  .hero-video {
      height: 600px;
  }
}
@media only screen and (max-width: 600px){
  
   h1, h2, .our-values h2, .mission-vission h2, .hotel-details-text h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .hotel-item {
    width: 100%;
  } 
  .ads-content h2 {
    font-size: 38px;
    line-height: 40px;
  }
  .ads-content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .outer-menu {
    height: 80px;
    max-height: 80px;
  }
  .navbar-brand img {
    height: 80px;
    width: auto;
  }
  .main-header {
    top: 15px;
  }
  .hero-section,
  .inner-hero-section {
    padding: 10px;
  }
   .bento-item {
    padding: 2px;
  }
  .bento-item img {
    border-radius: 15px;
  }
  .inner-hero-content h1 {
    margin-bottom: 20px;
  }
   .inner-hero-img {
    padding: 80px 15px;
    min-height: 350px;
  }
  .vission-wrap::before, .mission-wrap::before {
    background-size: 100% auto;
    display: none;
  } 
  .mission-vission .text-box {
    height: auto;
    min-height: auto;
    padding: 15px !important;
    margin-left: 0 !important;
    border-radius: 16px;
  }
  .mission-vission h3 {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
   .mission-vission .section-title {
    margin-bottom: 30px;
  }
  h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .gallery-list {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 150px;
}
.contact-content-box input[type="submit"] {
  margin-top: 0;
  height: 60px;
}
 .hero-video {
      height: 500px;
  }
}
@media only screen and (max-width: 500px){
   .hero-image  {
    padding: 120px 0 50px;
  }  
  .hero-content {
	bottom: 30px;
  }
   h1, h2, .our-values h2, .mission-vission h2, .hotel-details-text h3 {
    font-size: 23px;
    line-height: 25px;
    margin-bottom: 15px;
   }
   h3 {
    font-size: 22px;
    line-height: 26px;
  }
   p, .hero-image  p {
    font-size: 15px;
    line-height: 24px;
  } 
   .footer {
    padding: 40px 0 10px;
  } 
  .footer-link,
  .footer-section li a {
    font-size: 16px;
  }
 .outer-menu {
    padding: 0 15px;
    height: 65px;
  }
  .is-sticky {
    height: 77px !important;
    max-height: 77px !important;
  }
  .navbar-brand img {
    height: 65px;
    width: auto;
  }
  .switcher {
    padding: 12px;
    margin: 0 auto 30px;
  }
  .booking-wrap {
    flex-wrap: wrap;
    width:123px;
  }
  .switcher .nav-pills .nav-link {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 18px;
  }
  .switcher .nav-pills li {
    margin: 0 5px 0 0;
  }
  .ads-content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .ads-content {
    padding: 30px 15px;
    max-width: 470px;
  }
   .ads-content h2 {
    font-size: 35px;
    line-height: 37px;
  }
   .testimonial-text p {
    font-size: 15px;
    line-height: 23px;
  }
  .testimonial-author, .testimonial-location p {
    font-size: 14px !important;
    line-height: 22px;
  }
   footer .col-md-4, footer .col-md-3, footer .col-md-2 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
  }
   .footer-logo {
    margin-bottom: 0;
  }
  .social-icon {
    margin-top: 0;
  }
  .testimonial-ratings h4 {
    font-size: 60px; 
  }
.testimonial-text::before, .testimonial-text::after {
    background-size: 40px auto;
  }
   .testimonial-text::before {
    top: -29px;
  }
  .ads-content .btn-wrap .common-btn {
    color: #000;
    height: 43px;
    font-size: 14px;
    line-height: 14px;
  }
  .bento-left,
  .bento-right {
    width: 100%;
  }
  .bento-left .bento-item {
    width: 50%;
    height: 40%;
  }
  .bento-right .bento-item.tall img {
    aspect-ratio: 1 / 1;
  }
  /* .bento-right .bento-item.tall {
    height: 50%;
    width: 100%;
  } */
  /* .bento-right .bento-item {
    width: 100%;
    height: 50%;
  } */
  .bento-right .bento-item:last-child {
    margin-left: auto;
    margin-top: -24.5%;
  }
  .bento-right .bento-item img {
    aspect-ratio: 1 / .5;
  }
   .about-page-section h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .inner-hero-content {
    bottom: 40px;
  }
  .gallery-list-item.wide {
  grid-column: span 2;
}
.gallery-list-item:nth-last-child(2) {
    grid-column: span 1 !important;
  }
  .contact-page-section .contact-wrap {
    margin-bottom: 30px;
  }
   .hotel-categories-item {
    width: calc(50% - 16px);
  }
   .hotel-amenties .about-amenties-right li {
    width: 43%;
    margin-right: 15px;
  }
    .hotel-amenties .about-amenties-right {
    padding: 20px 15px;
  }
  .hotel-details-text .booking-wrap .booking-item img {
  width: 55px;
  height: 55px;
  margin: 0 auto 5px;
}
.hotel-details h4 {
  font-size: 20px;
}
.hotel-details-text .booking-wrap .booking-item span {
  font-size: 9px;
}
.book-btn {
  width: 65px;
  height: 26px;
  font-size: 9px;
  line-height: 9px;
  padding: 7px 8px;
  text-align: center;
}
  .hotel-details-text .booking-wrap {
    width: 100%;
    gap: 6px;
    padding: 16px 5px;
  }
  div#n2-ss-2 .n2-ss-slider-2 {
    height: 400px !important;
  }
  div#n2-ss-2 .n2-ss-slider-1 {
    min-height: 400px !important;
  }
  div#n2-ss-2 .n2-thumbnail-dot img {
    width: 60px !important;
    height: 90px !important;
  }
  .back-icon {
    margin-right: 10px;
    font-size: 14px;
  }
   .hotel-tab-location .switcher .nav-pills .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }
  .amenties-list li {
    width: 41%;
  }
    .inner-hero-img {
    padding: 80px 15px;
    min-height: 220px;
  }
   .hero-video {
      height: 450px;
  }
  .hero-content h1 {
    margin-bottom: 15px;
  }
  .hero-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 400px){
  .hero-image h1 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
  }
  .hero-image p {
    margin-bottom: 15px;
  }
    .gallery-image img {
    width: auto;
    height: 250px;
  }
  .values-item h6 {
    font-size: 17px;
    line-height: 19px;
  }
   .values-item p {
    font-size: 13px;
    line-height: 18px;
  }
  .about-amenties-right li {
    margin-bottom: 10px;
    width: 100%;
  }
  .about-amenties-right li:nth-last-child(2) {
    margin-bottom: 10px;
  }
  .gallery-list {
    gap: 8px;
  }
  .gallery-list-item {
    margin-bottom: 0;
  }
  .hotel-tab-location .switcher .nav-pills .nav-link {
    font-size: 12px;
  }
  .hotel-tab-location .switcher .nav-pills li {
    margin: 0 5px 0 0;
  }
  .hotels .switcher .nav-pills li {
    margin: 0 0 0 0;
  }
}