body {
  font-family: "Montserrat", sans-serif;
  background-color: #040404 !important;
  color: #fefefe;
  position: relative;
  background: transparent;
}

/*body::before {
  content: "";
  position: fixed;
  background: #040404 url("../image/slide.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
  opacity: 0.8;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}
*/

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 750px) {
  #background-video {
    display: inline-flex;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a,
#header h1 a:hover {
  color: #f97300;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 35px;
  margin-top: 20px;
  color: #f97300;
}

#header h2 span {
  color: #fefefe;
  border-bottom: 2px solid #f97300;
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fefefe;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#header .social-links a:hover {
  background: #f97300;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: 15px;
  }

  #header .container {
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}

#header.header-top .social-links,
#header.header-top h2 {
  display: none;
}

#header.header-top .reg_btn {
  display: none;
}
#header.header-top h6 {
  display: none;
}
#header.header-top .console-container {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}
#header.header-top .form_bg {
  display: none;
}
#header.header-top img {
  max-height: 250px;
  margin-right: 20px !important;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }
}

.come_txt {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
  text-decoration: none;
  background: #f97300;
  border-radius: 5px;
  border-style: solid;
  border-color: #f97300;
  display: inline-block;
  padding: 10px 25px;
}

.come_txt:hover {
  color: #fefefe;
  background: #f7ba016e;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.hidden {
  opacity: 0;
}
.console-container {
  font-size: 3em;
  text-align: start;
  display: block;
  position: relative;
  color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.console-underscore {
  display: inline-block;
  position: relative;
}
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 0px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li + li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}
/*background: linear-gradient(to left, #06092200 50%, #09aff4 50%);*/
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #f97300;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fefefe;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fefefe;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 45px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar-mobile li {
  padding: 12px 20px;
}

.navbar-mobile li + li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
}

.come_txt {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background: #ff5400;
  border-radius: 5px;
  border-style: solid;
  border-color: #ff5400;
  display: inline-block;
  padding: 5px 5px;
}

.come_txt:hover {
  color: #fefefe;
  background: #f7ba016e;
}

.form_bg {
  background-color: #00000045;
  border-style: solid;
  border-color: #f97300;
  border-image: linear-gradient(to bottom, black, #ff5400, rgba(0, 0, 0, 0)) 1
    100%;
}

.form_in {
  background-color: transparent;
  color: antiquewhite;
}

option {
  color: #040404;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  /* z-index: 2; */
}

section.section-show {
  top: 80px;
  bottom: auto;
  opacity: 1;
}

section .container-fluid {
  background: rgb(0, 0, 0);
  padding: 0px 0 0;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 60px;
  }
}

.section-title h2 {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Libre Bodoni";
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f97300;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fefefe;
}

