.grey-background {
  background-color: #f7f8f6;
}

.img-content .overlap-btn {
  background-color: transparent;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.img-content:hover .overlap-btn {
  opacity: 1;
}

.img-text-box .img-content {
  position: relative;
  height: 100%;
}

.img-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 99;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(58%, rgba(0, 0, 0, 0)), color-stop(104%, rgba(0, 0, 0, 0.8)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.8) 104%);
  background-image: -moz- oldlinear-gradient(top, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.8) 104%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.8) 104%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.8) 104%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.img-content:hover::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(42%, rgba(0, 0, 0, 0)), color-stop(95%, rgba(0, 0, 0, 0.8)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 95%);
  background-image: -moz- oldlinear-gradient(top, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 95%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 95%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 95%);
}

.overlap-content {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 30px 25px;
  z-index: 100;
}

/* .overlap-text {
  text-align: left;
} */

.imagebox:hover .stay-overlay {
  opacity: 1;
}

.imagebox .stay-overlay {
  background-color: transparent;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

/*home gallery zoom*/

@-webkit-keyframes zoom1 {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@-moz-keyframes zoom1 {
  from {
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  to {
    -moz-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
  }
}

@-o-keyframes zoom1 {
  from {
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  to {
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
  }
}

@keyframes zoom1 {
  from {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
  }
}

.image-zoom-animation {
  overflow: hidden;
}

.image-zoom-animation > img {
  -webkit-animation: zoom1 20s;
  -moz-animation: zoom1 20s;
  -o-animation: zoom1 20s;
  animation: zoom1 20s;
}

/* Residences,Rooms & suits and Event Card */

.common-card {
  background: #ffffff;
  -webkit-box-shadow: 4px 0 6px rgb(131 134 163 / 12%);
  -moz-box-shadow: 4px 0 6px rgb(131 134 163 / 12%);
  box-shadow: 4px 0 6px rgb(131 134 163 / 12%);
  padding: 40px;
}

.common-card-shadow {
  -webkit-box-shadow: 0 4px 6px 0 rgb(131 134 163 / 12%);
  -moz-box-shadow: 0 4px 6px 0 rgb(131 134 163 / 12%);
  box-shadow: 0 4px 6px 0 rgb(131 134 163 / 12%);
}

.common-card:hover {
  -webkit-box-shadow: 0 0 55px rgb(131 134 163 / 40%);
  -moz-box-shadow: 0 0 55px rgb(131 134 163 / 40%);
  box-shadow: 0 0 55px rgb(131 134 163 / 40%);
  z-index: 9;
  position: relative;
}

.common-card .carousel-indicators {
  text-align: left;
  display: block;
  margin-left: 7%;
  bottom: -4%;
}

.common-card .carousel-indicators {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding-left: 0;
  /* margin-right: 15%; */
  margin-left: 2%;
  list-style: none;
}

.common-card .carousel-item {
  max-height: 370px;
}

.common-card .carousel-item img {
  width: 100%;
  min-height: 370px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.common-card-col-1 {
  max-width: 535px;
  padding-left: 0px;
}

.common-card-col-2 {
  max-width: 652px;
  padding-right: 0;
  padding-left: 25px !important;
}

.common-card ul {
  list-style-position: inside;
  padding-left: 0;
  list-style: none;
  padding-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-two-col-icon {
  margin: 0;
  padding: 0;
}

.list-two-col-icon li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-bottom: 11px;
}

.list-two-col-icon li::before {
  content: url(https://www-addresshotels-com.azureedge.net/wp-content/uploads/2021/07/generic-icon.svg);
  vertical-align: middle;
  margin: 10px;
}

.common-card-shadow .common-card:first-child {
  z-index: 5;
}

.common-card-shadow .common-card:hover {
  z-index: 6;
}

.common-card .btn-panel {
  position: absolute;
  bottom: 0;
  visibility: hidden;
}

.common-card-shadow .common-card:hover .btn-panel {
  visibility: visible;
}

.common-card .btn-panel .btn-primary {
  padding: 12px;
  width: 100%;
}

.vhr-dark {
  height: 26px;
  width: 1px;
  display: inline;
  border-left: 1px solid rgba(23, 34, 38, 0.16);
  margin: 10px;
}

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

.section-one-desc ul {
  list-style: initial;
}

.generic-icon::before {
  /* width: 48%; */
  font-family: "Font Awesome 5 Pro";
  content: "\f058";
  font-size: 16px;
  display: inline-block;
  /* padding-right: 18px; */
  vertical-align: middle;
}

a {
  text-decoration: none;
}

/* header-banner-img */

.header-banner-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 560px;
  height: 768px;
  position: relative;
  z-index: -1;
  /* background-color:rgba(0, 0, 0, 0.4) ; */
}

.header-banner-img-gradient {
  background: -webkit-linear-gradient(195deg, rgba(37, 40, 45, 0) 18%, #000000 104%),
    -webkit-radial-gradient(53% 100%, circle, rgba(42, 60, 68, 0), rgba(42, 60, 68, 0) 53%, rgba(42, 60, 68, 0.6) 79%);
  background: -moz- oldlinear-gradient(195deg, rgba(37, 40, 45, 0) 18%, #000000 104%),
    -moz- oldradial-gradient(53% 100%, circle, rgba(42, 60, 68, 0), rgba(42, 60, 68, 0) 53%, rgba(42, 60, 68, 0.6) 79%);
  background: -o-linear-gradient(195deg, rgba(37, 40, 45, 0) 18%, #000000 104%),
    -o-radial-gradient(53% 100%, circle, rgba(42, 60, 68, 0), rgba(42, 60, 68, 0) 53%, rgba(42, 60, 68, 0.6) 79%);
  background: linear-gradient(-105deg, rgba(37, 40, 45, 0) 18%, #000000 104%),
    radial-gradient(circle at 53% 100%, rgba(42, 60, 68, 0), rgba(42, 60, 68, 0) 53%, rgba(42, 60, 68, 0.6) 79%);
  z-index: 1;
}

.header-banner-img-content-box {
  max-width: 1000px;
}

.header-banner-img-container {
  min-height: 560px;
  -moz-background-size: cover;
  background-size: cover;
  height: 768px;
  /* background-color:rgba(0, 0, 0, 0.4) ; */
  background-repeat: no-repeat;
  background-position: center center;
}

.header-banner-img-container.header-2 {
  height: 600px;
  min-height: auto;
}

.carousel-control-next-icon {
  background-image: none;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  border-radius: 44px;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  opacity: 0.7;
  width: 66px;
  height: 66px;
  background-color: #000000;
}

.carousel-control-next .carousel-control-next-icon::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  color: #ffffff;
}

.carousel.slide .carousel-control-next {
  visibility: hidden;
}

.carousel.slide:hover .carousel-control-next {
  visibility: visible;
}

.carousel-indicators {
  margin: 32px 52px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: auto;
}

/* Restaurant Dining Card  */

.card-container {
  height: 492px;
  margin-bottom: 20px;
}

.card-container.offer-card {
  height: 408px;
}

.card-image {
  background-color: #fff;
  max-width: 420px;
  margin: 0 auto;
}

.card-image .img-fluid {
  width: 100%;
  max-height: 368px;
  height: 368px;
  overflow: hidden;
}

.dir-ltr {
  unicode-bidi: embed;
  direction: ltr;
}

.card-data {
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 6px 0 rgba(131, 134, 163, 0.12);
  -moz-box-shadow: 0 4px 6px 0 rgba(131, 134, 163, 0.12);
  box-shadow: 0 4px 6px 0 rgba(131, 134, 163, 0.12);
  overflow: hidden;
  width: 100%;
  height: 120px;
}

.offer-card .card-data {
  height: 60px;
}

@media screen and (min-width: 1024px) {
  .card-data {
    max-width: 420px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .card-container:hover .card-data {
    height: 178px;
  }
  .card-container.offer-card:hover .card-data {
    height: 130px;
  }
}

@media screen and (max-width: 1024px) {
  .card-data,
  .offer-card .card-data {
    height: 178px;
  }
  .card-buttons .btn {
    min-width: auto;
  }
  .card-container {
    margin-bottom: 70px;
  }
  .offer-card .card-image .img-fluid {
    height: 320px;
  }
  .restaurant-card.hotelmbox .card-data {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Restaurant Dining Card End */

/* Media Queries */

@media (max-width: 991px) {
  .w-md-100 {
    width: 100% !important;
  }
  .common-card {
    padding: 30px;
  }
  .common-card .carousel-item img {
    min-height: 200px;
  }
  .common-card .btn-panel {
    margin-top: 30px;
    position: inherit;
    visibility: visible;
    width: 100%;
  }
  .header-banner-img-container {
    height: auto;
  }
  .header-banner-img-container.header-3 {
    min-height: 720px;
  }
  .header-banner-img-container .row {
    min-height: inherit;
  }
  .carousel.slide .carousel-control-next {
    display: none;
  }
  .img-content .overlap-btn {
    opacity: 1;
  }
  .restaurant-card .card-data h6 {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    cursor: default;
  }
}

.blacktabs .nav-tabs li {
  margin-right: 32px;
}

.blacktabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #25282d;
  border-left: none;
  border-right: none;
  border-top: none;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.blacktabs .nav-tabs .nav-link {
  padding-top: 0px;
  padding-bottom: 13px;
}

.blacktabs .tab-content .tab-paragraph-text {
  padding-top: 44px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 21px;
  padding-bottom: 60px;
  max-width: 600px;
}

@media (max-width: 600px) {
  .blacktabs .nav-tabs li {
    margin-inline-end: 7px;
  }
  .carousel-indicators {
    left: 0;
  }
  .overlap-content .overlap-text h3,
  .overlap-content .overlap-text span {
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: visible;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 220px;
  }
  .overlap-content {
    padding-top: 0;
  }
  .overlap-content .overlap-btn {
    opacity: 1;
  }
  .common-card {
    padding: 16px;
  }
  .restaurant-filter .filterbox .dropdown.bootstrap-select {
    width: 120px;
  }
  .common-card-shadow:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 300px) and (max-width: 400px) {
  .restaurant-filter .filterbox .dropdown.bootstrap-select {
    width: 100px;
  }
}
