/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');

body {
   font-family:'Roboto Slab';

  color: #444444;
}

a {
  text-decoration: none;
      cursor: pointer;
}

a:hover {
  color: #ff6600;
  text-decoration: none;
      cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
     font-family: 'Roboto Slab';
}

.footer-title h3 {
    font-family: "Josefin Sans", sans-serif !important;
    font-weight: 600;
    text-transform: uppercase !important;
}

.cgs2 h3 a {
    font-family: "Josefin Sans", sans-serif !important;
    font-weight: 600;
    text-transform: uppercase !important;
}

svg:not(:root) {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 150px;
  z-index: 996;
  background:#e30404;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top em {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ffe270;
  color: #000;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0880e8;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  button#myBtn {
    border: none;
    background: #e30404;
    padding: 10px;
    color: #fff;
    width: 137%!important;
}
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    overflow: hidden;
    color: rgb(255 255 255);
    z-index: 1001;
    background-image: linear-gradient(to bottom, #918f8a 62%, #918f8a 92%);
    /* float: right; */
}
#topbar.topbar-scrolled {
  top: -60px;
}
#topbar .contact-info a {
  line-height: 0;
  color: rgb(255 255 255);
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  text-decoration: underline;
}
#topbar .contact-info i {
  color: #f6b024;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .cta {
  background: transparent;
}
#topbar .cta a {
  color: #fff;
  background: #f6b024;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}
#topbar .cta a:hover {
  background: #f1a40a;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header { 
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  top: 40px;
  position: fixed;
  background:#fff;
}
#header.header-scrolled {
  background: rgb(255 255 255 / 40%);
  top: 0;
  backdrop-filter: blur(8px);
}
#header .logo img {
    padding: 0;
    margin: 0;
    top: 36px;
    z-index: 1000;
    position: relative;
    width: 70%;
}
    

}
#header .logo a {
  color: #fff;
}


.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
 .navbar {
      padding: 0;
    }

    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }

    .navbar li {
      position: relative;
    }

    .navbar > ul > li {
      position: relative;
      white-space: nowrap;
      padding: 10px 0 10px 24px;
    }

    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3px;
      font-size: 17px;
      color: #000;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
      font-weight: 500;
      text-decoration: none;
    }

    .navbar a em,
    .navbar a:focus em {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }

    .navbar > ul > li > a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ffe270;
      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: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
      color: #e30404;
    }

    /* Dropdown for Desktop */
    .navbar .dropdown .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 24px;
      background: #ffffff;
      border-radius: 5px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      min-width: 200px;
      padding: 10px 0;
      z-index: 99;
    }

    .navbar .dropdown:hover .dropdown-menu {
      display: block;
    }

    .navbar .dropdown-menu li {
      padding: 0;
    }

    .navbar .dropdown-menu a {
      padding: 10px 20px;
      font-size: 15px;
      color: #006a52;
      display: block;
      transition: 0.3s;
    }

    .navbar .dropdown-menu a:hover {
      background-color: #f6f6f6;
      color: #e30404;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
      color: #000;
      font-size: 45px;
      cursor: pointer;
      display: none;
      line-height: 0;
      transition: 0.5s;
    }

    .mobile-nav-toggle.bi-x {
      color: #f6b024;
    }

    @media (max-width: 991px) {
      .mobile-nav-toggle {
        display: block;
      }

      .navbar ul {
        display: none;
      }

      .navbar.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  max-height: 85vh;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
  overflow-y: visible;  /* ✅ This removes the dropdown scroll issue */
}


      .navbar.navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 100px;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(5, 74, 133, 0.9);
        transition: 0.3s;
        z-index: 999;
      }

      .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
      }

      .navbar-mobile > ul > li {
        padding: 0;
      }

      .navbar-mobile a,
      .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #41403d;
      }

      .navbar-mobile a:hover:before,
      .navbar-mobile li:hover > a:before,
      .navbar-mobile .active:before {
        visibility: hidden;
      }

      .navbar-mobile a:hover,
      .navbar-mobile .active,
      .navbar-mobile li:hover > a {
        color: #e30404;
      }

      
    }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  overflow: hidden;
  position: relative;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: 0px;
  z-index: 99;
  transition: 0.3s;
}
#hero:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.35);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  animation: fadeInSlideContent 0.8s ease-out forwards;
  backdrop-filter: blur(2px);
  font-family: 'Roboto Slab';
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .btn-get-started {
  font-family: 'Roboto Slab';
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #022446;
  background: #06324d;
  color: #fff;
}
}
#hero .btn-get-started:hover {
  background: #ffe270;
    color: #040404;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero p {
    width: 97%;
    line-height: 27px;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero {
    height: 120vh;
    padding: 100px 0;
  }
  #hero h2 {
    font-size: 28px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero1 {
  width: 100%;
  height: 128vh;
  overflow: hidden;
  position: relative;
  background: url("../img/guestroom4.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero1:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero1 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero1 h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero1 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;    background: #06060652;
    padding: 10px;
}
}
#hero1 .carousel-control-prev, #hero1 .carousel-control-next {
  width: 10%;
}
#hero1 .carousel-control-next-icon, #hero1 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero1 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f6b024;background: #f6b024;
  color: #fff;
}
#hero1 .btn-get-started:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero1 p {
    width: 60%;
  }
  #hero1 .carousel-control-prev, #hero1 .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero1 {
    height: 120vh;
    padding: 100px 0;
  }
  #hero1 h2 {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero2 {
  width: 100%;
  height: 128vh;
  overflow: hidden;
  position: relative;
  background: url("../img/Carmike-Cinemas.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero2:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero2 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero2 h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero2 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;    background: #06060652;
    padding: 10px;
}
}
#hero2 .carousel-control-prev, #hero2 .carousel-control-next {
  width: 10%;
}
#hero2 .carousel-control-next-icon, #hero2 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero2 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f6b024;background: #f6b024;
  color: #fff;
}
#hero2 .btn-get-started:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero2 p {
    width: 60%;
  }
  #hero2 .carousel-control-prev, #hero2 .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero2 {
    height: 120vh;
    padding: 100px 0;
  }
  #hero2 h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero3 {
  width: 100%;
  height: 128vh;
  overflow: hidden;
  position: relative;
  background: url("../img/contact.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero3:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero3 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero3 h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero3 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;    background: #06060652;
    padding: 10px;
}
}
#hero3 .carousel-control-prev, #hero3 .carousel-control-next {
  width: 10%;
}
#hero3 .carousel-control-next-icon, #hero3 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero3 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f6b024;background: #f6b024;
  color: #fff;
}
#hero3 .btn-get-started:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero3 {
    width: 100%;
  }
  #hero3 .carousel-control-prev, #hero3 .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero3 {
    height: 120vh;
    padding: 100px 0;
  }
  #hero3 h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero4 {
  width: 100%;
  height: 84vh;
  overflow: hidden;
  position: relative;
  background: url("../img/sitemap.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero4:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero4 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero4 h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero4 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;    background: #06060652;
    padding: 10px;
}
}
#hero4 .carousel-control-prev, #hero4 .carousel-control-next {
  width: 10%;
}
#hero4 .carousel-control-next-icon, #hero4 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero4 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f6b024;background: #f6b024;
  color: #fff;
}
#hero4 .btn-get-started:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero4 {
    width: 100%;
  }
  #hero4 .carousel-control-prev, #hero4 .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero4 {
    height: 120vh;
    padding: 100px 0;
  }
  #hero4 h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# more button
