

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #ad8b3a;
  --secondary-color:              #0d6efd;
  --section-bg-color:             #f0f8ff;
  --dark-color:                   #000000;
  --navbar-bg-color:              #273053;
  --p-color:                      #717275;
  --highlight-icon-color:         #ff0100;

  --body-font-family:             "Cinzel", serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);

}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-normal);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  font-family: "Inter", sans-serif;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}

.avatar-image {
  border: 2px solid var(--white-color);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-info {
  display: inline-block;
  vertical-align: top;
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 2px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 2px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 2px solid var(--primary-color);
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: #ad8b3a;
/*  border-radius: 100px;*/
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: #ad8b3a;
  border-radius: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  margin-left: 20px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.navbar-nav .nav-link.custom-btn:hover {
  background: #ad8b3a;
/*  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);*/
  color: var(--white-color);
}

.booking-btn a {
  padding:
10px 20px;
  border:
none;
  background:
#ad8b3a;
  font-size: 18px;
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  background: var(--navbar-bg-color);
}

.navbar {
  background: #fff;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-brand {
  font-size: 20px;
  line-height: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-transform: uppercase;
}

.brand-logo {
  font-size: 38px;
}

.brand-text {
  display: inline-block;
  vertical-align: top;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: var(--menu-font-size);
  font-weight: 400;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #ad8b3a;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: #ad8b3a;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: calc(90vh - 84px);
}

.hero::after {
  content: "";
/*  background: rgba(0, 0, 0, 0) linear-gradient(rgba(39, 48, 83, 0.1) 0%, rgb(39, 48, 83) 100%) repeat scroll 0% 0%;*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
}
.hero-text{
  width: 100%;
}
.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero .arrow-icon {
  position: relative;
  top: 50px;
}

.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.date-text,
.location-text {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  display: inline-block;
  padding: 10px 20px;
}

.date-text {
  border-right: 0;
}


/*---------------------------------------
  CALL TO ACTION              
-----------------------------------------*/
.call-to-action {
  background-image: url('../images/terren-hurst-blgOFmPIlr0-unsplash.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.call-to-action::after {
  content: "";
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.call-to-action .row {
  position: relative;
  z-index: 2;
}

.call-to-action .custom-btn {
  background: var(--white-color);
  color: var(--dark-color);
}

.call-to-action .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.pricing-title-wrap,
.pricing-body {
  padding: 40px;
}

.pricing-title-wrap {
  background: var(--navbar-bg-color);
  padding: 20px 40px;
}

.pricing-title {
  color: var(--white-color);
}


/*---------------------------------------
  VENUE               
-----------------------------------------*/
.venue {
  background: #fff;
}

.venue-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.venue-info-title,
.venue-info-body {
  padding: 40px;
}

.venue-info-title {
  background: var(--navbar-bg-color);
  padding: 20px 40px;
}

.google-map {
  border-radius: 20px;
}



/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  padding-top: 40px;
/*  padding-bottom: 100px;*/
  background: #000;
  border-top:solid 1px #fff ;
}

.site-footer .navbar-brand {
  color: var(--primary-color);
}

.site-footer .social-icon-link {
  font-size: var(--h6-font-size);
  width: inherit;
  height: inherit;
  line-height: 50px;
}

.site-footer .copyright-text {
  font-size: var(--copyright-text-font-size);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
}

.footer-menu-link {
  font-size: var(--copyright-text-font-size);
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}



/*my css footer*/
.footer-top {
  padding-bottom: 40px;
}
.footer-menu h3 {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25vw;
  font-family: Inter,sans-serif;
  color: #45443F;
  opacity: 0.5;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 10px !important;
}
.footer-mail button {
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  width: auto;
  font-weight: 700;
  height: 3.1770vw;
  border-radius: 0px;
  font-size: 0.9375vw;
  text-transform: none;
  line-height: 1.3125vw;
  min-width: auto;
  font-family: Inter;
  padding: 0.93vw 1.87vw;
  color: #AD8B3A;
  background-color: #FFFFFF;
  padding: auto;
  letter-spacing: 1.8px;
  color: #45443F;
  min-width: 10.052083333333334vw;
  opacity: 0.7;
  cursor: not-allowed;
  visibility: unset;
  text-transform: uppercase;
}
.footer-mail {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.footer-mail input {
  background: transparent;
  border-bottom: solid 1px #ddd !important;
  border: none;
  padding: 10px;
  margin-right: 23px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  padding-left: 0px !important;
  font-family: Inter,InterNeue,Inter Neue,sans-serif;
}
.footer-link ul {
  display: flex;
  padding: 0px;
  flex-wrap: wrap;
}
.footer-link ul li{
  flex: 0 0 50%;
  list-style: none;
}
.footer-link ul li a {
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
  font-family: Inter,sans-serif;
  color: #45443F;
  line-height: 200% !important;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 150%;
  color: #fff !important;
}

.footer-mail-number {
  display: flex;
  justify-content: space-between;
}
.footer-mail-number a {
  font-weight: 300;
  font-size: 1.0416666666666665vw;
  line-height: 140%;
  font-family: Inter,sans-serif;
  color: #45443F;
  color: #FFFFFF;
  line-height: 150%;
  white-space: nowrap;
}
.footer-menu.links-footer {
  padding-left: 25px;
}


/*faq-list hotel*/

.hotls-top-main #faqAccordion button {
  color: #fff;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-family: Inter,sans-serif;
  color: #45443F;
  color: #FFF !important;
  opacity: 0.5;
  color: #FFF;
  letter-spacing: 0.05em;
  padding: 20px 0px;
  border-top: solid 1px #fff;
/*  border-bottom: solid 1px #fff;*/
}

.top-hotel ul li {
  flex: 0 0 25%;
  list-style: none;
}
.top-hotel ul {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}
.top-hotel ul li a {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  font-family: Inter,sans-serif;
  color: #45443F;
  color: #FFFFFF !important;
  cursor: pointer;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: transparent;
  border-radius: 100px;
  font-size: var(--p-font-size);
  color: #fff;
  display: inline-block;
  vertical-align: top;
  margin: 0px;
  width: 0px;
  height: 0px;
  line-height: 30px;
  text-align: center;
  margin-right: 20px !important;
}

/*.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}*/


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1500px) {
   .speakers-text-info {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .site-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    height: calc(75vh - 78.39px);
  }

  .nav-tabs .nav-link {
    width: 50%;
  }

  .copyright-text-wrap {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
    font-family: Inter,sans-serif;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .hero-text {
    width: 100%;
  }

  .site-footer .social-icon-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .footer-menu-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-menu,
  .copyright-text-wrap {
    justify-content: center;
  }
}




/*my css tabeed*/

#profile {
  margin-top: 40px;
}

.stroy {
  padding: 40px 0px;
}

.legendary{
  padding: 20px;
}
.legendary h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
}
.legendary p {
  font-size: 18px;
  letter-spacing: 0.5px;
}
.legendary-image img {
  width: 100%;
}
.legendary p button {
  background: transparent;
  border: 0;
}

/*higlits*/

.highlits{
  padding: 40px 0px;
  background: #f6f5f5;
}
.description-highlits p {
  color: #45443F;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
}
.description-highlits h2 {
text-transform: uppercase;
  font-weight: 400;
  font-size: 3.23vw;
  color: #45443F;
}
.higlights-hotel-main{
  padding: 30px 0px;
}



/*Highlights hotel lider*/
.hotel-highlights-item {
  padding: 20px;
}
.info-highlights-hotel{
  text-align: center;
}

.info-highlights-hotel h3{
 margin: 0;
  font-weight: 400;
  color: #45443F;
  font-size: 1.25vw;
  line-height: 1.70vw;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-top: 20px;
}





/*Offer SLider*/

.offer-info h3{
   margin: 0;
  font-weight: 400;
  color: #45443F;
  font-size: 1.25vw;
  line-height: 1.70vw;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-top: 20px;
}
.offer-info p{
   margin: 0;
  font-weight: 300;
  font-size: 1.1458333333333333vw;
  line-height: 1.56vw;
  font-family: Inter,sans-serif;
  color: #45443F;
/*  min-height: 4.6875vw;*/
  line-height: 140%;
  margin-top: 15px;
}
.btn-offers {
  display: flex;
  justify-content: space-between;
  margin: 25px 0px;
  align-items: center;
}
.btn-offers button {
  padding: 10px 20px;
  border: none;
  background: #ad8b3a;
  font-size: 18px;
  color: #fff;
font-family: "Inter", sans-serif;
  font-weight: 600;
}
.offer-info {
  padding-bottom: 20px;
}

.btn-offers a {
  color: #ad8b3a;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.btn-offers a i{
  font-size: 17px;
}


.offer-title {
  padding: 20px;
}
.offers {
  padding: 40px 0px;
}
.offer-title h2{
  font-family: Cinzel,Palatino Linotype,sans-serif;
}
.offer-items {
  padding: 0px 20px;
}




/*contact us*/

/* Remove all borders */
.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd; /* Only bottom border */
  margin-bottom: 0;
  border-radius: 0;
}

/* Remove background color and shadow from button */
.accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

/* Remove default border-radius from expanded item */
.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  box-shadow: none;
}