/*--------------------------------------------------------------
# accommodation
--------------------------------------------------------------*/
.accommodation {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/accommodation.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.acc_logo {
  text-align: center;
}
.exi_tittle {
  color: #f9f9fb;
  text-align: center;
  font-size: 8rem;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

@media screen and (max-width: 992px) {
  .exi_tittle {
    color: #f9f9fb;
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    font-family: "Playfair Display", serif;
  }
}

@media screen and (max-width: 600px) {
  .exi_tittle {
    color: #f9f9fb;
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    font-family: "Playfair Display", serif;
  }
}

.form_front {
  min-width: 95%;
  padding: 0 50px 0 50px;
}

.text_bg {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 50px 0 50px;
  margin: -30px -30px 0 -30px;
}
.exi_text {
  font-weight: 700;
  font-size: 2rem;
}
.exi_text_bg {
  font-weight: 500;
  font-size: 15px;
}

.foot_icon {
  color: white;
  font-size: 1rem;
  padding-left: 15px;
}

.room_text {
  font-family: "Cormorant Garamond", serif;
  font-size: xx-large;
  font-weight: 600;
}

.card_room {
  color: #eee;
  border: none !important;
  background: none !important;
}

.room_image {
  box-shadow: -5px -5px 15px -10px #f97300;
}

/*===========================restaurant ==========================*/
.rest {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/rest.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*===========================about ==========================*/
.about_us {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/about.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


/*===========================booking ==========================*/
.booking {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/booking.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #f7b801;
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-me .content ul strong {
  margin-right: 10px;
}

.about-me .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #f7b801;
  line-height: 0;
}

.about-me .content p:last-child {
  margin-bottom: 0;
  text-align: justify;
}

/*=============image wrapper vision==============*/
.vision {
  position: relative;
  width: 80%;
  padding-top: 50%;
  margin: 2rem auto;
}
.vision > .block {
  position: absolute;
  height: 100%;
  width: 30%;
  perspective: 1000px;
}
.vision > .block:nth-of-type(1) {
  height: 80%;
  top: 10%;
  left: 17%;
  width: 15%;
}
.vision > .block:nth-of-type(2) {
  top: 0;
  left: 35%;
}
.vision > .block:nth-of-type(3) {
  height: 80%;
  top: 10%;
  left: 64%;
  width: 15%;
}
.vision > .block > .side {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("image/accommodation/accommodation.jpg");
  background-size: auto 100%;
  box-shadow: -1vw 0.5vw 1vw rgba(254, 90, 1, 0.259);
}
.vision > .block > .side.-main {
  height: 100%;
  width: 100%;
  transform: rotateY(30deg);
  transform-origin: 0 50%;
}
.vision > .block > .side.-left {
  height: 100%;
  width: 20%;
  transform-origin: 0 50%;
  transform: rotateY(-60deg) translateX(-100%);
  filter: brightness(40%);
}
.vision > .block:nth-of-type(1) > .side.-main {
  background-position: 4% 50%;
  background-size: auto 130%;
}
.vision > .block:nth-of-type(1) > .side.-left {
  background-position: 0 50%;
  background-size: auto 130%;
}
.vision > .block:nth-of-type(2) > .side.-main {
  background-position: 50% 0;
}
.vision > .block:nth-of-type(2) > .side.-left {
  background-position: 28.5% 0;
}
.vision > .block:nth-of-type(3) > .side.-main {
  background-position: 96% 50%;
  background-size: auto 130%;
}
.vision > .block:nth-of-type(3) > .side.-left {
  background-position: 78% 50%;
  background-size: auto 130%;
}
/*===========================testimonial ==========================*/

.card {
  height: 300px;
  transform-style: preserve-3d;
  perspective: 500px;
  border: none;
  background-color: inherit;
}

.card .face {
  position: absolute;
  color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: rgba(125, 125, 125, 0.06);
  transform-style: preserve-3d;
  transition: 0.5s;
  backface-visibility: hidden;
  border-top: 1px solid #f97300;
  border-left: 1px solid #f97300;
  /* border-right: 1px solid #999;
border-bottom: 1px solid #999; */
}

.card .face.front-face,
.card .face.back-face {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card .face.front-face .profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.card .face.front-face .name {
  letter-spacing: 2px;
}

.card .face.front-face .designation {
  font-size: 0.8rem;
  color: #ddd;
  letter-spacing: 0.8px;
}

.card:hover .face.front-face {
  transform: rotateY(180deg);
}

.card .face.back-face {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  transform: rotateY(180deg);
  padding: 20px 30px;
  text-align: center;
  user-select: none;
}

.card .face.back-face .fa-quote-left {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 1.2rem;
}

.card .face.back-face .fa-quote-right {
  position: absolute;
  bottom: 35px;
  right: 25px;
  font-size: 1.2rem;
}

.card:hover .face.back-face {
  transform: rotateY(360deg);
}

@media (max-width: 992px) {
  .col-lg-4 {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .caro_arrow_left {
    display: none;
  }

  .caro_arrow_right {
    display: none;
  }
}

.caro_arrow_left {
  margin: 30% 0 0 40%;
}

.caro_arrow_right {
  margin: 30% 40% 0 0;
}
/*===========================restaurant ==========================*/
.restaurant {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/restaurant.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.visited {
  border-bottom-right-radius: 284px;
  border-bottom: 5px solid #f97300;
}

.dot {
  height: 150px;
  width: 150px;
  background-color: #ff5400;
  border-radius: 50%;
  display: inline-block;
  z-index: 99;
  position: absolute;
  margin: -135px 0px 0px 200px;
  color: white;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  align-content: center;
  font-family: "Libre Bodoni", serif;
  font-style: italic;
}

@media (max-width: 992px) {
  .dot {
    margin: -135px 0px 0px 290px;
  }
}

@media (max-width: 600px) {
  .dot {
    margin: -135px 0px 0px 180px;
  }
}

.place {
  font-family: "Libre Bodoni";
  font-style: italic;
  font-size: 20px;
  padding-top: 15px;
  color: #f1d600;
}

.off_visit {
  background: #f1d600;
  color: black !important;
  font-size: 12px;
  text-align: start;
  margin: auto;
}

.viit_tittle {
  font-family: "Libre Bodoni";
  font-style: italic;
  font-size: 40px !important;
  color: #fefefe;
  font-weight: 300;
}

.visit_main {
  border-bottom: 1px solid #ff5400;
}

.list_detail {
}

.list_border {
  border-right: 1px solid #ff5400;
}
.mapdiv {
  width: 45%;
  margin: auto;
}

.mapdiv path {
  fill: #ff5400;
  stroke: #ffffff;
  stroke-width: 5px;
  transition: fill 0.3s;
}

.mapdiv :hover {
  fill: #f5cc52;
}

/*===========================offers ==========================*/
.offers {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/offer.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal_z {
  z-index: 9999; /* Ensure modal has a higher z-index */
}

.singin {
  background: rgba(0, 0, 0, 0.94);
  min-width: 450px;
  padding: 50px 10px 50px 10px;
  border-style: solid;
  border-color: #ff5400;
  border-image: linear-gradient(to bottom, black, #ff5400, rgba(0, 0, 0, 0)) 1
    100%;
}
@media (max-width: 992px) {
  .singin {
    min-width: 300px;
  }
}

.link_txt {
  text-decoration: none;
  color: #03fb80;
  font-weight: 800;
}

.btn_color {
  background: #ff5400;
  color: #000000;
  font-weight: 600;
  border-style: solid;
  border-color: #ff5400;
}

.btn_color:hover {
  background: #f7ba0163;
}

.text {
  color: #ff5400;
  font-size: 15px;
  font-weight: 400;
}

.form_txt {
  color: #fefefe;
  font-size: 2rem;
  font-weight: 500;
}

/*===========================facilities ==========================*/
.facilities {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/facilities.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.flip-card {
  background-color: transparent;
  width: 359px;
  height: 333px;
  perspective: 1000px;
  margin-bottom: 37px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #fff;
  color: #000000;
  padding: 67px 37px 72px;
}

.flip-card-back {
  background-color: #000000;
  color: white;
  transform: rotateY(180deg);
}

.flip-card-front h4 {
  text-align: center;
  font: normal normal 600 25px/34px Open Sans;
  letter-spacing: 0px;
  color: #000000;
  padding: 20px 0px 24px;
}

.flip-card-front p {
  text-align: center;
  font: normal normal normal 14px/25px Open Sans;
  letter-spacing: 0px;
  color: #000000;
  font-family: "Montserrat", sans-serif;
}

.fac_img {
  z-index: -1;
  position: absolute;
  left: 0;
  /* margin: -5px -9px; */
  opacity: 0.4;
}

.back_content {
  z-index: 999999999;
  position: relative;
}

.back_content h4 {
  text-align: center;
  font: normal normal 600 25px/34px Open Sans;
  letter-spacing: 0px;
  color: #ff5400;
  padding: 97px 0px 14px;
}

.back_content p {
  text-align: center;
  font: normal normal 300 14px/25px Open Sans;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 0px 40px;
  font-family: "Montserrat", sans-serif;
}

/*===========================gallery ==========================*/
.gallery {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/gallery.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*===========================contact ==========================*/
.contact_bg {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/accommodation/contact.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  opacity: 1 !important;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact_crd {
  background: transparent;
  color: aliceblue;
  font-family: auto;
}

h2 {
  font-family: auto;
  color: #f97300;
}

.footer_txt {
  font-size: smaller;
  font-weight: 200;
  text-align: start;
}

.footer_text {
  text-align: left;
  font-family: auto;
  font-size: xx-large;
  color: #f15a24;
}

.logo_f {
  text-align: left;
}

.foot_icon {
  color: #f97300;
  font-size: small;
}

.text-bod {
  text-decoration: none;
  color: white !important;
  font-size: smaller;
  font-weight: 200;
  text-align: left;
}

.f_img {
  width: 50%;
  box-shadow: 10px -5px 10px -10px #ffffffbf;
}

@media (max-width: 992px) {
  .pad {
    padding-top: 50%;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #f97300;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 10px 0 8px 68px;
  font-family: auto !important;
}

.contact .info-box p {
  padding: 0;
  color: #fefefe;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fefefe;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: #f97300;
}

.contact .php-email-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #f97300;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f97300;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  transition: 0.3s;
  color: #fefefe;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.11);
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #f97300;
  border: 0;
  padding: 10px 30px;
  color: #fefefe;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f97300;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Credits
--------------------------------------------------------------*/
.credits {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 15px;
  text-align: right;
  font-size: 13px;
  color: #fefefe;
  z-index: 999999;
  margin: 0 0 0 90%;
}

@media (max-width: 992px) {
  .credits {
    text-align: center;
    padding: 10px;
  }
}

.credits a {
  color: #f97300;
  transition: 0.3s;
  text-decoration: none !important;
}

.credits a:hover {
  color: #fefefe;
}

.icon {
  padding-bottom: 10px;
  width: 30%;
  filter: grayscale(100%);
  opacity: 0.8;
  object-fit: contain;
}
.icon:hover {
  filter: grayscale(1%);
  opacity: 1;
  cursor: pointer;
}

.social {
  text-decoration: none;
  list-style: none;
}

@media (max-width: 992px) {
  .social {
    float: right;
    display: flex;
  }
  .ic_social {
    padding-right: 10px;
  }
}
/* =============================================================== */

a,
a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}
.postcard.dark {
  background-color: #18151f;
}
.postcard.light {
  background-color: #e1e5ea;
}
.postcard .t-dark {
  color: #18151f;
}
.postcard a {
  color: inherit;
}
.postcard h1,
.postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.postcard .small {
  font-size: 80%;
}
.postcard .postcard__title {
  font-size: 1.75rem;
}
.postcard .postcard__img {
  max-height: 180px;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.postcard .postcard__img_link {
  display: contents;
}
.postcard .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}
.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}
.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}
.postcard .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}
.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}
.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }
  .postcard .postcard__title {
    font-size: 2rem;
  }
  .postcard .postcard__tagbox {
    justify-content: start;
  }
  .postcard .postcard__img {
    max-width: 300px;
    max-height: 100%;
    transition: transform 0.3s ease;
  }
  .postcard .postcard__text {
    padding: 3rem;
    width: 100%;
  }
  .postcard .media.postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
    width: 55px;
  }
  .postcard:hover .postcard__img {
    transform: scale(1.1);
  }
  .postcard:nth-child(2n + 1) {
    flex-direction: row;
  }
  .postcard:nth-child(2n + 0) {
    flex-direction: row-reverse;
  }
  .postcard:nth-child(2n + 1) .postcard__text::before {
    left: -12px !important;
    transform: rotate(4deg);
  }
  .postcard:nth-child(2n + 0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
  }
}
@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }

  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }

  .postcard.dark .postcard__text:before {
    background: #18151f;
  }

  .postcard.light .postcard__text:before {
    background: #e1e5ea;
  }
}
/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
  background: #79dd09;
  color: black;
}

.green .postcard__title:hover {
  color: #79dd09;
}

.green .postcard__bar {
  background-color: #79dd09;
}

.green::before {
  background-image: linear-gradient(
    -30deg,
    rgba(121, 221, 9, 0.1),
    transparent 50%
  );
}

.green:nth-child(2n)::before {
  background-image: linear-gradient(
    30deg,
    rgba(121, 221, 9, 0.1),
    transparent 50%
  );
}

.postcard .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}

