body {
  margin: 0px;
  padding: 0px;
  font-family: 'DM Sans', Sans-serif;
}

html {
  scroll-behavior: smooth  !important;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img {
  width: 100%;
  object-fit: cover;
}
.p-80 {
  padding: 80px 0;
}

.m-0 {
  margin: 0px !important;
}

.bg-light {
  background-color: rgba(239, 255, 234, 1) !important;
}

.text-center {
  text-align: center !important;
}

* {
  box-sizing: border-box;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.videographer {
  padding-top: 30px !important;
}
#header {
  display: flex;
  box-shadow: 0px 0px 10px 0 #cacaca;
  padding: 10px 0;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background-color: var(--headerBackground);
}

#header ul.nav-list li.active a,
#header ul.nav-list li:hover a {
  color: var(--callButtonBackgroundColor) !important;
}

#header .row {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 0;
  justify-content: center;
  justify-items: stretch;
  align-items: center;
  align-content: center;
}

#header .row .logo {
  width: 150px;
}

#header .row nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#header .row .nav-mobile {
  display: none;
}
#header .row ul.nav-list {
  align-items: center;
  justify-content: end;
  gap: 29px;
  display: flex;
}

#header .row .logo img {
  border-radius: 0px;
}

#header .row ul.nav-list a {
  color: var(--menuItemsColor);
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0em;
}

#header .row ul.nav-list a:hover {
  color: var(--bg-hover);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  background: transparent;
  height: 55px;
  width: 70px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1000px) {
  #header .row .nav-mobile {
    display: flex;
  }

  #header .row ul.nav-list {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 66px;
    box-shadow: rgb(196 195 195 / 55%) 1px 5px 9px 0px;
    visibility: hidden;
    background: rgb(255, 255, 255);
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    height: 0;
  }

  ul.nav-list.show-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
  }
}

@media screen and (min-width: 1001px) {
  .nav-list {
    display: flex !important;
  }
}

#navbar-toggle {
  position: absolute;
  right: 26px;
  top: 50%;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  transform: translateY(-50%);
}

#navbar-toggle span,
#navbar-toggle span:before,
#navbar-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: #000;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
  top: -10px;
}

#navbar-toggle span:after {
  bottom: -10px;
}

#navbar-toggle.active span {
  background-color: transparent;
}

#navbar-toggle.active span:before,
#navbar-toggle.active span:after {
  top: 0;
}

#navbar-toggle.active span:before {
  transform: rotate(45deg);
}

#navbar-toggle.active span:after {
  transform: rotate(-45deg);
}

/* -----------------Banner---------------- */
section#home {
  position: relative;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
}

section#home::before {
  content: '';
  position: absolute;
  background: #000;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.banner .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  align-content: center;
  position: relative;
  z-index: 2;
}

.banner .row .banner-content .title {
  color: #fff;
  font-family: DM Sans;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  font-weight: 800;
  line-height: 62.5px;
  margin: 0px;
  text-transform: capitalize;
}

.banner .row .banner-content .tagline {
  font-size: 20px;
  color: #fff;
  margin: 10px 0 15px;
  line-height: 30px;
}

.book-now:not(.social-icon) {
  background: var(--callButtonBackgroundColor);
  padding: 15px 24px !important ;
  border-radius: 50px;
  /*   margin-top: 20px; */
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--callButtonTextColor);
  z-index: 1;
}

.book-now span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--bg-hover);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.book-now:hover span {
  width: 500px;
  height: 500px;
}

.banner .row .banner-content .social-media-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner .row .banner-content .social-media-icons a {
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--socialIconsBackgroundcolor);
  font-size: 24px;
  color: var(--socialIconsColor);
  border-radius: 50%;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner .row .banner-content .social-media-icons .book-now span {
  background-color: var(--bg-hover) !important;
}

.banner-image {
  text-align: end;
}

.banner .row .banner-image img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  border-radius: 20px;
  border: 5px solid #fff;
}

/* -------About US------- */

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.aboutus .about-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 20px;
  width: 50%;
}

.aboutus .about-img img {
  height: 500px;
}

.amenity-list .visible-item {
  display: flex !important;
}

.hidden-item {
  display: none !important;
}