/* Optional: Hide border around open accordion */
.accordion-collapse {
  border: none;
}
.accordion-item {
  background: transparent;
}
.accordion-button {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: Cinzel,Palatino Linotype,sans-serif;
}
.accordion-body p {
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-family: Inter,sans-serif;
}
.accordion-body a {
  color: #ad8b3a;
  font-size: 16px;
  font-weight: 400;
  font-family: Inter,sans-serif;
}
.accordion-button.collapsed {
  margin: 20px 0px;
}
.accordion-button.collapsed:focus {
  border: none;
  box-shadow: none !important;
}
.map-title h2 {
  margin: 0;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: ;
  letter-spacing: -0.05em;
  color: #45443F;
  line-height: 120%;
  white-space: nowrap;
  color: #45443F;
}
.map-title {
  margin-bottom: 20px;
}


/*hotel information*/

.check-in-check-out p img {
  width: 1.094vw;
}
.hotel-information-title h2{
  margin: 0;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 3.23vw;
  line-height: 3.85vw;
  letter-spacing: -0.05em;
  color: #45443F;
  line-height: 120%;
  white-space: nowrap;
  color: #45443F;
}
.hotel-information-title {
  padding: 40px 0px;
}
.check-in-check-out p {
  font-size: 12px;
  color: #8B8A84;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
/*  line-height: 150%;*/
  letter-spacing: 0.036vw;
  display: flex;
  justify-content: start;
  align-items: start;
}
.check-in-check-out p span {
  margin: 0;
  font-family: Inter,InterNeue,Inter Neue,sans-serif;
  font-weight: 400;
  font-size: 1rem;
/*  line-height: 1.5;*/
  font-size: 18px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
/*  line-height: 140%;*/
  color: #45443F;
}

