:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #4A4A4A;
  --primary-color: #091733;
  --yellow-color: #DAA520;
  --light-yellow-color: #F4F0E7;
  --heading-yellow-color: #DCC5A2;
  --dark-yellow-color: #B9A082;

}
/*---------- Our room start -----------*/

.our-room-sec {
  display: inline-block;
  width: 100%;
}

.our-room-sec p {
  font-size: 18px;
  line-height: 30px;
}

.our-room-sec small {
  font-size: 20px;
}

.our-room-sec .room-info {
  padding-left: 80px;
  font-family: "Cinzel", serif;
}

.our-room-sec .room-info label {
  font-size: 18px;
}

.our-room-sec .room-info .number {
  padding-left: 10px;
}

.our-room-sec small.line::after {
  left: -48px;
  width: 38px;
}

.our-room-sec .room-information {
  height: 100%;
  padding: 0;
  width: 48%;
}

.our-room-sec .room-information h2{
  color: var(--primary-color);
  font-weight: 500;
  font-size: 35px;
}

.our-room-sec .total {
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  position: absolute;
  bottom: 10%;
  right: 0;
  color: var(--primary-color);
  display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.our-room-sec .total strong {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
}

/*---------- Our room End -----------*/

/*---------- Holiday Discount start -----------*/

.holiday-discount {
  background: #F8F8F8;
}

.holiday-discount hr {
  width: 1px;
  height: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
}

/*---------- Holiday Discount End -----------*/

/*---------- Special Deal start -----------*/

.faq-sec {
  /* background-color: #F8F8F8; */
}

.faq-sec .accordion-container .accordion-title {
  position: relative;
  font-size: 30px;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  padding: 10px 70px 20px 0;
  border-bottom: 1px solid rgba(9, 23, 51, 0.2);
}

.faq-sec .accordion-container .accordion-title:active, .accordion-title.open {
  /* background-color: #F8F8F8; */
  border-bottom: none !important;
}



.faq-sec .accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/faq-down-arr.svg) no-repeat top left;
  width: 58px;
  height: 58px;
}

.faq-sec .accordion-container .accordion-title.open::after {
  content: "";
  position: absolute;
  background: url(../images/accoding-up-arrow.svg) no-repeat top left;
}

/*CSS for CodePen*/

.accordion-content {
  padding: 20px 0;
}


/*---------- Special Deal End -----------*/


/*---------- Media Css Start -----------*/
@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 767px) {
  .our-room-sec .room-information {
    overflow: hidden;
  }

  .our-room-sec small {
    font-size: 14px;
  }

  .our-room-sec b {
    font-size: 14px;
  }

  .our-room-sec p {
    font-size: 16px;
    line-height: 25px;
  }

  .our-room-sec .room-info label {
    font-size: 16px;
  }

  .faq-sec .accordion-container .accordion-title {
    font-size: 20px;
    padding-top: 0;
  }

  .our-room-sec .total strong {
    font-size: 38px;
  }

  .our-room-sec .total {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .room-information .bedrooms img {
    max-width: 58px;
    height: 42px;
  }

}