button.read-more-btn {
  background: transparent !important;
  border-color: transparent !important;
  margin-top: 30px;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

/* -----about content----- */

.headings {
  font-family: DM Sans;
  font-size: 38px;
  font-weight: 600;
  line-height: 49.48px;
  text-align: left;
  margin: 0px 0px 30px 0;
  color: #000;
}

.aboutus .about-content {
  width: 50%;
  padding-left: 40px;
}

.aboutus .about-content p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

.aboutus .about-content .rating {
  margin-top: 20px;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode {
  min-height: 0px !important;
  overflow: hidden !important;
}

.aboutus .about-content .rating tbody {
  background: var(--callButtonBackgroundColor) !important;
  padding: 0px;
  display: flex;
  width: 100%;
  border: 2px solid #5aa1e1;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode td {
  padding: 9px 15px !important;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode tr {
  background: var(--callButtonBackgroundColor) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode tr:hover {
  background-color: #fff !important;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode tr:hover span {
  color: #000 !important;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode td {
  padding: 9px 15px !important;
}

.aboutus .about-content .rating .yasr-multiset-average {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode td span,
.aboutus
  .about-content
  .rating
  .yasr_table_multi_set_shortcode
  td
  .yasr-multiset-average-text {
  color: var(--callButtonTextColor) !important;
}

.aboutus .about-content .rating .yasr_table_multi_set_shortcode tr:last-child {
  padding: 0px !important;
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  width: 141%;
}
x .aboutus .about-content .rating .yasr-multiset-average {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 11px;
}

/* ----services----- */
.services .row {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
}
.services-col .card .card-body .row {
  display: flex;
  gap: 20px;
  align-items: start;
}
.services .services-col {
  margin-top: 30px;
}

.services .services-col .card .card-img {
  height: 455px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.services .services-col .card:hover img {
  scale: 1.1;
  border-radius: 20px;
}

.services .services-col .card .card-img img {
  object-position: center center;
  transition: 0.5s all;
  height: 100%;
}

/* .services .services-col .card .card-img.last-image img {
  object-view-box: inset(0% 0% 61% 35%);
}

.services .services-col .card .card-img.first-image img {
  object-view-box: inset(0% 0% 27% 0%);
} */

.services .services-col .card .card-body .row {
  align-items: baseline !important;
}

.services .services-col .card .card-body .card-count p {
  background: transparent;
  font-size: 22px;
  -webkit-text-stroke: 1px #333;
  -webkit-text-fill-color: transparent;
  color: #333;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.services .services-col .card .card-body h3.card-title {
  font-family: DM Sans;
  font-size: 22px;
  font-weight: 600;
  line-height: 23.44px;
  margin: 20px 0 0px 0;
}

.services .services-col .card .card-body p.card-text {
  font-family: DM Sans;
  font-size: 15px;
  font-weight: 400;
  line-height: 19.53px;
  text-align: left;
  margin-top: 10px;
}

/* Amenities */
.amenities {
  background-color: #d8ecff;
}
.amenities .amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 54px;
  padding: 30px 20px 0px;
}

.amenity-group {
  border: 1px solid #5aa1e178;
  padding: 42px 0;
  border-radius: 20px;
  position: relative;
  width: 100%;
}

.amenity-group:nth-child(odd) {
  background: #ebf5ff;
}

.amenity-group h3 {
  margin: 0px;
  margin: 0 auto;
  text-align: center;
  background: #5aa1e1;
  display: flex;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  position: absolute;
  top: -22px;
  right: 0;
  left: 0;
}

.amenity-group ul {
  padding: 0 20px !important;
}

.amenity-group li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 21px;
  position: relative;
}
.amenity-group img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 0px !important;
}

.amenity-group:nth-child(even) {
  background: #efffea;
}

/* -------------gallery -------- */

.gallery .slick-track {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.gallery .slick-track a.slick-slide {
  width: 100%;
  height: 250px;
}

.gallery .slick-track .slick-slide img {
  border: 1px solid #cacaca;
  outline: 0 !important;
  height: 100%;
}

/* -------------location -------- */

.location iframe {
  width: 100%;
  height: 450px;
}

.slick-arrow {
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--socialIconsBackgroundcolor) !important;
  z-index: 3;
  color: var(--socialIconsColor) !important;
  font-size: 24px !important;
  visibility: hidden;
}
.gallery-images:hover .slick-arrow {
  background: var(--bg-hover) !important;
  visibility: visible;
}
.slick-arrow::before {
  display: none !important;
}

/* ---video--- */

.promo-video iframe {
  margin: auto !important;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
}

/* --------------Video Contributors------------ */

section.video-contributors .video-contributors-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}

section.video-contributors .video-contributors-img img {
  width: 100%;
  height: 505px;
}

.video-contributors-card {
  position: relative;
}

.video-contributors-card .video-contributors-card-body {
  position: absolute;
  bottom: 0;
  background: linear-gradient(360deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 400px;
  left: 0;
  border-radius: 20px;
  display: flex;
  align-items: end;
}

.video-contributors-card .video-contributors-card-body .row {
  align-items: baseline !important;
  padding: 0 15px 40px;
}

.video-contributors-card .video-contributors-card-body .body-col p.count {
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.25px;
  text-align: left;
  color: #fff;
}

.video-contributors-card .video-contributors-card-body .body-col h3 {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 23.44px;
  text-align: left;
  color: #fff;
}

.video-contributors-card .video-contributors-card-body .body-col p {
  font-family: DM Sans;
  font-size: 15px;
  font-weight: 300;
  line-height: 19.53px;
  text-align: left;
  color: #fff;
  margin: 10px 0;
}

.video-contributors-card .video-contributors-card-body .body-col a {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.83px;
  text-align: left;
  color: rgba(90, 161, 225, 1);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* -----Contact Us----------- */

section.contact {
  height: 600px;
  display: flex;
  align-items: center;
}

.contact-card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.63);
  padding: 20px 40px;
  width: 315px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.contact-card-img {
  width: 65px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
}

.contact-card h4 {
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 600;
  line-height: 31.25px;
  text-align: left;
  margin: 0;
  padding: 20px 0 0;
}

.contact-card h4 {
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 600;
  line-height: 31.25px;
  text-align: left;
  margin: 0;
  padding: 20px 0 0;
}

.contact-address {
  margin-top: 30px;
}

.contact-card h4 {
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 600;
  line-height: 31.25px;
  text-align: left;
  margin: 0;
  padding: 20px 0 0;
}

.contact-num a {
  display: flex;
  align-items: center;
  color: #000;
  gap: 10px;
  font-size: 18px;
  margin-top: 20px;
}

.contact-address span {
  display: flex;
  gap: 10px;
  font-size: 18px;
  margin-top: 20px;
}

.contact-address span i {
  margin-top: 4px;
}

.contact-card.business-address-2 {
  border-radius: 10px;
  width: 375px;
}

.business-address h4 {
  padding: 20px 0;
}

.business-address ul li {
  margin-bottom: 15px;
  font-size: 18px;
}

/* --------------------------  responsive css (10-28-2024) --------------------------------------- */
@media screen and (min-width: 600px) and (max-width: 767px) {
  .services .row:not(.card-body .row) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
	
  .book-now:not(.social-icon) {
    font-size: 14px;
    padding: 10px 18px !important;
  }
  .p-80 {
    padding: 50px 0 !important;
  }
  #header .row {
    grid-template-columns: 30% 70%;
  }

  .banner .row {
    grid-template-columns: repeat(1, 1fr);
  }

  section#home {
    height: 100%;
    padding: 40px 0;
  }

  .banner .row .banner-content .tagline {
    margin: 0px;
  }

  .banner-image {
    text-align: left;
  }
  .banner .row .banner-image img {
    max-height: 400px;
  }
  .row:not(.card-body .row) {
    flex-wrap: wrap;
  }


  .aboutus .about-img {
    width: 100%;
  }
  .aboutus .about-img img {
    height: 300px;
  }

  .aboutus .about-img {
    grid-template-columns: repeat(1, 1fr);
  }

  .aboutus .about-content {
    width: 100%;
    padding: 0 10px 0 10px;
  }

  .headings {
    font-size: 28px;
    margin: 0px 0px 0px 0;
    line-height: 35px;
  }

  .amenities .amenities-row {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 10%;
  }

  .amenity-group h3 {
    width: fit-content;
    min-width: fit-content;
    padding: 6px 40px;
    font-size: 18px;
  }

  .promo-video iframe {
    padding: 10px;
    width: 100%;
    height: auto;
    min-height: 300px;
    margin-top: 20px !important;
  }

  section.video-contributors .video-contributors-row {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
  .contact-card {
    width: 100%;
    padding: 20px;
    border-radius: 20px !important;
  }

  section.contact {
    height: 100%;
    padding: 40px 20px;
  }

  .contact-column {
    width: 100%;
  }

  .contact-card h4 {
    font-size: 21px;
    padding: 0px 0 10px !important;
  }

  .contact-card.business-address-2 {
    border-radius: 10px;
    width: 100%;
  }

  .blog .card-post {
    grid-template-columns: repeat(1, 1fr) !important;
    margin-top: 20px;
  }

  .gallery .slick-track a.slick-slide {
    height: 155px;
  }

  section.video-contributors .video-contributors-img img {
    height: 350px;
  }
  .business-address ul li {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
  #header .row {
    grid-template-columns: 70% 30%;
  }
  .p-80 {
    padding: 50px 0;
  }

  .aboutus .about-img {
    grid-template-columns: repeat(1, 1fr);
  }

  .aboutus .about-img img {
    height: 340px;
  }

  .aboutus .about-content {
    padding-left: 20px;
  }

  .headings {
    font-size: 30px;
  }

  .services .row:not(.card-body .row) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities .amenities-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-video iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  section.video-contributors .video-contributors-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog .card-post {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (min-width: 991px) and (max-width: 1150px) {
  .book-now:not(.social-icon) {
    font-size: 14px;
    padding: 10px 18px !important;
  }
  #header .row ul.nav-list {
    gap: 15px;
  }
  .p-80 {
    padding: 50px 0;
  }

  .amenities .amenities-row {
    grid-template-columns: repeat(3, 1fr) !important;
    padding-top: 20px;
  }

  .promo-video iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .blog .card-post .card-item .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog .card-post .card-item .card-meta span {
    font-size: 13px;
  }

  .blog .card-post .card-item .card-image img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .services .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services .row {
    grid-template-columns: repeat(1, 1fr);
  }
  .logo a img {
    max-width: 140px;
  }

  #header .row nav {
    justify-content: center;
  }

  .video-contributors-card .video-contributors-card-body {
    height: 100%;
  }
  .video-contributors-col {
    margin-top: 20px;
  }
}
/* -----arabic---- */

.gallery-images.slick-initialized.slick-slider {
  direction: ltr;
}