.blue .postcard__title:hover {
  color: #0076bd;
}

.blue .postcard__bar {
  background-color: #0076bd;
}

.blue::before {
  background-image: linear-gradient(
    -30deg,
    rgba(0, 118, 189, 0.1),
    transparent 50%
  );
}

.blue:nth-child(2n)::before {
  background-image: linear-gradient(
    30deg,
    rgba(0, 118, 189, 0.1),
    transparent 50%
  );
}

.postcard .postcard__tagbox .red.play:hover {
  background: #bd150b;
}

.red .postcard__title:hover {
  color: #bd150b;
}

.red .postcard__bar {
  background-color: #bd150b;
}

.red::before {
  background-image: linear-gradient(
    -30deg,
    rgba(189, 21, 11, 0.1),
    transparent 50%
  );
}

.red:nth-child(2n)::before {
  background-image: linear-gradient(
    30deg,
    rgba(189, 21, 11, 0.1),
    transparent 50%
  );
}

.postcard .postcard__tagbox .yellow.play:hover {
  background: #bdbb49;
  color: black;
}

.yellow .postcard__title:hover {
  color: #bdbb49;
}

.yellow .postcard__bar {
  background-color: #bdbb49;
}

.yellow::before {
  background-image: linear-gradient(
    -30deg,
    rgba(189, 187, 73, 0.1),
    transparent 50%
  );
}

