@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Helvetica-Light";
  src: url("../assets/font/Helvetica-Neue-LT-Std-45-Light.otf")
    format("truetype");
}
/* @font-face {
  font-family: "gothamBook";
  src: url("../assets/font/Helvetica-45-Light-Regular.ttf") format("truetype");
} */
@font-face {
  font-family: "Romie_Regular";
  src: url("../assets/font/Romie_Regular.otf") format("opentype");
}
* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica-Light";

  background-color: #fff;
  font-weight: 300;
  color: #000;
}

body::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #fef1de;
}

a,
p,
ul li {
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  font-family: Helvetica-Light;
  color: #3d3c3c;
}

::-moz-selection {
  color: #fef1de;
  background: #000;
}

::selection {
  color: #fef1de;
  background: #000;
}

.scrollbar-track {
  background: rgba(0, 0, 0, 0) !important;
}

.scrollbar-track .scrollbar-thumb {
  background: #fef1de;
}

section {
  padding: 6rem 0;
  overflow-y: visible;
  position: relative;
}

video,
img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

h6,
h5,
h2,
h1,
h3,
h4 {
  font-family: "Romie_Regular";
}

.section-heading {
  color: #000;
  font-family: "Romie_Regular";
  font-size: clamp(2rem, 1.7442rem + 2.0465vw, 4.2rem);

  margin-bottom: 2rem;
}

.container-fluid {
  width: 90%;
}
.theme-btn:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.theme-btn {
  background-color: #fff;
  display: inline-block;
  font-family: "Hostania";
  color: #000;
  transition: all 0.4s ease-in-out;
  padding: 0.7rem 4vw;
  border: 1px solid #000;
  border-radius: 40px;
  font-weight: 500;
  /* margin-top: 1.5rem; */
  box-shadow: 3px 3px 10px #00000057;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form {
  padding: 4rem 3rem 8rem 3rem;
  background-color: #000000b4;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.9));
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.9));
}

.myenquire-form .theme-btn {
  /* display: block; */
  padding: 0.7rem 3vw;
  border-radius: 30px;
  color: #000;
  /* width: 100%; */
  margin-top: 2rem;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  font-weight: 600;
  border: 1px solid #fff0;
  transition: all 0.4s ease-in-out;
  background-color: #fff;
}

.myenquire-form .theme-btn:hover {
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
  color: #fff;
  background-color: transparent;
}

/* Enquire form */
.myenquire-form .input-form {
  margin-bottom: 1rem;
}