--------------------------------------------------------------*/

.gr-amenities-bg-lines path {
  stroke: var(--accent-gold);
  fill: none;
  filter: drop-shadow(0 0 8px var(--accent-gold));
}

.welcome a {
    text-align: center;
    font-weight: 400;
    color: #ffb03b;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Roboto Slab', sans-serif;
}
.about_btn_b {
    display: inline-block;
    border: 1px solid #8e8e8e;
    padding: 0px 15px;
    line-height: 46px;
    color: #000 !important;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .45px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.about_btn_b:hover {
    color: #fff !important;
    border-color: #00162e;
    background: #00162e;
    font-weight: 600;
}

a, a:hover, a:visited, a:active, a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}


.five {
    font-size: 23px;
    margin-bottom: 10px;
    /* background: rgba(234, 185, 168, 0.96); */
    /* padding-left: 5px; */
    color: #b37212;
    font-weight: normal;
    font-family: "Josefin Sans", sans-serif !important;
    margin-top: 16px;
    text-transform: uppercase;
    padding-top: 16px;
}

.five {
    font-size: 18px;
    background: linear-gradient(to right, rgb(238 111 82), #1c1101) !important;
    color: #fff !important;
    padding: 10px;
    text-align: center;
}
.content, .five, .h2, h2 {
    /* font-size: 1.4rem !important; */
    /* color: #e0982e !important; */
    /* background-color: #fabc00; */
    font-family: 'Roboto Slab', sans-serif !important;
}

.moretext {
  display: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero5 {
  width: 100%;
  height: 128vh;
  overflow: hidden;
  position: relative;
  background: url("../img/faq.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero5:before {
  content: "";
  background:rgb(24 27 29 / 23%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero5 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero5 h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
#hero5 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;    background: #06060652;
    padding: 10px;
}
}
#hero5 .carousel-control-prev, #hero5 .carousel-control-next {
  width: 10%;
}
#hero5 .carousel-control-next-icon, #hero5 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero5 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size:18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f6b024;background: #f6b024;
  color: #fff;
}
#hero5 .btn-get-started:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero5 {
    width: 100%;
  }
  #hero5 .carousel-control-prev, #hero5 .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px), (max-height: 700px) {
  #hero5 {
    height: 120vh;
    padding: 100px 0;
  }
  #hero5 h2 {
    font-size: 28px;
  }
}


/*amenities*/

.gr-amenities-section {
    padding: 120px 0;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.gr-amenities-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.gr-amenities-bg-lines path {
    stroke: #FFD700;
    fill: none;
    filter: drop-shadow(0 0 8px #FFD700);
}

.gr-amenities-container {
    position: relative;
    z-index: 1;
}

.gr-section-heading {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.gr-section-heading .gr-subheading {
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gr-amenities-section .gr-section-heading h2, .gr-amenities-section .gr-section-heading p {
    color: var(--text-color-on-dark);
}
.gr-section-heading h2 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--text-color-on-light);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    /* font-weight: 700; */
    /* color: #feda44; */
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.gr-amenities-section .gr-section-heading h2, .gr-amenities-section .gr-section-heading p {
    color: var(--text-color-on-dark);
}

.gr-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-text);
    font-size: 1.1em;
}

.gr-amenities-section .gr-section-heading::after {
    background-color: var(--accent-gold);
}
.gr-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.gr-amenities-items-container {
    margin-top: 80px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    overflow: visible;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gr-amenity-item {
    width: auto;
    height: 300px;
    min-height: 280px;
    background: linear-gradient(145deg, var(--trans-white-light), var(--trans-white-dark));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-on-dark);
    box-shadow: 0 15px 35px var(--overlay-color), 0 5px 15px var(--transparent-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
    cursor: pointer;
    opacity: 0;
}

.gr-amenity-item:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
    z-index: 10;
}

.gr-amenity-icon {
    font-size: 3.8em;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.gr-amenity-item:hover .gr-amenity-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--light-gold);
    filter: drop-shadow(0 0 20px var(--accent-gold));
}

