body {
  font-family: "Mulish", sans-serif;
}

a:hover {
  color: #ffac41;
}

::selection {
  background-color: #ffac41;
  color: #000000;
}

::-moz-selection {
  color: #000000;
  background-color: #ffac41;
}
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #ffac41;
}
a:focus {
  text-decoration: none;
  color: #ffac41;
}

.button {
  background: #ffac41;
  color: #fff !important;
  display: inline-block;
  transition: 0.3s;
  padding: 17px 45px 17px 45px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.button:hover {
  background: #3a3138 !important;
  color: #fff !important;
}

.button_1 {
  background: #ffac41;
  color: #fff !important;
  display: inline-block;
  transition: 0.3s;
  padding: 17px 45px 17px 45px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.button_1:hover {
  background: #ffac41 !important;
  color: #fff !important;
}

.button_2 {
  background: #ffac41;
  color: #fff !important;
  display: inline-block;
  transition: 0.3s;
  padding: 17px 45px 17px 45px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.button_2:hover {
  background: #fff !important;
  color: #333 !important;
}

.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
figure.effect-jazz figcaption::after,
figure.effect-jazz img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-jazz:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

.col_yell {
  color: #ffac41 !important;
}
.bg_yell {
  background: #ffac41 !important;
}
.bg_dark {
  background: #3a3138 !important;
}

hr {
  opacity: 1;
  background-color: #f9e5cb;
}
.font_14 {
  font-size: 14px;
}

.font_12 {
  font-size: 12px;
}
.font_13 {
  font-size: 13px;
}
.font_10 {
  font-size: 10px;
}
.font_8 {
  font-size: 8px;
}
.font_60 {
  font-size: 60px;
}
.font_50 {
  font-size: 50px;
}

.line {
  height: 4px !important;
  width: 80px;
  background-color: #ffac41;
}

.p_3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.border_1 {
  border: 1px solid #f9e5cb;
}

.carousel_p .carousel-indicators {
  bottom: -60px !important;
}
.carousel_p {
  padding-bottom: 70px !important;
}

/*********************feedback start****************/
#feedback {
  padding: 4rem 0;
}

#feedback .line {
  width: 80px;
  height: 3px;
  background-color: #ffac41;
  margin-bottom: 2rem;
}

#feedback h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}

#feedback p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

#feedback .btn-danger {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

#feedback .btn-danger:hover {
  background-color: #ffac41;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

#feedback .fa-google {
  font-size: 1.2rem;
}
/*********************feedback end****************/
/*********************whatsapp container start****************/

/* Whatsapp call */
.icon-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.call-icon,
.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  color: blue;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  transform-origin: center;
}

.call-icon:hover {
  background-color: rgb(255, 255, 255);
  color: #ffac41;
  transform: rotate(360deg);
}

.whatsapp-icon {
  background-color: #25d366;
  color: rgb(255, 255, 255);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-icon:hover {
  color: #ffac41;
  background-color: #ffffff;
  animation: shake 0.5s ease-in-out;
}

.call-icon:link,
.call-icon:visited,
.whatsapp-icon:link,
.whatsapp-icon:visited {
  text-decoration: none;
}

@keyframes float {
  0% {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 25px 15px rgba(37, 211, 102, 0.2);
  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
/*********************whatsapp container end****************/
/*********************top****************/
.top_1l span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}
.top_1r ul li {
  margin-left: 8px;
  margin-right: 8px;
}
.main_1 {
  background-color: #04094d;
  z-index: 2;
}
/*********************top_end****************/

/*********************header****************/
.nav_hide:after {
  display: none;
}

#header {
  background-color: white;
  border-top: 1px solid rgba(106, 101, 101, 0.7);
}

#header .navbar-brand {
  font-size: 34px;
  margin-right: 30px;
  margin-top: 2px;
  display: none;
}
#header .navbar-brand .img {
  width: 50%;
}
.navbar-collapse {
  align-items: start;
}

#header .nav-link {
  padding: 10px 22px;
  text-transform: uppercase;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
#header .nav-link:hover {
  background: none;
  color: #ffac41;
}
#header .nav-link:focus {
  background: none;
  color: #ffac41;
}
#header .active {
  background: none;
  color: #ffac41;
}

.drop_1 {
  min-width: 220px;
  padding: 0;
  border-radius: 0;
  margin-top: 18px !important;
  border: none;
  background: #fff;
  font-size: 14px;
}
.drop_1 a {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f9e5cb;
  color: #333;
  font-weight: bold;
}
.drop_1 a:hover {
  background: #ffac41;
  color: #fff;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100% !important;
  z-index: 3;
  background-color: rgb(255, 255, 255);
}
.sticky {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
}

.sticky .navbar-brand {
  display: block !important;
}
/*********************header_end****************/

/* gallery start */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/*  gallery end*/
/*********************common****************/
.pages ul li {
  display: inline-block;
}
.pages ul li a {
  display: block;
  color: #0c121d;
  margin: 0 2px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #f9e5cb;
  background: #fff;
}
.pages ul li a:hover {
  background: #ffac41;
  border: 1px solid #ffac41;
}
.pages ul li a:hover {
  color: #fff !important;
}
.act {
  background: #ffac41 !important;
  border: 1px solid #ffac41 !important;
  color: #fff !important;
}

/* footer social icons */
ul.social-network {
  list-style: none;
  display: block;
  margin-left: 0 !important;
  padding: 0;
}
ul.social-network li {
  display: inline-block;
}