.check-in-check-out p img {
  margin-top: 5px;
  margin-right: 10px;
}
.main-check-in {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 130px;
  border-bottom: solid 1px #ccc;
  margin: 14px 0px;
}
.check-in-check-out a {
  margin-left: 22px;
  color: #ad8b3a;
  font-size: 14px;
  font-weight: 400;
    font-family: Inter,InterNeue,Inter Neue,sans-serif;
}

.download-hotel-clas a {
  margin: 0;
  font-weight: 400;
  color: #AD8B3A;
  font-size: 0.9375vw;
  line-height: 1.3125vw;
  letter-spacing: 0.1em;
  font-family: Inter,sans-serif;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  cursor: pointer;
}
.download-hotel-clas{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}



/*baanner salect*/

.booking-bar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  gap: 15px;
  flex-wrap: wrap;
}

.booking-item {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1 1 auto;
}

.book-btn {
  padding: 10px 24px;
  font-weight: 600;
  background-color: #de6d64;
  border: none;
  border-radius: 6px;
}

.book-btn:hover {
  background-color: #c6534c;
}
.hero-text .form-control {
  width: 20% !important;
  border: none;
  font-family: Inter,sans-serif;
  color: #000;
}

.hero-text .form-select {
  width: 20% !important;
  border: none;
  padding: 15px 10px;
  font-family: Inter,sans-serif;
}
 .btn.btn-primary.booking-btn {
  height: 100%;
  background: #ad8b3a;
  padding: 15px 12px;
  font-size: 18px;
  color: #fff;
  border-radius: 0;
  border: navajowhite;
  font-family: Inter,sans-serif;
}

.hero-text{
  width: 60%;
}


/*Tabbed */

#myTab li .active {
  color: #ad8b3a !important;
  font-size: 16px;
  font-family: Inter,sans-serif;
  border: none;
  border-bottom: solid 2px #000 !important;
}
#myTab li button {
  color: #000;
  font-family: Inter,sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px 0px;

}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color:transparent; !important;
}
#myTab {
  border-bottom: solid 1px #ccc;
  justify-content: center;
}
#myTab .nav-item {
  margin: 0px 20px;
}