.gr-amenity-item h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: var(--text-color-on-dark);
    font-weight: 500;
}

.gr-amenity-item p {
    font-size: 1em;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: var(--softer-text-on-dark);
}








/*close amenities */


.gr-section {
    position: relative;
    z-index: 1;
}

.gr-gallery-section {
    background: linear-gradient(to bottom, var(--light-bg), rgba(248, 245, 240, 0.8), rgba(212, 175, 55, 0.08));
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.gr-section {
    position: relative;
    z-index: 1;
}

.gr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.gr-gallery-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.gr-gallery-header h2 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--text-color-on-light);
    margin: 15px 0;
    line-height: 1.3;
}

.gr-gallery-description {
    font-size: 1.1em;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gr-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin: 40px auto;
    padding: 0;
}

.gr-gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: 1 / 1.8;
}
.gr-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gr-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gr-gallery-item:hover img {
    transform: scale(1.05);
}

.gr-gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gr-gallery-button-container {
    margin-top: 80px;
}

.gr-explore-gallery-btn {
    display: inline-block;
    background:#ffb900;
    color: white !important;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.gr-explore-gallery-btn:hover {
    background-color:#ce0404;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Lightbox Styles */
.gr-gallery-preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gr-gallery-preview.show {
    display: flex;
    opacity: 1;
}

.gr-preview-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
}

.gr-preview-content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

#preview-caption {
    color: white;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.gr-close-btn {
    position: fixed;
    top: 68px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.gr-close-btn:hover {
    color: #ffff66;
    transform: scale(1.2);
}

.gr-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gr-prev-btn {
    left: 30px;
}

.gr-next-btn {
    right: 30px;
}

.gr-nav-btn:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.1);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 57px 57px;
    overflow: hidden;
}

.section-bg {
  background-color: #f1f8ff;
}

/* What's Nearby List */
.section-title {
    font-size: 2.2rem;
    color: #05212B;
    /* margin-bottom: 40px; */
    text-transform: uppercase;
}

.section-title {
    /* padding-bottom: 30px; */
}
.section-title h2 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    /* padding-bottom: 0; */
    color: #e30404;
}

.section-title p {
    margin-bottom: 9px;
    font-size: 17px;
    text-align: justify;
    font-family: 'Roboto Slab';
    text-transform: none;
    padding: 0 5px 0 5px;
    line-height: 34px;
}
.bg {
    background: #f5f5d6;
    padding: 10px;
}

.container-fluid.mr {
	padding:0px;
	margin-top:48px;
}


.portfoio {
    padding: 57px 57px;
    overflow: hidden;
}

/* Video Section */
.gr-video-section {
    position: relative;
    height: 550px;
    background: url('../images/traveler.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    box-sizing: border-box;
}

.gr-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.8), rgba(30, 30, 47, 0.5));
    z-index: 1;
}

.gr-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gr-video-content .gr-play-btn {
    background: none;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto; /* Ensures horizontal centering */
    font-size: 3em;
    color: var(--accent-gold);
    cursor: pointer;
    transition: all 0.4s ease-out;
    position: relative;
    padding: 0;
}

.gr-video-content .gr-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: gr-pulse-glow 2s infinite ease-out;
    z-index: -1;
}

@keyframes gr-pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.gr-video-content .gr-play-btn:hover {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    background-color: rgba(212, 175, 55, 0.1);
}

.gr-video-content .gr-play-btn i {
    transform: translateX(4px);
}

.gr-video-content h2 {
    font-size: 3.5em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.gr-video-content p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Isolated Popup Modal Styles --- */
.gr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.gr-popup-content {
    position: relative;
    background-color: #000;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.gr-popup-close-btn {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #aaa;
    border-radius: 50%;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gr-popup-close-btn:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.7);
    border-color: var(--accent-gold);
}

.gr-popup-content .gr-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ccc;
}
.gr-popup-content .gr-video-placeholder h3 {
    font-size: 1.8em;
    color: var(--accent-gold);
    margin: 0;
}
.gr-popup-content .gr-video-placeholder p {
    font-size: 1.1em;
    color: #ddd;
    margin-top: 10px;
}


/* Video Section */
.gr-video-section {
    position: relative;
    height: 550px;
    background: url('../img/traveler.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    box-sizing: border-box;
}

.gr-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.8), rgba(30, 30, 47, 0.5));
    z-index: 1;
}

.gr-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gr-video-content .gr-play-btn {
    background: none;
    border: 3px solid #d4af37;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto; /* Ensures horizontal centering */
    font-size: 3em;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.4s ease-out;
    position: relative;
    padding: 0;
}

.gr-video-content .gr-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #d4af37;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: gr-pulse-glow 2s infinite ease-out;
    z-index: -1;
}

@keyframes gr-pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.gr-video-content .gr-play-btn:hover {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    background-color: rgba(212, 175, 55, 0.1);
}