.yellow:nth-child(2n)::before {
  background-image: linear-gradient(
    30deg,
    rgba(189, 187, 73, 0.1),
    transparent 50%
  );
}

@media screen and (min-width: 769px) {
  .green::before {
    background-image: linear-gradient(
      -80deg,
      rgba(121, 221, 9, 0.1),
      transparent 50%
    );
  }

  .green:nth-child(2n)::before {
    background-image: linear-gradient(
      80deg,
      rgba(121, 221, 9, 0.1),
      transparent 50%
    );
  }

  .blue::before {
    background-image: linear-gradient(
      -80deg,
      rgba(0, 118, 189, 0.1),
      transparent 50%
    );
  }

  .blue:nth-child(2n)::before {
    background-image: linear-gradient(
      80deg,
      rgba(0, 118, 189, 0.1),
      transparent 50%
    );
  }

  .red::before {
    background-image: linear-gradient(
      -80deg,
      rgba(189, 21, 11, 0.1),
      transparent 50%
    );
  }

  .red:nth-child(2n)::before {
    background-image: linear-gradient(
      80deg,
      rgba(189, 21, 11, 0.1),
      transparent 50%
    );
  }

  .yellow::before {
    background-image: linear-gradient(
      -80deg,
      rgba(189, 187, 73, 0.1),
      transparent 50%
    );
  }

  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(
      80deg,
      rgba(189, 187, 73, 0.1),
      transparent 50%
    );
  }
}