/*hotel detail slider*/

.hotel-detail-slider {
  position: relative;
/*  height: 100vh;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: background-image 0.6s ease-in-out;
padding: 80px 0px;
}

.slider-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
/*  width: 70%;*/
  margin: 0 auto;
  padding: 55px;
  z-index: 99;
}

.slider-items {
  max-width: 900px;
  margin: auto;
}

.slider-item {
  display: flex !important;
  align-items: center;
}

.slider-left {
  text-align: left;
}

.slider-left img {
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.slider-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.slider-left p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}
.slider-items.slick-initialized.slick-slider {
  padding: 0px !important;
}
.slider-left {
  display: flex;
}
.left-img img {
  height: 100%;
  margin-right: 30px;
  border-radius: 0;
}

.right-des h3{
  margin: 0;
  font-weight: 400;
  color: #45443F;
  font-size: 26px;
  line-height: 28px;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.right-des p{
  margin: 0;
  font-weight: 300;
  font-size: 1.1458333333333333vw;
  line-height: 20px;
  font-family: Inter,sans-serif;
  color: #45443F;
  font-size: 14px;
  margin: 7px 0px;
}
.right-des a{
  font-weight: 400;
  color: #AD8B3A;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-family: Inter,sans-serif;
  cursor: pointer;
  text-transform: uppercase;
}
.hotel-detail-slider::before,
.hotel-detail-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.hotel-detail-slider::before {
  bottom: 50%;
  height: 50%;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(95, 95, 95, 0.1) 100%);
}

.hotel-detail-slider::after {
 top: 25%;
  height: 75%;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(95, 95, 95, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.hotel-detail-slider {
  position: relative; /* Already set, just confirming */
  z-index: 0; /* Ensure it's below ::before and ::after */
}


/*Facilities*/

.facilities-title h2 {
  margin: 0;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 50px;
  line-height: 3.85vw;
  letter-spacing: -0.05em;
  color: #45443F;
  line-height: 120%;
  white-space: nowrap;
  color: #45443F;
}
.facilities {
  padding: 60px 0px;
  background: #f6f5f5;
}

.facility-list li {
  display: none;
}

.facility-list li:nth-child(-n+4) {
  display: list-item;
}

.hotel-name.expanded .facility-list li {
  display: list-item;
}
.facility-list li{
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.56vw;
  font-family: Inter,sans-serif;
  color: #45443F;
  letter-spacing: 0.5px;
}
.hotel-name h3 img {
  margin-right: 10px;
}
.facility-list {
  padding-left: 50px;
}
.read-more-toggle{
  font-weight: 400;
  color: #AD8B3A;
  font-size: 0.9375vw;
  line-height: 1.3125vw;
  letter-spacing: 0.1em;
  font-family: Inter,sans-serif;
  text-decoration: none;
  font-size: 14px !important;
  text-transform: full-size-kana;
}
.hotel-name h3 {
  margin-bottom: 15px !important;
}
.facilities-title {
  margin: 20px 0px 40px 0px;
}

.read-more-toggle {
  display: inline-block;
  margin-top: 10px;
  color: #AD8B3A;
  font-weight: 500;
  cursor: pointer;
/*  text-transform: uppercase;*/
  font-size: 14px;
}
.read-more-toggle:hover{
  color: #AD8B3A;
}
.hotel-name h3 {
  margin: 0;
  font-weight: 400;
  color: #45443F;
  font-size: 20px;
  line-height: 1.70vw;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.hotel-name {
  border-top: 1px solid #ddd;
  border-bottom: solid 1px #ddd;
  padding: 20px 0px;
}

/*brands*/

.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
/*  padding: 40px 0;*/
}
.main-brand{
  padding: 40px 0;
  border-bottom: solid 1px #fff;
}

.brand-logo {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.1);
}
.brand-title h3{
  margin: 0;
    margin-bottom: 0px;
  font-weight: 400;
  color: #45443F;
  font-size: 19px;
  line-height: 26px;
  font-family: Cinzel,Palatino Linotype,sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-bottom: 0.5208333333333333vw;
}

.copyrights {
  padding: 30px 0px;
}

.site-footer .copyright-text{
  margin: 0;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  font-family: Inter,sans-serif;
  color: #45443F;
  color: #FFFFFF;
}
.footer-menu-link {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  font-family: Inter,sans-serif;
  color: #45443F;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 150%;
  white-space: nowrap;
}

/*============*/


.hotel-information {
  padding-bottom: 40px;
}
/* Hide default arrows first (optional) */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 5;
  cursor: pointer;
  color: transparent;
  border: none;
  background: transparent;
}