.gr-video-content .gr-play-btn i {
    transform: translateX(4px);
}

.gr-video-content h2 {
    font-size: 3.5em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.gr-video-content p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}


/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
  padding-top: 50px;
  position: relative;
  z-index: 100;
}
.icon-boxes .icon-box1 {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background:#4e5155;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.icon-boxes .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}
.icon-boxes .icon i {
  font-size: 36px;
  line-height: 1;
  color: #f6b024;
}
.icon-boxes .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffe270;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
}
.icon-boxes .title a {
  color: #05579e;
}
.icon-boxes .description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    color: #ffffff;
    font-family: 'Roboto Slab';
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    padding: 37px 0 0px 0;
    /*background: url(../img/about-bg.png) top center no-repeat;*/
    position: relative;
}

.about:before {
  content: "";
  background: rgb(255 255 255 / 92%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .container {
  position: relative;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0880e8;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #0880e8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0880e8;
}
.about .content .btn-learn-more:hover {
  background: #0880e8;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 992px) {
  .about {
    padding: 20px 0;
  }

  .agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #fff 62%, #fff 92%);
    padding: 1em;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    width: 100% !important;
    margin: 0 auto;
    top: 0px !important;
    position: relative;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
    border-radius: 15px;
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 50vh !important;
  overflow: hidden;
}
.slider-arrows {
    position: relative;
    bottom: 100% !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.clients .swiper-slide:hover img {
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0880e8;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0880e8;
}
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.clients .owl-item img {
  width: 60%;
  opacity: 0.5;
  transition: 0.3s;
}
.clients .owl-item img:hover {
  opacity: 1;
}
.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.clients .owl-dot.active {
  background-color: #0880e8 !important;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl

 {
        max-width: 1200px;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    background:#941010;
    padding: 0px 57px 15px 57px;
}
.why-us .content {
  padding: 20px 10px 0 10px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size:15px;     font-family: 'Croissant One', cursive;


}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
    font-size: 20px;
    color: #fff;
    font-family: 'Roboto Slab';
}
.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}
.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}
.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.why-us .accordion-list span {
  color: #0880e8;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.why-us .accordion-list em {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
  display: none;
}
.why-us .accordion-list a.collapsed {
  color: #343a40;
}
.why-us .accordion-list a.collapsed:hover {
  color: #0880e8;
}
.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}
.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#f0a145 50%, rgb(8 71 88) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(8, 128, 232, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.why-us .play-btn:hover::after {
  border-left: 15px solid #0880e8;
  transform: scale(20); background:rgb(0 106 82);
}
.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.services .icon-box i {
  float: left;
  color: #f6b024;
  font-size: 40px;
  line-height: 0;
}
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 a {
  color: #05579e;
  transition: 0.3s;
}
.services .icon-box h4 a:hover {
  color: #0880e8;
}
.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgb(243 243 243 / 0%), rgb(34 32 32 / 90%)), url(../img/cta-bg.jpg) fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta h4 {
  color: #ced021;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 50px;
  border: 2px solid #f6b024;
  color: #fff;    background: #ff8000;

}
.cta .cta-btn:hover {
  background: #f6b024;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
   
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfoio
--------------------------------------------------------------*/
.portfoio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.portfoio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}
.portfoio #portfolio-flters li:hover, .portfoio #portfolio-flters li.filter-active {
  color: #fff;
  background: #0880e8;
}
.portfoio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfoio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}
.portfoio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.portfoio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background-image: linear-gradient(to bottom,#f6b024 62%,#f6b024 92%);
  padding: 15px 20px;
}
.portfoio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.portfoio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}
.portfoio .portfolio-item .portfolio-info .preview-link, .portfoio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}
.portfoio .portfolio-item .portfolio-info .preview-link:hover, .portfoio .portfolio-item .portfolio-info .details-link:hover {
  color: #8ec8fb;
}
.portfoio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}
.portfoio .portfolio-item:hover img {
  top: -30px;
}
.portfoio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0880e8;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0880e8;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(246, 176, 36, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #05579e;
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #bfe0fd;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #ecf6fe;
  color: #0665b7;
}
.team .member .social a i {
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #0880e8;
  color: #fff;
}
.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #05579e;
  background: #f8f8f8;
}
.pricing h4 {
  font-size: 36px;
  color: #0880e8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing ul li {
  padding-bottom: 16px;
}
.pricing ul i {
  color: #0880e8;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: #0880e8;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #2b99f8;
}
.pricing .featured h3 {
  color: #fff;
  background: #0880e8;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #0880e8;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #75bdfa;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #0880e8;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #313030;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}
.contact .info-box i {
  font-size: 32px;
  color: #ff5821;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float: left;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}
.contact .php-email-form {
  
  padding: 0px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  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;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  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;
    font-weight: 500;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff5821;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ff5821;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;    margin-top: 10px;

}
.contact .php-email-form button[type=submit]:hover {
  background: #ff7e54;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
label {
    display: inline-block;
    font-size: 13px;
}
@media (min-width: 768px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
        float: left;
    }
	.col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        float: left;
    }
	
}

.container-fluid.tp {
    margin-top: 70px;
}
p.para-upper {
    font-family: "Cormorant Infant", serif;
    font-size: 18px;
    
}
.rm_oth {
   margin-top: 20px;
   background: #fbfbfb;
   font-size: 16px;
}
button#myBtn {
    background: #595661;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 30px;
    border: 2px solid transparent;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #ecf6fe;
  margin-top: 130px;
}
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: #043c6d;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #f8c255;
  content: "/";
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #054a85;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #f6b024;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #2b99f8;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #f6b024;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #f7b93c;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #0880e8;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #8ec8fb;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #138df7;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #f6b024;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #0880e8;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(8, 128, 232, 0.5);
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #f6b024;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #0880e8;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b99f8;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #fad386;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #fad386;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #0880e8;
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #138df7;
}
.blog .blog-pagination {
  color: #0880e8;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #0880e8;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #f6b024;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #0665b7;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #f6b024;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #f8c255;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #0665b7;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #f6b024;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #0665b7;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #f6b024;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #0880e8;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #f6b024;
  background: #f6b024;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: url(../img/footer-2.jpg) repeat;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto Slab';
    background-size: cover;
    background-position: center top;
    position: relative;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

.cgs2 {
    color:#dee2e6 !important;
    font-weight: normal;
    text-decoration: none;
}

.title2 a {
    font-size: 24.9px;
    font-weight: normal;
    color: #ffb900 !important;
    font-family: 'Roboto Slab';
    text-transform: capitalize;
    padding: 0px 0px 0px 0px;
}

a.cgs2:link, a.cgs2:visited {
    color: #ff9b0e;
    font-weight: normal;
    text-decoration: none;
}
.title2 a {
    font-size: 24.9px;
    font-weight: 400;
    color: #ffb900 !important;
    font-family: 'Roboto Slab';
    text-transform: capitalize;
    padding: 0px 0px 0px 0px;
}


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    /* margin-bottom: 15px; */
}