.myenquire-form select,
.myenquire-form input,
.myenquire-form select option,
.myenquire-form textarea {
  width: 100%;
  outline: none;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  padding: 7px 12px;
  caret-color: #fff;
  font-weight: 300;
  background: transparent;
  margin: 15px 0;
  font-family: "Poppins", sans-serif;
  transition: all 0.4s ease-in-out;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.myenquire-form select:focus,
.myenquire-form input:focus,
.myenquire-form select option:focus,
.myenquire-form textarea:focus {
  box-shadow: none;
  border-bottom: 1px solid #fff;
  background-color: #ffffff11;
  color: #fff;
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-webkit-input-placeholder,
.myenquire-form input::-webkit-input-placeholder,
.myenquire-form select option::-webkit-input-placeholder,
.myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder,
.myenquire-form input::-moz-placeholder,
.myenquire-form select option::-moz-placeholder,
.myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder,
.myenquire-form input:-ms-input-placeholder,
.myenquire-form select option:-ms-input-placeholder,
.myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder,
.myenquire-form input::-ms-input-placeholder,
.myenquire-form select option::-ms-input-placeholder,
.myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-webkit-input-placeholder, .myenquire-form input::-webkit-input-placeholder, .myenquire-form select option::-webkit-input-placeholder, .myenquire-form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-moz-placeholder, .myenquire-form input::-moz-placeholder, .myenquire-form select option::-moz-placeholder, .myenquire-form textarea::-moz-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select:-ms-input-placeholder, .myenquire-form input:-ms-input-placeholder, .myenquire-form select option:-ms-input-placeholder, .myenquire-form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::-ms-input-placeholder, .myenquire-form input::-ms-input-placeholder, .myenquire-form select option::-ms-input-placeholder, .myenquire-form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select::placeholder,
.myenquire-form input::placeholder,
.myenquire-form select option::placeholder,
.myenquire-form textarea::placeholder {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}

.myenquire-form select option {
  background-color: #000;
}

/*  */

/*  */
/*  */

.myenquire-form p {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  margin-bottom: 1.5rem;
}
.gallery-section .gallery-container .gallery-items.item_6 {
  grid-area: 2 / 3 / 3 / 5;
}
.gallery-section .gallery-container .gallery-items.item_5 {
  grid-area: 2 / 2 / 3 / 3;
}
.gallery-section .gallery-container .gallery-items.item_4 {
  grid-area: 2 / 1 / 3 / 2;
}
.gallery-section .gallery-container .gallery-items.item_3 {
  grid-area: 1 / 4 / 2 / 5;
}
.gallery-section .gallery-container .gallery-items.item_2 {
  grid-area: 1 / 2 / 2 / 4;
}
.gallery-section .gallery-container .gallery-items.item_1 {
  grid-area: 1 / 1 / 2 / 2;
}
.gallery-section .gallery-heading p {
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
.gallery-section .gallery-heading {
  margin-bottom: 2rem;
}
/* .gallery-section .gallery-container .gallery-items {} */
.gallery-section .gallery-container .gallery-items img {
  transition: 0.6s all ease-in-out;
  height: 100%;
}
.gallery-section .gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
/* .gallery-section {} */
.our-services .services-brnd {
  position: absolute;
  right: 0;
  top: -5%;
  width: 25%;
  z-index: -1;
}
.booking-section .booking-brnd {
  position: absolute;
  left: 0;
  top: -21%;
  z-index: -1;
  width: 25%;
}
.booking-section .booking-content p {
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
.booking-section .booking-content h3 {
  font-size: clamp(1.75rem, 1.6628rem + 0.6977vw, 2.5rem);
}
.booking-section .booking-row {
  padding: 10vw 2rem;
  background: url(../assets/images/bg-dia1.png),
    url(../assets/images/bg-dia2.png);
  background-position: left top, right bottom;
  background-size: 50%, 50%;
  background-repeat: no-repeat;
  border-radius: 5px;
  background-blend-mode: overlay;
  background-color: #e0caca;
}
.booking-section .booking-btn {
  text-align: center;
}
.booking-section .booking-btn a {
  border-radius: 0;
  box-shadow: none;
}
.booking-section {
  padding-top: 3rem;
}
/*  */
.float-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 38%;
  right: 0;
  transform: rotate(90deg) translate(0px, -42px);
  /* -webkit-writing-mode: vertical-rl; */
  z-index: 10;
}
.float-btn a {
  background: #000;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: inline-block;
  font-family: "Hostania";
  text-decoration: none;
  padding: 0.8rem 0.8rem;
  border: 1px solid #000;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.float-btn a:hover {
  background: #fff;
  color: #000;
  transition: all 0.4s ease-in-out;
}
/*  */
.error {
  color: #f00;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
/* call start */
/* Whats App start */
.btn-call-pulse {
  background: #2090fd;
  color: #fff;
  position: fixed;
  bottom: 100px;
  right: 10px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 20px;
  z-index: 99;
  text-decoration: none;
  border-radius: 50%;
  -webkit-animation-name: pulse1;
  animation-name: pulse1;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.btn-call-pulse svg {
  position: absolute;
}
.btn-call-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #2090fd;
  opacity: 0.75;
  -webkit-animation-name: pulse-border;
  animation-name: pulse-border;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.btn-call-pulse-border {
  bottom: 120px;
  right: 20px;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.btn-whatsapp-pulse {
  background: #25d366;
  color: #fff;
  position: fixed;
  bottom: 35px;
  right: 10px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 20px;
  z-index: 99;
  text-decoration: none;
  border-radius: 50%;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.btn-whatsapp-pulse svg {
  position: absolute;
}
.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  -webkit-animation-name: pulse-border;
  animation-name: pulse-border;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@-webkit-keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 143, 252, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 143, 252, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@-webkit-keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
/* .home_intro-section .home_intro-brnd2 img, */
.aboutftv-section .aboutftv-image .aboutftv-brnd2 img {
  position: absolute;
  right: 0;
  width: 25%;
  z-index: -1;
  top: -10%;
}
.home_intro-section .home_intro-brnd2 img {
  position: absolute;
  left: 0;
  width: 25%;
  bottom: -10%;
  z-index: -1;
}
.aboutftv-section .patch {
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: #e0caca;
  z-index: -1;
  position: absolute;
}
.home_intro-section .patch {
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: #e0caca;
  z-index: -1;
  position: absolute;
}
.home_intro-section {
  background: linear-gradient(
    180deg,
    #dbbbbb -36%,
    rgba(255, 255, 255, 0.41) 77.76%
  );
}
.statistics-section .statistics-content p {
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
.statistics-section .statistics-content h3 {
  font-size: clamp(2rem, 1.8837rem + 0.9302vw, 3rem);
  font-weight: 700;
}
.statistics-section .statistics-content {
  text-align: center;
}
.statistics-section {
  padding: 8rem 0;
}
/*  */
.home-section .image1-heading h1 {
  color: #fff;
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.75);
  font-size: clamp(2rem, 1.6rem + 1.7vw, 4rem);
}
/* .home-section .image1-heading {
  margin: 4rem 4rem;
} */
.home-section .header-logo img {
  width: auto;
  height: 80px;
}
.home-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #0006;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-section {
  background: url(../assets/images/image-2.jpg) no-repeat center;
  background-size: cover;
  padding: 3rem 0 6rem 0;
  background-attachment: fixed;
  background-color: #0005;
  background-blend-mode: soft-light;
  position: relative;
  z-index: 1;
}
.enquire {
  position: relative;
  z-index: 1;
  padding: 40px 0 140px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-image: url("../assets/images/seamless-pattern.svg");
}
/*  */
/* Footer */

.footer .footer-btn {
  display: inline-block;
  padding: 0.5rem 4vw;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  background-color: #fff;
}

.footer .footer-logo img {
  width: auto;
  height: 70px;
}
.footer p a {
  display: block;
}
.footer p a,
.footer p {
  margin-top: 1rem;
  /* text-align: center; */
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
.footer {
  padding: 5rem 0 0 0;
  position: relative;
  background-color: #161616;
}
a {
  text-decoration: none;
}

.footer-social-links {
  margin: 2rem 0;
}

.footer-social-links ul > * + * {
  margin-left: 12px;
}

.footer-social-links ul li a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #fff9;
  border-radius: 50%;
  transition: all 0.5s ease-in;
  background: rgba(255, 255, 255, 0.0666666667);
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  line-height: 28px;
  color: #fff;
}

.footer-social-links ul li:hover a i {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.5s ease;
  transform: scale(1.2);
}

.footer .contact-flex li a i {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  margin-right: 5px;
}

.footer .contact-flex li a {
  color: #fff;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
}
/* .footer .contact-flex li {
  text-align: center;
} */
.footer .contact-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .copyright {
  margin-top: 1rem;
}

.footer .copyright p {
  padding: 1rem 0;
  font-size: 0.7rem;
  color: #fff;
  border-top: 1px solid #fff9ef73;
}

.footer .copyright p a {
  color: inherit;
  font-size: inherit;
}

.footer .links ul li {
  transition: all 0.4s ease-in-out;
  padding: 0.2rem 0;
}

.footer .links ul li a {
  color: #fff;
  font-size: 12px;
}

.footer .links ul li a i {
  font-size: 14px;
  color: #ffca2f;
  padding-right: 0.7rem;
}

.footer .links ul li a:hover {
  color: #ffca2f;
}

.footer .links ul li:hover {
  padding-left: 0.5rem;
}
/* special offers */
.special_off-section .special_off-content h5 span {
  font-size: 6vw;
}
.special_off-section .special_off-content h5 {
  font-size: 2.5rem;
}
.special_off-section .special_off-content h4 {
  font-size: 2.5rem;
}
.special_off-section .special_off-content h2 {
  font-size: 2.5rem;
}

.special_off-section .special_off-brnd {
  position: absolute;
  right: 0;
  width: 20%;
  bottom: -10%;
  z-index: -1;
}
.special_off-section {
  background: url(../assets/images/bg-dia1.png) no-repeat left top;
  background-size: contain;
}
/* special offers  */
/*   */
.modal-header {
  display: flex;
  flex-direction: column;
}

.modal-content {
  padding: 40px 20px;
}

.btn-close {
  float: right;
  right: 5%;
  position: absolute;
  top: 5%;
}

.modal-body input {
  width: 60px;
  height: 80px;
  border-radius: 15px;
  text-align: center;
  font-size: 24px;
  margin: 0 5px;
  outline: none;
  border: 0.854px solid #000;
}

.modal-header,
.modal-footer {
  border-bottom: 0;
  border-top: 0;
}

.modal-footer {
  text-align: center;
  margin-top: 10px;
  justify-content: center;
}

.modal-header h5 {
  color: #000000;
  padding: 10px 0;
  text-align: center;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.modal-header p {
  color: #000;
  text-align: center;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-body {
  display: flex;
  justify-content: center;
}

.modal-footer button:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

.modal-footer button {
  border-radius: 10px;
  background: #000;
  color: #ffffff;
  border: 1px solid transparent;
  text-align: center;
  font-size: clamp(0.875rem, 0.846rem + 0.2316vw, 1.124rem);
  padding: 15px 0;
  width: 80%;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-header a svg {
  margin-right: 0px;
  height: 30px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  color: #000;
}

@media screen and (max-width: 992px) {
  .myenquire-form .theme-btn {
    padding: 0.7rem 1.5rem;
  }

  .special_off-section .special_off-content h4,
  .special_off-section .special_off-content h5,
  .special_off-section .special_off-content h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .special_off-section {
    background: transparent;
  }
  .special_off-section .special_off-brnd {
    width: 40%;
    bottom: auto;
    top: 0;
  }
  .special_off-section .special_off-content h5 span {
    font-size: 10vw;
  }
  .aesthetic-procedures {
    background: url(../assets/images/d-left.png) no-repeat left top;
    background-size: 78%;
    background-position: -69% 0%;
  }
  .myenquire-form {
    background: url(../assets/images/wings.png) no-repeat center;
    background-size: contain;
    background-color: #000000b5;
    background-attachment: fixed;
  }
  .home_intro-section .patch {
    width: 100%;
    height: 30%;
    top: auto;
    bottom: 0;
  }
  .aboutftv-section .patch {
    height: 36%;
    width: 100%;
  }
  .home-section .header-logo {
    margin-bottom: 1.5rem;
  }
  .home-section .header-logo img {
    height: 70px;
  }
}

@media screen and (max-width: 576px) {
  .home_intro-section .home_intro-brnd2 img {
    position: absolute;
    left: 0;
    width: 39%;
    bottom: -14%;
  }
  .aboutftv-section .aboutftv-image .aboutftv-brnd2 img {
    width: 36%;
    top: -10%;
    mix-blend-mode: multiply;
  }

  .our-services .services-brnd {
    top: 0%;
    width: 36%;
  }
  .booking-section .booking-brnd {
    top: -16%;
    width: 40%;
  }
  .gallery-section .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .gallery-section .gallery-container .gallery-items.item_6 {
    grid-area: 4 / 1 / 5 / 3;
  }
  .gallery-section .gallery-container .gallery-items.item_5 {
    grid-area: 3 / 2 / 4 / 3;
  }
  .gallery-section .gallery-container .gallery-items.item_4 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .gallery-section .gallery-container .gallery-items.item_3 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .gallery-section .gallery-container .gallery-items.item_2 {
    grid-area: 2 / 1 / 3 / 3;
  }
  .gallery-section .gallery-container .gallery-items.item_1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .home_intro-section.tweak-section .home_intro-brnd2 img {
    bottom: auto;
    top: -10%;
    width: 45%;
  }
}

@media screen and (max-width: 500px) {
  .special_off-section .special_off-content h4,
  .special_off-section .special_off-content h5,
  .special_off-section .special_off-content h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  .footer .contact-flex {
    gap: 0.5rem;
  }
  .special_off-section .special_off-content h5 span {
    font-size: 12vw;
  }
  .footer .contact-flex li a,
  .footer p a,
  .footer p {
    font-size: 1rem;
  }

  .home-section {
    padding: 2rem 0 6rem 0;
  }
  .booking-section .booking-brnd {
    top: -16%;
    width: 51%;
  }
  .home-section {
    padding: 2rem 0 3rem 0;
  }
  .our-services .services-brnd {
    top: 0%;
    width: 40%;
  }
  .special_off-section .special_off-brnd {
    width: 63%;
    bottom: auto;
  }
}

@media screen and (max-width: 375px) {
  .container-fluid {
    width: 100%;
  }

  .myenquire-form {
    padding: 4rem 1.5rem 8rem 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .special_off-section .special_off-content h4,
  .special_off-section .special_off-content h5,
  .special_off-section .special_off-content h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 320px) {
  .aboutftv-section .patch,
  .home_intro-section .patch {
    height: 22%;
  }
}