/* Add custom arrow styles */
.slick-prev::before,
.slick-next::before {
  font-family: "Font Awesome 5 Free"; /* Optional */
  font-weight: 900;
  font-size: 20px;
  color: #ad8b3a; /* Arrow color */
  display: inline-block;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items:center ;
  border: solid 1px #ad8b3a;
}

/* Left arrow */
.slick-prev::before {
  content: "\f104"; /* FontAwesome Left Arrow */
  left: 0;
}

/* Right arrow */
.slick-next::before {
  content: "\f105"; /* FontAwesome Right Arrow */
  right: 0;
}

/* Adjust positions */
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -50px;
}

/* Optional hover effect */
.slick-prev:hover::before,
.slick-next:hover::before {
  color: #de6d64; /* Change color on hover */
}




/*trigg*/
.socialPanel {
  position: fixed;
  right: 0;
  bottom: 8%;
  z-index: 9999;
}

.triggerHover {
  position: relative;
}

.socialPanelList {
  background-color: #222;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  display: none;
}
.socialPanelList li a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:1rem;
  text-align: right;
  color: #fff;
  padding-bottom: 10px;
}

.socialPanelList li {
  list-style: none;
  margin: 10px 0;
}

.socialPanelList li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
   font-family: Inter,sans-serif;
   font-size: 16px;
   font-weight: 400;
  transition: all 0.3s ease;
}

.socialPanelList li a:hover {
  color: #ad8b3a;
}

.socialPanelList li span.iconS {
  display: inline-block;
  margin-left: 10px;
}

.socialPanelList li span.iconS img {
  width: 20px;
  height: 20px;
}

/* Trigger button */
.triggerIconBox {
  display: inline-block;
  margin:auto;
  display: flex;
  justify-content: end;
  align-items: center;

}
.triggerIconBox span {
  background-color: #ad8b3a;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius:50%;
  box-shadow: 0 0 10px rgb(0 0 0 / 19%);
  text-align: center;
  height: 45px;
  width: 45px;
  align-items: center;
}

.triggerIconBox i,
.triggerIconBox img {
  color: #fff;
  font-size: 24px;
}

/*.triggerIconBox:hover {
  background-color: #ad8b3a;
}*/
.triggerIconBox.active .triggerSocialPanel img {
  display: block !important;
}
.triggerIconBox.triggerSocialPanel img {
  display: none;
}
.triggerIconBox.active .triggerSocialPanel i {
  display: none; !important;
}
.triggerIconBox.triggerSocialPanel i {
  display: block;
}


.modal-body p {
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 22px;
}




/*Responsive */

@media (max-width: 900px) {
  #myTab{
    justify-content: inherit !important;
  }
  #profile {
  margin-top: 0px;
}
.stroy {
  padding:
20px 0px;
}
.legendary h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.legendary p {
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 300;
  text-align: justify;
}
  .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .nav-tabs .nav-item {
    flex: 0 0 auto;
  }

  .nav-tabs .nav-link {
    display: inline-block;
    white-space: nowrap;
  }
  #myTab li .active{
    width: 100%;
  }
  .highlits {
    padding:25px 0px;
  }
  .highlite-title h2 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.description-highlits p {
  color: #45443F;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
  font-size: 16px;
  letter-spacing: 0;
  text-align: justify;
}
.higlights-hotel-main {
  padding:12px 0px;
}
.info-highlights-hotel h3 {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 28px;
  font-weight: 500;
}
.offers {
  padding:20px 0px;
}
.offer-title h2{
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.offer-info h3 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin:10px 0px;
}
.offer-info p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-align: justify;
  margin:0px;
  font-weight: 300;
}
.hotel-information-title {
  padding:
10px 0px;
}
.hotel-information-title h2 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.check-in-check-out p img {
  width: 20px;
}
.check-in-check-out p span{
  font-size: 16px;
  font-weight: 500;
}
.main-check-in{
  height: inherit;
  padding: 10px 0px;
}
.download-hotel-clas a {
  font-size: 16px;
}
.facilities-title h2{
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.facilities {
  padding:20px 0px;
}
.facility-list li{
  line-height: 24px;
}
.section-padding, .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
}
.map-title h2{
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.5px;
}