#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: rgb(0 0 0 / 10%);
    border-top: 1px solid #ed502e;
    text-align: left;
    padding: 16px 20px 30px 20px;
    margin-right: 0px;
    width: 427px;
    font-size: 18px;
    overflow: hidden;
}

.add {
    float: left;
    margin-top: 15px;
    /* width: 427px; */
    /* margin-right: 57px; */
    font-size: 17px;
    font-family: 'Roboto Slab';
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    width: 207px;
    margin-right: 26px;
    margin-left: 14px;
}

#hotel {
    float: left;
    width: 431px;
    margin-top: 0;
}

#hotel p {
    margin-bottom: 3px;
    border-bottom: solid 1px #08738c;
    padding-bottom: 4px;
    text-align: justify;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #05579e;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #f6b024;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0880e8;
}
#footer .footer-top {
  /*background: linear-gradient(to bottom, #688cc3 29%, #0047b5 76%);*/
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info h3 {
  font-size: 25px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #ce0404;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #ffe270;
    color: #000;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #eb8b31;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  color: #ffffff;
}

#bottom {
    width: 100%;
    background: #212529;
    color: #fff;
}

#owner {
    padding: 22px 5px 22px 5px;
    line-height: 35px;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    width: 1140px;
    font-size: 14px;
}

#owner p {
    font-family: 'Roboto Slab', sans-serif;
    text-align: center;
    font-size: 16px;
    color: #fff !important;
    margin-bottom: 4px;
    line-height: 27px;
}

#owner p a {
    font-family: 'Roboto Slab', sans-serif;
    text-align: center;
    font-size: 16px;
    color: #ff9b0e !important;
}

#footer .footer-top .footer-links ul em {
    padding-right: 2px;
    color: #ef6445;
    font-size: 16px;
    line-height: 1;
}



.section-title h3 {
    font-size: 32px;
    font-weight: bold;
    
    margin-bottom: 20px;
    padding-bottom: 0;
       color: #e30404;

}
.mapbg.col-lg-6.mt-5.mt-lg-0.aos-init.aos-animate {
/*     border: #f0a145 solid;
 */}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #fff 62%, #fff 92%);
    padding: 1em;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    width: 1154px;
    margin: 0 auto;
    top: 0px !important;
    position: relative;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
    border-radius: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 32px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}

.agileits_reservation1 {
    z-index: 999;
    background-image: linear-gradient(to bottom, #fff 62%, #fff 92%);
    padding: 1em;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    width: 1154px !important;
    margin: 0 auto;
    top: 400px;
    position: relative;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
    border-radius: 15px;
}
.agileits_reservation1 input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 32px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}

@media (min-width: 992px){

  .agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #fff 62%, #fff 92%);
    padding: 1em;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    width: 100%;
    margin: 0 auto;
    top: 0px;
    position: relative;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
    border-radius: 0px 0px 15px 15px;;
}

.agileits_reservation1 {
    z-index: 999;
    background-image: linear-gradient(to bottom, #fff 62%, #fff 92%);
    padding: 1em;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    width: 100%;
    margin: 0 auto;
    top: 400px;
    position: relative;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
    border-radius: 15px;
}

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
}

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        float: left;
    }

}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;
}
.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 13px;
}

.agileits_reservation1 em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 13px;
}

.date_btn input[type="submit"]:hover {
    background: #e30404;
    color: #fff;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #eebf05;
    color: #1c1b1b;
    padding: 10px 0;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 46px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}
button#myBtn {
    border: none;
    background: #e30404;
    padding: 10px;
    color: #fff;
    width: 100%!important;
}
.d-none {
    display: none!important;
}
}

.d-flex {
    display: flex!important;
}
@media (max-width: 480px){
.col-xs-12.span1_of_1.book_date {
    width: 100%!important;
}}