/* =========================booking======================= */

.h6_fm {
  font-family: "Libre Bodoni", serif;
}

.copy {
  background-color: #2a2a2a;
  font-size: small;
  margin: 0;
}




/* social meadia */

#follow-us-on {
  position: fixed;
  right: 0;
  top: 110px;
  z-index: 1010;
}

@media (min-width: 992px) {
  #follow-us-on {
    top: 130px;
  }
}

@media (min-width: 1200px) {
  #follow-us-on {
    top: 150px;
  }
}

#follow-us-on ul {
  width: 0;
  -webkit-transform: translate(130px, 0);
  transform: translate(130px, 0);
}

#follow-us-on ul li {
  display: block;
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.5);
  width: 130px;
  padding: 5px;
  border-radius: 30px 0 0 30px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translate(-170px, 0);
  transform: translate(-170px, 0);
}

#follow-us-on ul li:hover {
  background: #fff;
  -webkit-transform: translate(-260px, 0);
  transform: translate(-260px, 0);
}

#follow-us-on ul li:hover i {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#follow-us-on ul li a {
  line-height: 1;
  color: #000;
  font-size: 0.65rem;
}

#follow-us-on ul li a:hover {
  text-decoration: none;
}

#follow-us-on ul li i {
  margin-right: 10px;
  color: #fff;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 0.9rem;
  background: #fff;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

#follow-us-on ul li i.bi-facebook {
  background: #3b5998;
}

#follow-us-on ul li i.bi-twitter {
  background: #55acee;
}

#follow-us-on ul li i.bi-linkedin {
  background: #007bb5;
}

#follow-us-on ul li i.bi-youtube {
  background: #b00;
}
#follow-us-on ul li i.bi-whatsapp {
  background: #25d366;
}
#follow-us-on ul li i.bi-instagram {
  background: #e95950;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* social meadia end*/