/* footer social icons */
.social-network a.icoRss:hover {
  background-color: #ffac41;
}
.social-network a.icoFacebook:hover {
  background-color: #3b5998;
}
.social-network a.icoTwitter:hover {
  background-color: #33ccff;
}
.social-network a.icoGoogle:hover {
  background-color: #bd3518;
}
.social-network a.icoVimeo:hover {
  background-color: #0590b8;
}
.social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}
.social-network a.icoRss:hover i,
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoVimeo:hover i,
.social-network a.icoLinkedin:hover i {
  color: #fff;
}
a.socialIcon:hover,
.socialHoverClass {
  color: #44bcdd;
}

.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 2px 0 2px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
}
.social-circle li i {
  margin: 0;
  line-height: 40px;
  text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.social-circle i {
  color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f9e5cb;
}
.form-select:focus {
  box-shadow: none;
  border-color: #f9e5cb;
}
.form-control {
  border-color: #f9e5cb;
  box-shadow: none;
  border-radius: 0;
  height: 51px;
}
.form-select {
  border-color: #f9e5cb;
  box-shadow: none;
  border-radius: 0;
  height: 51px;
  color: #777;
}

.shadow_box {
  box-shadow: 0px 4px 20px -3px rgb(22 36 62 / 15%);
}
.carousel-indicators [data-bs-target] {
  background-color: #ffac41;
}

.input-group .form-control {
  height: auto;
}
.input-group .form-control:focus {
  box-shadow: none;
}
.form-check .form-check-input:checked {
  background-color: #ffac41;
  border-color: #ffac41;
}
.form_text {
  height: 150px !important;
}
.main_o1 {
  background-color: #04094d;
  z-index: 2;
}
.room_2il1i1 span {
  border-radius: 30px;
}
.room_2il1i1 {
  bottom: -15px;
}
/*********************common_end****************/

/*********************book****************/
#book {
  background-image: url(../img/2021/DSC02233.jpg);
  background-position: center;
}
.book_m {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #3a3138c7;
}
/*********************book_end****************/

/*********************gallery****************/

.homei1i2 ul li a {
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  color: #333;
  text-align: center;
}
#gallery .modal-dialog {
  max-width: 770px;
}
.homei1i1 img {
  min-height: 260px;
}
.homei1i2 {
  padding-top: 32%;
  display: none;
}
.homei1:hover .homei1i2 {
  display: block;
}
/*********************gallery_end****************/
/* loader wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; /* Set the background color to white */
  z-index: 9999;
}

#loader-wrapper img {
  width: auto; /* Set the height to 557 pixels */
}
/* loader end */
/*********************footer****************/
.hr_1 {
  background-color: #5c4e5a;
}
/*********************footer_end****************/

@media screen and (max-width: 767px) {
  .navbar-collapse {
    max-height: 300px;
    overflow-y: scroll;
    border-top: 1px solid #fffdfd;
    margin-top: 15px;
  }
  .button {
    background: #ffac41;
    color: #fff !important;
    display: inline-block;
    transition: 0.3s;
    padding: 8px 22px 8px 22px;
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
  }
  .button_1 {
    background: #ffac41;
    color: #fff !important;
    display: inline-block;
    transition: 0.3s;
    padding: 8px 22px 8px 22px;
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
  }
  .button_2 {
    background: #ffac41;
    color: #fff !important;
    display: inline-block;
    transition: 0.3s;
    padding: 8px 22px 8px 22px;
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
  }

  #header .nav-link {
    font-size: 12px !important;
    border-bottom: 1px solid #000000;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #header .navbar-brand .img {
    width: 40%;
  }

  .navbar .navbar-toggler {
    box-shadow: none !important;
    background: #fbfbfb;
    border: none;
    border-radius: 0;
    margin-top: 0;
  }
  .drop_1 {
    margin-top: 0 !important;
    min-width: 100%;
  }
  .drop_1 a {
    font-size: 24px;
  }
  .navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .sticky .drop_1 {
    margin-top: 0 !important;
  }
  .line {
    margin-left: auto;
    margin-right: auto;
  }

  .pages ul li {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .center_sm {
    text-align: center !important;
  }
  #top {
    display: none;
  }
  #header .navbar-brand {
    display: block;
  }
  #header .button {
    margin-top: 15px;
  }
  .room_2il {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .serv_1 p {
    text-align: left;
  }
  .serv_1 br {
    display: none;
  }
  .homei1i2 {
    padding-top: 42%;
  }
  .homei1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .testim_1i {
    margin-top: 15px;
  }
  .book_m {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #3a3138c7;
  }
  .footer_1i {
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
  }
  #footer .pe-0 {
    padding-right: 12px !important;
  }
  #footer h3 {
    text-align: center;
  }
  #footer h5 {
    text-align: center;
  }
  .footer_2 {
    text-align: center !important;
  }
  .quick-links {
    text-align: center;
  }
  .social-links {
    text-align: center;
  }
  .contact-link {
    display: inline-block;
    text-align: center;
  }
  .center_o {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sub_1l br {
    display: none;
  }
  .sub_1l p {
    text-align: left;
  }
  .sub_1l .button {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sub_1l .button_1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .blog_1dt4il {
    margin-top: 10px;
  }
  .blog_1dt4il h6 {
    text-align: center;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-expand-md {
    flex-wrap: wrap !important;
  }
  .drop_1 {
    left: auto !important;
    right: 0 !important;
  }
  #header .nav-link {
    padding: 10px 6px;
    font-size: 13px;
  }
  .homei1i2 {
    padding-top: 48%;
  }
}
@media (min-width: 871px) and (max-width: 991px) {
  #header .nav-link {
    padding: 10px 12px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-expand-md {
    flex-wrap: wrap !important;
  }
  .drop_1 {
    left: auto !important;
    right: 0 !important;
  }
  #header .nav-link {
    padding: 10px 15px;
  }
}
@media (min-width: 1201px) and (max-width: 1360px) {
}

.footer-logo {
  max-width: 180px;
  height: auto;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-link {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffc107;
}