@media only screen and (max-width: 480px){
#header .logo img {
    padding: 0;
    margin: 0;
    margin-top: -33px;
    z-index: 1000;
    position: absolute;
}}
@media only screen and (max-width: 1024px){
.col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
        float: left;
    }
	#header .logo img {
    padding: 0;
    margin: 0;
    margin-top: -28px;
    z-index: 1000;
    position: absolute;
    width: 76px!important;
}
}
@media only screen and (max-width: 480px){

#header .logo img {
  max-height: 70px;
        margin-top: -24px;
}
}

@media only screen and (max-width: 321px){
#header .logo img {
  max-height: 70px;
	        margin-top: -23px;
}
}
#fsocial {
    position: fixed;
    width: 200px;
    height: auto;
    float: right !important;
    margin: 220px 60px;
    border-radius: 5px 5px 5px 5px;
    /* box-shadow: 0px 1px 1px rgb(0 0 0 / 20%); */
    z-index: 5000;
    right: 0;
    text-align: center;
    font-size: 24px;
}
.btn-success {
    color: #fff;
    background-color:#99cc33;
    border-color: #146c43;
}
.btn-success:hover {
    color: #fff;
    background-color:#084b5d;
    border-color: #146c43;
}
.title4 {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;     font-family: 'Croissant One', cursive;


}
@media (max-width: 480px){
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #ffe270;
    color: #000;
    padding: 12px 46px;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
    letter-spacing: 4px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem;
    list-style: none;
}

ol, ul {
    padding-left: 0rem;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #ea8a2f;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
.gpdn {
    padding-top: 10px;
    color: #fff;
}
.title5 {
    font-size: 20px;
    font-weight: 500;
    color: #084b5d;
    position: relative;
    padding-bottom: 12px;
        font-family: 'Croissant One', cursive;

}
.title6 {
    font-size: 16px;
    font-weight: 500;
    color: #084b5d;
    position: relative;
    padding-bottom: 12px;
        font-family: 'Croissant One', cursive;

}
section#about a {
    
}
.title2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #084859;
}
.videoWrapper {
	position:relative;
	padding-bottom:56.25%;
	padding-top:0;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
.hr.animate__animated.animate__fadeInDown {
    color:#ffff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 500;
    font-family:'Roboto Slab';
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

@media (min-width: 1200px){
.h1, h1 {
    font-size:35px;
    color: #e30404;
}}
footer#footer a {
    color:#ffffff;
}
.btn-primary {
    color: #fff!important;
    background-color: #e30404;
    border-color: #ced021;
}
.btn-primary :hover {
    color: #fff!important;
    background-color: #e30404!important;
    border-color: #ced021;
}
.title-2 {
    font-weight: 100;
    
    padding-bottom: 0;
    color: #e30404;
    font-size: 19px;
    font-family: 'Croissant One', cursive;

}
.lg.d-flex.align-items-center {
    font-size: 25px;
    color: #fd5008;
    font-family: 'Croissant One', cursive;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.title-footer {
    font-size: 20px;
    font-weight: 400;
    font-size: 25px;
    font-weight: 200;
    color: #ced021;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Croissant One', cursive;
}
/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
/* #hotels {
  padding: 60px 0;
} */

#hotels .hotel {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}

#hotels .hotel:hover .hotel-img img {
  transform: scale(1.1);
}

#hotels .hotel-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#hotels .hotel-img img {
  transition: 0.3s ease-in-out;
}

#hotels h3 {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 5px;
  padding: 0 20px;
}
#hotels .title4 {
  font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
    padding: 0 20px;
    color: #f10b0b;
}

#hotels a {
  color: #070707; font-weight: 600;
}

#hotels a:hover {
  color: #006634; font-weight: 600;
}

#hotels .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

#hotels .stars i {
  color: rgb(255, 195, 29);
}

#hotels p {
    padding: 0 20px;
    margin-bottom: 5px;
    color: #57585a;
    
    font-size: 15px;
    font-weight: 600;
}

.rm {
	padding: 0 20px;
    margin-bottom: 5px;
    color: #838486;
   
    font-size: 14px;
    font-weight: 400;}


@media (min-width: 1200px){
.h2, h2 {
    font-size: 22px;
}}

.btn-get-started {
   font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 9px 13px;
    border-radius: 8px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
   border: 2px solid #dbd9d9;
    background: #ffe270;
    color: #000;
}
span.bold {
    font-weight: 600;
    color: #000;
}
.title-3 {
    font-size: 19px;
    font-family: 'Croissant One', cursive;
	color:  #ff6600;
}
button#myBtn {
    border: none;
    background: #e30404;
    padding: 10px;
    color: #fff;
    width:100%;
}
.title1 {
    font-size: 18px;
    /* font-size: 21px; */
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #e30404;
    font-family: 'Croissant One', cursive;
}

/* Style for the Book Now button container */
.book-now-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px; /* Space between the menu and button */
}

.book-now-container a {
  display: block;
  padding: 8px 16px;
  background-color: #0047b5; /* Blue background */
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
      cursor: pointer;
}

.book-now-container a:hover {
  background-color: #0056b3; /* Darker blue on hover */
      cursor: pointer;
}

/* Ensure the button stays aligned with the menu on large screens */
@media (min-width: 992px) {
  #navbar {
    display: flex;
    align-items: center;
  }

  .book-now-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .book-now-container {
    /*display: none; /* Hide the button on mobile */
  }

  .navbar {
    display: flex;
    flex-direction: column; /* Stack items vertically on mobile */
  }

  .navbar .book-now-container {
    margin-top: 10px;
    text-align: center; /* Center-align the button on mobile */
  }

  /* Show the button at the bottom of the page on mobile */
  .navbar .book-now-container a {
    display: block;
    margin-top: 10px;
    width: 100%;
  }
}