.accordion-body p {
  font-size: 16px;
}
.footer-mail button {
  transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-weight: 700;
  height: auto;
  border-radius:0px;
  font-size: 15px;
  line-height: 22px;
  font-family: Inter;
  padding:10px;
  background-color: #FFFFFF;
  letter-spacing: 0.5px;
  color: #45443F;
  opacity: 0.7;
  cursor: not-allowed;
  visibility: unset;
  text-transform: uppercase;
  border:0;
  width: 100%;
}
.footer-mail input{
  font-size: 10px;
}
.footer-mail{
  margin-top: 25px;
}
.footer-mail-number a{
  font-size: 14px;
}
.footer-menu h3{
  line-height: 18px;
}
.footer-menu.mt-4 {
  margin:20px 0px !important;
}
.footer-menu.links-footer {
  padding-left: 0px;
}
.footer-top {
  padding-bottom: 25px;
}
.top-hotel ul li {
  flex:auto;
  list-style:none;
}
.hotls-top-main #faqAccordion button{
  padding: 15px 0px;
}
.brands img {
  width: 75px;
/*  margin: 0px 10px;*/
}
.main-brand {
  padding:20px 0;
}
.brand-title h3{
  margin-bottom: 15px;
}
.copyrights {
  padding:10px 0px;
}
.copyright-text-wrap {
  margin-top: 15px !important;
  text-align: center;
  margin-bottom: 20px;
  }
.col-lg-12.col-12.pb-5 {
  padding-bottom: 20px !important;
}


.slider-left img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius:10px;
  height: 200px;
  object-fit: cover;
  margin-right: 0px;
    width: 100%;
  }
.slider-left {
  display: block;
}
.slider-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  width: 70%;
  margin:0 auto;
  padding:15px;
  z-index: 99;
  width: 90%;
}

 .slider-wrapper .slick-next {
  right: 0;
  
}
 .slider-wrapper .slick-prev {
    left: 0;
   
 }
 .slider-wrapper .slick-prev::before, .slick-next::before{
  background: #ccc;
}
 .right-des p {
  text-align: justify;
}
.offer-main .slick-next {
  right: -10px;
/*  bottom: 0;*/
/*  top: inherit;*/
}
.offer-main .slick-prev {
  left: -10px;
/*  bottom: 0;*/
/*  top: inherit;*/
}
.offer-main .slick-prev::before, .slick-next::before{
  background: #ccc;
}
.highlits .slick-next {
  right: 33%;
  bottom: -50px;
  top: inherit;
}
.highlits .slick-prev {
  left: 33%;
  bottom: -50px;
  top: inherit;
}
.slick-prev::before, .slick-next::before {
  font-size: 14px;
  height: 30px;
  width: 30px;
}

.map-title h2{
  white-space: inherit;
}
.footer-mail-number.mail-mail {
  display: block;
}

.hotls-top-main .accordion-body {
  padding:0px;
}


.navbar{
  padding-top: 5px;
  padding-bottom: 5px;
}
.modal-header h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0px;
}
.modal-body p{
  font-size: 14px;
  text-align: justify;
}

.hero-text {
  width: 100%;
}
.hero-text .form-control {
  width: 46% !important;
  border:none;
  font-family: Inter,sans-serif;
  color: #000;
}
.hero-text .form-select {
  width: 45% !important;
}
.btn.btn-primary.booking-btn {
  width: 100%;
  padding:8px;
}
.hero-text {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  transform: inherit;
  text-align: center;
}
.tab-menu-list {
  margin-top: 20px;
}
.custom-link.bi-arrow-down.arrow-icon {
  display: none;
}
.hero-text h1 {
  color: #000 !important;
  text-shadow: inherit !important;
}

.hero {
  height: auto !important;
}
.custom-video{
  position: relative;
}
}


@media(min-width:900px) and (max-width:1460px){
  .btn.btn-primary.booking-btn {
  width: 100% !important;
  padding:8px;
}
}

/*nav*/

.navbar-brand .brand-text img {
  max-width: 80px;
}
.hero-text h1 {
  text-shadow: 1px 1px 2px #000;
}

/*GALLERY*/

.gallery-item {
  position: relative;
  overflow: hidden;
/*  border-radius: 10px;*/
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}