* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "DM Serif Display", serif;
  src: url("../font/DMSerifDisplay-Regular.ttf");
}
@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../font/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../font/Montserrat-SemiBold.ttf");
}
@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../font/Montserrat-Bold.ttf");
}
html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

:root {
  --first-color: #dea722;
  --second-color: #563d38;
  --white: #FFF;
  --black: #000;
  --option: #003a42;
}

.sticky-top {
  background-color: var(--white);
}

.scroll-left {
  background-color: var(--option);
  height: 35px;
  overflow: hidden;
  position: relative !important;
}

.scroll-left p {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  -webkit-animation: scroll-left 15s linear infinite;
  animation: scroll-left 12s linear infinite;
  font-family: "Montserrat", sans-serif;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 35px;
}

.slide {
  color: var(--first-color);
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    /* Browser bug fix */
    /* Browser bug fix */
    transform: translateX(100%);
  }
  100% {
    /* Browser bug fix */
    /* Browser bug fix */
    transform: translateX(-100%);
  }
}
.navbar .navbar-brand img {
  height: 70px;
}
.navbar ul li a {
  font-family: "DM Serif Display", serif;
  color: var(--first-color) !important;
  font-size: 20px !important;
  letter-spacing: 1px;
  font-weight: 500 !important;
  transition: all 0.5s ease-in-out;
}
.navbar ul li a:hover {
  background-color: var(--option);
  border-top-right-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.navbar .nav-btn .btn {
  background-color: var(--option);
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-top-right-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.overview-section .over-info {
  text-align: center;
}
.overview-section .over-info h2 {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.overview-section .over-info h2 .heading-h2 {
  background-color: var(--first-color);
  color: var(--black);
  border-radius: 15px;
  padding: 5px 6px 5px 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.overview-section .over-info p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600 !important;
  line-height: 30px;
  color: var(--black);
}
.overview-section .over-info .over-btn .btn {
  background-color: var(--option);
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-top-right-radius: 15px;
}
.overview-section .over-info .over-btn .btn:focus {
  box-shadow: none;
}

.configuration-section {
  background-color: #ccc;
}
.configuration-section h2 {
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.configuration-section h2 .cong-h2 {
  background-color: var(--first-color);
  color: var(--black);
  border-radius: 15px;
  padding: 5px 6px 5px 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.configuration-section .config-info .table {
  background-color: var(--option);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-top-right-radius: 30px;
}
.configuration-section .config-info .table th {
  font-family: "DM Serif Display", serif;
  color: var(--white);
  font-weight: 500;
  font-size: 22px;
}
.configuration-section .config-info .table td {
  color: var(--white);
  font-weight: 500;
}
.configuration-section .config-info .table a {
  color: var(--first-color);
}

.amenities-section h2 {
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.amenities-section h2 .amen-h2 {
  background-color: var(--first-color);
  color: var(--black);
  border-radius: 15px;
  padding: 5px 6px 5px 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.amenities-section .amenitie-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.amenities-section .amenitie-part .ameniti-info {
  text-align: center;
}
.amenities-section .amenitie-part .ameniti-info img {
  height: 80px;
  margin-bottom: 10px;
}
.amenities-section .amenitie-part .ameniti-info h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.amenities-section .am-btn {
  text-align: center;
}
.amenities-section .am-btn .btn {
  background-color: var(--option);
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-top-right-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.amenities-section .am-btn .btn:hover {
  color: var(--first-color);
  transition: all 0.3s ease-in-out;
}
.amenities-section .am-btn .btn:focus {
  box-shadow: none;
}

.gallery-section {
  background-color: #ccc;
}
.gallery-section h2 {
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.gallery-section h2 .gal-h2 {
  background-color: var(--first-color);
  color: var(--black);
  border-radius: 15px;
  padding: 5px 6px 5px 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.gallery-section .swiper {
  width: 100%;
  height: 100%;
}
.gallery-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 10px;
}
.gallery-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--option);
  padding: 10px;
}

.about-section h2 {
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.about-section h2 .ab-h2 {
  background-color: var(--first-color);
  color: var(--black);
  border-radius: 15px;
  padding: 5px 6px 5px 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.about-section .about-info p {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  text-align: center;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
}
.about-section .about-info .ab-sp {
  color: var(--option);
}
.about-section .group-info {
  text-align: center;
}
.about-section .group-info h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: "DM Serif Display", serif;
}
.about-section .group-info img {
  height: 100px;
}

.about-address {
  text-align: center;
}
.about-address h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: "DM Serif Display", serif;
}
.about-address p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.map .map-part iframe {
  width: 100%;
  height: 400px;
}

.footer-section {
  background-color: #F5F5F5;
}
.footer-section .footer-info {
  text-align: center;
}
.footer-section .footer-info .footer-logo img {
  height: 70px;
  margin-bottom: 10px;
}
.footer-section .footer-info .footer-qr img {
  height: 90px;
  margin-bottom: 10px;
}
.footer-section .footer-info .footer-read h6 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.footer-section .footer-info .footer-read p {
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer-section .footer-info .copyright p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.whatsapp-chat {
  height: 55px;
  width: 55px;
}

#myBtn {
  position: fixed;
  bottom: 2px;
  right: 0;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn img {
  width: 34px;
  transition: all 0.3s ease-in-out;
}

.modal {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal .modal-header {
  background-color: var(--option);
}
.modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: 600;
  font-family: "DM Serif Display", serif;
  color: var(--white);
}
.modal .modal-body {
  background-color: var(--option);
}
.modal .modal-body label {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.modal .modal-body ::-moz-placeholder {
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.modal .modal-body :-ms-input-placeholder {
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.modal .modal-body ::placeholder {
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.modal .close {
  color: var(--first-color);
}
.modal .btn {
  background-color: var(--first-color);
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.modal .btn:focus {
  outline: none;
}
.modal .btn:hover {
  background-color: var(--first-color);
}

.thank-you-section {
  text-align: center;
}
.thank-you-section .thankyou-logo img {
  height: 90px;
  margin-bottom: 10px;
}
.thank-you-section .thankyou-text h1 {
  font-size: 40px;
  font-family: "DM Serif Display", serif;
  font-weight: 600;
}
.thank-you-section .thankyou-check .fas {
  font-size: 40px;
  color: var(--first-color);
}
.thank-you-section .thankyou-info p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.thank-you-section .thankyou-copy p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 600px) {
  .scroll-left {
    background-color: var(--option);
    height: 35px;
  }
  p {
    font-size: 12px !important;
  }
  .navbar .navbar-brand img {
    height: 60px;
  }
  .overview-section .over-info {
    text-align: center;
  }
  .overview-section .over-info h2 {
    font-size: 22px;
  }
  .overview-section .over-info p {
    font-size: 12px;
  }
  .configuration-section {
    background-color: #ccc;
  }
  .configuration-section h2 {
    font-size: 22px;
  }
  .configuration-section .config-info .table th {
    font-size: 14px;
  }
  .configuration-section .config-info .table td {
    font-size: 12px !important;
  }
  .configuration-section .config-info .table a {
    font-size: 12px !important;
  }
  .amenities-section h2 {
    font-size: 22px;
  }
  .amenities-section .amenitie-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amenities-section .amenitie-part .ameniti-info img {
    height: 80px;
    margin-bottom: 10px;
  }
  .amenities-section .amenitie-part .ameniti-info h3 {
    font-size: 14px;
  }
  .gallery-section h2 {
    font-size: 22px;
  }
  .about-section h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  .scroll-left {
    background-color: var(--option);
    height: 35px;
  }
  p {
    font-size: 12px !important;
  }
  .navbar .navbar-brand img {
    height: 60px;
  }
  .overview-section .over-info {
    text-align: center;
  }
  .overview-section .over-info h2 {
    font-size: 22px;
  }
  .overview-section .over-info p {
    font-size: 12px;
  }
  .configuration-section {
    background-color: #ccc;
  }
  .configuration-section h2 {
    font-size: 22px;
  }
  .configuration-section .config-info .table th {
    font-size: 14px;
  }
  .configuration-section .config-info .table td {
    font-size: 12px !important;
  }
  .configuration-section .config-info .table a {
    font-size: 12px !important;
  }
  .amenities-section h2 {
    font-size: 22px;
  }
  .amenities-section .amenitie-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amenities-section .amenitie-part .ameniti-info img {
    height: 80px;
    margin-bottom: 10px;
  }
  .amenities-section .amenitie-part .ameniti-info h3 {
    font-size: 14px;
  }
  .gallery-section h2 {
    font-size: 22px;
  }
  .about-section h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .scroll-left {
    background-color: var(--option);
    height: 35px;
  }
  p {
    font-size: 10px !important;
  }
  .navbar .navbar-brand img {
    height: 60px;
  }
  .map .map-part iframe {
    width: 100% !important;
  }
  .overview-section .over-info {
    text-align: center;
  }
  .overview-section .over-info h2 {
    font-size: 22px;
  }
  .overview-section .over-info p {
    font-size: 12px;
  }
  .configuration-section {
    background-color: #ccc;
  }
  .configuration-section h2 {
    font-size: 22px;
  }
  .configuration-section .config-info .table th {
    font-size: 14px;
  }
  .configuration-section .config-info .table td {
    font-size: 12px !important;
  }
  .configuration-section .config-info .table a {
    font-size: 12px !important;
  }
  .amenities-section h2 {
    font-size: 22px;
  }
  .amenities-section .amenitie-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amenities-section .amenitie-part .ameniti-info img {
    height: 80px;
    margin-bottom: 10px;
  }
  .amenities-section .amenitie-part .ameniti-info h3 {
    font-size: 14px;
  }
  .gallery-section h2 {
    font-size: 22px;
  }
  .about-section h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 375px) {
  .scroll-left {
    background-color: var(--option);
    height: 35px;
  }
  p {
    font-size: 10px !important;
  }
  .navbar .navbar-brand img {
    height: 60px;
  }
  .overview-section .over-info {
    text-align: center;
  }
  .overview-section .over-info h2 {
    font-size: 22px;
  }
  .overview-section .over-info p {
    font-size: 12px;
  }
  .configuration-section h2 {
    font-size: 22px;
  }
  .configuration-section .config-info .table th {
    font-size: 14px;
  }
  .configuration-section .config-info .table td {
    font-size: 12px !important;
  }
  .configuration-section .config-info .table a {
    font-size: 12px !important;
  }
  .amenities-section h2 {
    font-size: 22px;
  }
  .amenities-section .amenitie-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amenities-section .amenitie-part .ameniti-info img {
    height: 80px;
    margin-bottom: 10px;
  }
  .amenities-section .amenitie-part .ameniti-info h3 {
    font-size: 14px;
  }
  .gallery-section h2 {
    font-size: 22px;
  }
  .about-section h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 320px) {
  .scroll-left {
    background-color: var(--option);
    height: 35px;
  }
  p {
    font-size: 8px !important;
  }
  @-webkit-keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .navbar .navbar-brand img {
    height: 60px;
  }
  .overview-section .over-info {
    text-align: center;
  }
  .overview-section .over-info h2 {
    font-size: 22px;
  }
  .overview-section .over-info p {
    font-size: 12px;
  }
  .configuration-section {
    background-color: #ccc;
  }
  .configuration-section h2 {
    font-size: 22px;
  }
  .configuration-section .config-info .table th {
    font-size: 14px;
  }
  .configuration-section .config-info .table td {
    font-size: 12px !important;
  }
  .configuration-section .config-info .table a {
    font-size: 12px !important;
  }
  .amenities-section h2 {
    font-size: 22px;
  }
  .amenities-section .amenitie-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amenities-section .amenitie-part .ameniti-info img {
    height: 80px;
    margin-bottom: 10px;
  }
  .amenities-section .amenitie-part .ameniti-info h3 {
    font-size: 14px;
  }
  .gallery-section h2 {
    font-size: 22px;
  }
  .about-section h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=main.css.map */
.footer-read {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between image and text */
}

.footer-read img {
  max-height: 60px;
  height: auto;
  width: auto;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px; /* optional: space between items */
  text-align: center; /* center text inside children */
}