.res {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-top: 5px;
    margin-right: 0px;
}




/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center;
  transform: scale(1.2); /* Initial zoomed-in */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
}

.hero-slide.active {
  transform: scale(1); /* Zoom-out effect */
  opacity: 1;
  visibility: visible;
}

.hero-content {
    position: absolute;
    bottom: 36%;
    left: 11.7%;
    color: #fff;
    max-width: 1400px;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    background:rgba(0, 0, 0, 0.35);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    animation: fadeInSlideContent 0.8s ease-out forwards;
    backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: 3rem; /* Adjusted size for better scaling */
  margin-bottom: 15px; /* Reduced spacing for tighter design */
  white-space: nowrap;
  overflow: hidden;
  color: #feda44; /* Ensure proper contrast with the background */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Keep shadow for better visibility */
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink 0.5s step-end infinite alternate;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem; /* Slightly smaller text size for the paragraph */
  margin-bottom: 20px; /* Adjust spacing */
}

.hero-btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #FF5733; /* Warm orange */
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #FFD700; /* Gold hover effect */
  color: #5a4633;
}

.me-auto {
    margin-right: auto !important;
    width: 25%;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: rgba(255, 255, 255, 0.75);
  }
  to {
    border-color: transparent;
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-controls .dot {
  width: 12px;
  height: 12px;
  background-color: #ffffff00;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-controls .dot.active {
  background-color: #FF5733; /* Active dot in brand color */
  transform: scale(1.2); /* Slightly enlarge the active dot */
}

/* Slider Arrows */
.slider-arrows {
    position: relative;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.slider-arrows .arrow {
  font-size: 4rem;
  color: #FF5733; /* Use the same brand color for arrows */
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: bounce 2s infinite; /* Bounce animation */
}

.slider-arrows .arrow:hover {
   /* Gold background on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Specific Arrow Icons */
.slider-arrows .prev::before {
  content: '\2190'; /* Left arrow Unicode */
}

.slider-arrows .next::before {
  content: '\2192'; /* Right arrow Unicode */
}

/* Right and Left Movement Animation */
@keyframes moveSideways {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0); /* Default position */
  }
  40% {
    transform: translateX(-10px); /* Move left */
  }
  60% {
    transform: translateX(10px); /* Move right */
  }
}

/* Apply Animation to Arrows */
.slider-arrows .prev {
  animation: moveSideways 1.5s infinite ease-in-out;
}

.slider-arrows .next {
  animation: moveSideways 1.5s infinite ease-in-out;
}


/* Mobile Version */
@media (max-width: 768px) {
  .hero-content {
    bottom: 10%;
    text-align: left;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Adjusted font size for smaller screens */
    margin-bottom: 10px;
    white-space: normal; /* Allow the title to wrap if needed */
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .slider-arrows .arrow {
    font-size: 2.5rem;
  }

  .slider-controls .dot {
    width: 10px;
    height: 10px;
  }
}

/* iPad version (820px width) */
@media (max-width: 820px) {
  .hero-content {
    bottom: 15%; /* Adjust positioning for better visibility */
    left: 5%; /* Adjust to ensure the content aligns well */
    text-align: left; /* Keep left alignment */
  }

  .hero-content h1 {
    font-size: 3rem; /* Adjust font size for iPad */
    margin-bottom: 15px;
    white-space: normal; /* Allow text wrapping */
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .hero-btn {
    font-size: 1.1rem;
    padding: 10px 25px; /* Slightly larger padding for better touch experience */
  }

  .slider-arrows .arrow {
    font-size: 3rem; /* Larger arrow size for tablets */
  }

  .slider-controls .dot {
    width: 12px;
    height: 12px;
  }
}

/* Mobile Version Adjustments */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .slider-arrows .arrow {
    font-size: 2rem;
  }

  .slider-controls {
    gap: 8px;
  }
}


.hilton-award-banner {
background: linear-gradient(to right, #002D72, #004aad);
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    z-index: 10;
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    font-family: 'Croissant One', cursive;
  /*animation: pulse 1.5s ease-in-out infinite;  /* Pulsing effect */
}

.hilton-award-banner h2 {
  margin: 0;
  font-size: 26px;
  font-weight: bold;
}

/* Keyframes for pulsing effect */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);  /* Slightly enlarge the text */
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .hilton-award-banner {
    font-size: 20px;
    padding: 20px 10px;
  }

  .hilton-award-banner h2 {
    font-size: 22px;
  }
}





















/* Top Attractions Section */
.top-attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.attraction-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.attraction-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.attraction-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.attraction-info {
  padding: 20px;
}

.attraction-info h3 {
  font-size: 1.8rem;
  color: #05212B;
  margin-bottom: 10px;
  font-weight: bold;
}

.attraction-info p {
  font-size: 1.1rem;
  color: #666;
}

.distance {
  font-size: 1rem;
  color: #83SFC0;
  margin-bottom: 15px;
}

.nearby-list-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 30px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

/* Category Title Styling */
.nearby-category {
  margin-bottom: 20px;
}

.nearby-category h3 {
  font-size: 1.6rem;
  color: #05212B;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #83SFC0;
  padding-bottom: 5px;
}

.nearby-item {
  font-size: 1.2rem;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.nearby-item em {
  font-size: 1.8rem;
  color: #2B81A2;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-attractions-grid {
      grid-template-columns: 1fr;
  }

  .nearby-list-container {
      grid-template-columns: 1fr;
  }
}



/* Attractions Section */
.attractions-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #83SFC0 40%, #2B81A2 100%);
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Highlighted Attraction */
.highlighted-attraction {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.highlighted-attraction img {
  width: 50%;
  object-fit: cover;
  transition: transform 1.5s ease-in-out;
}

.highlighted-attraction:hover img {
  transform: scale(1.1);
}

.highlighted-content {
  padding: 40px;
  background: linear-gradient(135deg, rgba(43, 129, 162, 0.85), rgba(131, 175, 192, 0.85));
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 18px;
  line-height: 1.8;
}

/* View More Button */
.view-more-btn {
  margin-top: 30px;
  padding: 12px 133px;
  background-color: #001641;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0px 8px 20px rgba(0, 230, 230, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
  background-color: #ffffff;
  color: #001641;
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 230, 230, 0.7);
}

/* Other Attractions */
.other-attractions {
  text-align: center;
}

.other-heading {
  font-size: 30px;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
 font-family: 'Playfair Display', serif;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}

.attractions-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.attractions-list li {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-size: 16px;
  color: #2B81A2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.attractions-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.attractions-list li em {
  font-size: 40px;
  margin-bottom: 10px;
  color: #05212B;
}

/* Responsive Design */
@media (max-width: 960px) {
  .highlighted-attraction {
      flex-direction: column;
  }

  .highlighted-attraction img {
      width: 100%;
      height: 300px;
  }

  .highlighted-content {
      width: 100%;
      padding: 30px;
  }

  .attractions-list {
      flex-direction: column;
      gap: 20px;
  }
}

/* View More Button - Mobile Adjustment */
@media (max-width: 960px) {
  .view-more-btn {
      width: 100%; /* Full width on mobile */
      padding: 15px; /* Adjust padding for smaller screens */
      font-size: 17px; /* Smaller font size for readability */
      margin-top: 20px;
  /* Adjust spacing */
  }
}

/* New Facility Section */
.new-facility-section {
  text-align: center;
  color: Black; /* Use darker blue color from your palette */
}

.new-facility-title {
  font-size: 2.5rem;
  color: #e30404;
  margin-bottom: 40px;
  position: relative;
}

.new-facility-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #83SFC0; /* Light blue underline */
  margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 39px;
  justify-items: center;
}

/* Facility Box */
.facility-box-creative {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.facility-box-creative:hover {
  transform: translateY(-20px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
  background: #f6b024;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  position: relative;
  border-bottom: 5px solid #CAC9CB; /* Light gray for depth */
}

.facility-box-creative:hover .icon-background {
  background: linear-gradient(145deg, #2B81A2, #83SFC0); /* Lighten the gradient on hover */
}

/* Facility Information */
.facility-info {
  padding: 30px;
  text-align: center;
}

.facility-info h3 {
  font-size: 1.6rem;
  color: #e30404; /* Darker blue for headings */
  margin-bottom: 15px;
}

.facility-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid-creative {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .facility-grid-creative {
      grid-template-columns: 1fr;
  }

  .facility-box-creative {
      max-width: 100%;
  }

  .icon-background {
      padding: 20px;
  }
}



/* General Facilities Section */
.facility-section {
/* Soft neutral background */
  text-align: center;
}

.facility-container {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-title {
  font-size: 2.5rem;
  color: #fff; /* Dark blue color from your palette */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.facility-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2B81A2; /* Strong accent color */
  margin: 10px auto;
  border-radius: 2px;
}

/* Facilities Grid - 3 columns */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Facility Column */
.facility-column {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Softer shadow */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Stronger hover shadow */
}

/* Facility Category Title */
.facility-column h3 {
  font-size: 1.6rem;
  color: #0047b5; /* Accent color for headings */
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #83SFC0; /* Light blue accent */
  padding-bottom: 8px;
}

/* Facility List */
.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  font-size: 1.1rem;
  color: #555; /* Neutral text color for readability */
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.facility-list li em {
  font-size: 1.5rem;
  color: #2B81A2; /* Icon color to match brand */
  margin-right: 23px;
}

.facility-list li:hover {
  background-color: #d0e7f7; /* Lighter blue hover background */
  border-radius: 5px;
  padding-left: 10px;
  transition: 0.3s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid {
      grid-template-columns: 1fr; /* One column on mobile */
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .facility-grid {
      grid-template-columns: 1fr 1fr; /* Two columns on tablet */
  }
}






























/* General Container Styles */
.modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Facility Title */
.facility-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.facility-title:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e30404;
}

/* Facility Section */
.facility-section {
  padding: 20px 0;
}

.facility-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

/* Location Text */
.location-text {
  flex: 1;
  min-width: 300px;
}

/* Coordinates Box */
.coordinates-box {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.coordinates-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.coordinate em {
  margin-right: -6px;
  color: #e30404;
}

/* Directions Form */
.directions-form {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.directions-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.input-field:focus {
  outline: none;
  border-color: #e30404;
  box-shadow: 0 0 0 2px rgba(227, 4, 4, 0.2);
}

.directions-btn {
  background-color: #e30404;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.directions-btn:hover {
  background-color: #c00303;
}

/* Location Image */
.location-image {
  flex: 1;
  min-width: 300px;
}

.location-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-container {
      flex-direction: column;
  }
  
  .location-text, .location-image {
      width: 100%;
  }
}
























