
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: #282828;
}

body.beige {
  font-family: "Open Sans", sans-serif;
  color: #4a4a4a;
  background: #f1f1f1;
}


a {
  color: #505e41;
  text-decoration: none;
}

a:hover {
  color: #f8cc08;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Yeseva One', cursive;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #505e41;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f8b808;
  color: #fff;
}

.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 #f8b808;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #505e41;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 2px solid #f8b808;
}

#header.header-scrolled {
  border-color: #f8b808;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-size: 0  ;
  position: absolute;
  top:6px;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 110px;
}

.beige .logo{
  margin-top: 10px !important;
  width: 150px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 0px;
    top:4px
  }

 .beige #header .logo {
    font-size: 0px;
    margin: 0 auto;
  }

  #header .logo img {
   width: 100px;
  }

  .beige .logo img {
    width: 150px !important;
    margin-top: 10px;
  }
}

.beige #header{
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 2px solid #000;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-left: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.beige .navbar a,
.beige .navbar a:focus {
  color:#706f6e;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f8b808;
}

.beige .navbar a:hover,
.beige .navbar .active,
.beige .navbar .active:focus,
.beige .navbar li:hover>a {
  color: #139d4a;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #f8b808;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #f8b808;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f8b808;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.beige .mobile-nav-toggle {
  color: #4a4a4a;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f8b808;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f8b808;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  position: relative;
  background-size: cover;
  position: relative;
}

#hero video{
  width: 100%;
  position:absolute;
  top:0;
  left: 0;
  z-index: 0;
}

.dt-only{
  display: block;
}

.mob-only{
  display: none;
}


#hero:before {
  content: "";
  background: linear-gradient(0deg, rgba(40,40,40,1) 10%, rgba(255,255,255,0) 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #f8b808;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 4px #000000;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 2px 2px 4px #000000;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #505e41;
}

#hero .btn-get-started:hover {
  background: #f8b808;
}

#hero .icon-boxes {
  margin-top: 100px;
}

#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #f8b808;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #f8b808;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
  .dt-only{
    display: none;
  }
  .mob-only{
    display: block;
  }
}

@media (max-width: 992px) {
  #hero {
    height:50vh;
  }
  .dt-only{
    display: none;
  }

  .mob-only{
    display: block;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  border-bottom: dashed 1px #f8b808;
}

section#hero{
  border-bottom: none;
}


.section-bg {
  background-color: #282828;
}

.section-title {
  padding-bottom: 30px;
}

.section-title .small-title{
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.section-title .small-title::before{
  content: "";
  width: 100px;
  height: 3px;
  display: block;
  background: #f8b808;  
  margin-right: 20px;
}

.section-title h2 {
  font-size:36px;
  font-weight: 900;
  padding-bottom: 0;
  color: #f8b808;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 768px) {
  section{
    padding: 40px 0;
  }

  .section-title {
    padding-bottom:10px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
  background: #282828;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content p{
  color: #fff;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content img{
  border-radius: 8px;
  transition: ease-in-out 0.3s;
}

.about .content img:hover{
  transform: scale(0.99);
  border: solid 3px #f8b808;
}

.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: #f8b808;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #f8b808;
  margin-bottom: 20px;
}

.about .content .btn-learn-more:hover {
  background: #f8b808;
  color: #fff;
  text-decoration: none;
}



/*--------------------------------------------------------------
# events
--------------------------------------------------------------*/


.events .section-title p{
  color: #fff;
}

.events .events-carousel,
.events .events-slider {
  overflow: hidden;
}

.events .events-item {
  box-sizing: content-box;
  text-align: left;
  min-height: 320px;
  background: #f8b808;
  border-radius: 8px;
  overflow: hidden;
}

.events .events-item img{
  width: 100%;
}

.events-item .event-details{
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
  transition: ease-in-out 0.3s;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(1,1,1,1) 70%);
}

.events-item:hover .event-details{
  bottom: 10px;
}

.events .events-item h3 {
  font-size:20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  padding-bottom: 10px;
  text-shadow: 2px 2px 2px #000000;
}

.events-item h3::after{
  content: "";
  display: block;
  width:30px;
  height: 3px;
  border-bottom: solid 2px #f8b808;
  margin-top: 10px;
}

.events .events-item h4 {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-shadow: 2px 2px 2px #000000;
}

.events .free-entry{
  background: #f8b808;
  color: #fff;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  text-shadow: none;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.events .events-item p{
  color: #fff;
  padding: 10px 0 0 0;
  text-shadow: 2px 2px 2px #000000;
}


.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f8b808;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f8b808;
}

/*--------------------------------------------------------------
# Activities
--------------------------------------------------------------*/
.activities .icon-box {
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  border-radius: 8px;
  overflow: hidden;
  background-color:#706f6e;
  position: relative;
}

.activities .icon-box img{
  width: 100%;
  position: absolute;
  top:0;
  left: 0;
  z-index: 0;
}

.activities .icon-box .details {
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 170px 20px 30px 20px;
 display: flex;
 flex-direction: column;
 align-items: center;
 background: hsla(0, 0%, 100%, 1);
background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.1) 42%, hsla(117, 32%, 25%, 1) 100%);
 transition: all ease-in-out 0.3s;
}


.activities .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 24px;
  font-weight: 700;
  /* text-shadow: 2px 2px 4px #000000; */
}

.activities .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.activities .icon-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  /* text-shadow: 2px 2px 4px #000000; */
}

.activities .icon-box:hover .details{
background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.1) 42%, hsla(36, 89%, 51%, 1) 100%);

}


/*-----------------------------------------------------
#cafes
------------------------------------------------------*/
/* 
.cafes{
  background: #505e41;
} */

.cafes a.item-box {
  width: 100%;
  text-align: center;
  padding: 300px 20px 30px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: dotted 1px #f8b808;
  margin-bottom:20px;
}

.cafes a.item-box:hover{
  padding: 150px 20px 50px 20px;
  border: solid 1px #f8b808;
}

.cafes a.item-box.desiThath-cafe{
  background: url(../img/cafes/desiThathCafe.webp) no-repeat;
  background-size: cover;
}

.cafes a.item-box.ducksDog-cafe{
  background: url(../img/cafes/ducks&dogCafe.webp) no-repeat;
  background-size: cover;
}

.cafes a.item-box.thargarh-cafe{
  background: url(../img/cafes/thargarhGurgaon.webp) no-repeat;
  background-size: cover;
}

.cafes a.item-box.beige-cafe{
  background: url(../img/cafes/theBeigeCafe.webp) no-repeat;
  background-size: cover;
}


.cafes .item-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 2px 2px 4px #000000;
}

.cafes .item-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px #000000;
}


/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery #gallery-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.gallery #gallery-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.gallery #gallery-flters li:hover,
.gallery #gallery-flters li.filter-active {
  color: #f8b808;
}

.gallery #gallery-flters li:last-child {
  margin-right: 0;
}

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:#595855;
}

.beige .gallery-wrap{
  margin-bottom: 20px;
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(248, 155, 8, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-wrap .gallery-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 4px #000000;
}

.gallery .gallery-wrap .gallery-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.gallery .gallery-wrap .gallery-links {
  text-align: center;
  z-index: 4;
}

.gallery .gallery-wrap .gallery-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .gallery-wrap .gallery-links a:hover {
  color: #fff;
}

.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-info::before {
  top: 15px;
  left: 15px;
}

.gallery .gallery-wrap:hover .gallery-info::after {
  bottom: 15px;
  right: 15px;
}


.description-bottom{
  display: none;
}



/*--------------------------------------------------------------
# Cafes Details
--------------------------------------------------------------*/
.cafes-details {
  padding-top: 40px;
}

.cafes-details .cafes-title{
    padding: 70px 0 40px 0;
    border-bottom: solid 2px #f8b808;
    margin-bottom: 30px;
}

.cafes-details .cafes-title h1{
  font-size: 36px;
  text-align: center;
  color: #f8cc08;
}

.beige .cafes-details .cafes-title h1{
  font-size: 36px;
  text-align: center;
  color: #000;
}

.beige .cafes-details .cafes-title{
  padding: 70px 0 40px 0;
  border-bottom: solid 2px #000;
  margin-bottom: 30px;
  text-align: center;
}

.cafes-details .cafes-title h3{
  font-size: 20px;
  text-align: center;
  color: #4a4a4a;
}

.cafes-details .cafes-details-slider img {
  width: 100%;
}

.cafes-details .cafes-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.cafes-details .cafes-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f8b808;
}

.cafes-details .cafes-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f8b808;
}

/* .cafes-details .cafes-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
} */

.cafes-details .cafes-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cafes-details .cafes-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 15px;
  align-items: baseline;
}

.cafes-info ul.amenities-list {
  list-style: none;
  padding: 0;
  
}

.cafes-info ul.amenities-list li {
  position: relative;
  margin-bottom: 15px;
  width:25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cafes-info ul.amenities-list li h4{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.amenities-list li i {
  width: 50px;
  height: 50px;
  font-size: 24px;
  border: 2px solid #333;
  border-radius: 50%;
  padding: 10px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.amenities-list li:hover i {
  border: 2px solid #000;
}

.cafes-details .cafes-info ul li+li {
  margin-top: 10px;
}

.cafes-details .cafes-info ul li strong{
  margin-bottom: 10px;
  color: #f8b808;
}

.cafes-details .cafes-description {
  padding-top: 30px;
}

.cafes-details .cafes-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cafes-details .cafes-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .map{
  border-radius: 8px;
  overflow: hidden;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #f8b808;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #f8b808;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f8b808;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #f8b808;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f8b808;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #f8b808;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #505e41;
  border-top: solid 2px #f8b808;
  margin-bottom: 50px;
}

.powered-by{
  width:180px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .powered-by{
    width:100%;
    left: 0;
    position: fixed;
    bottom:0;
    display: flex;
    flex-direction: column;
    background: #505e41;
    padding: 16px;
    border-top: solid 2px #f8b808;
  }
}


.powerTxt{
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 5px;
  background: #f8b808;
  border-radius: 3px;
  width: 67px;
  padding: 2px 4px;
  margin-top: -26px;
  color: #505e41;
  font-weight: 700;
}

.aaBranding{
  width:180px;
  font-size: 16px;
  font-weight:900;
  color: #fff;
  display: flex;
  margin-bottom: 0;
}

.aravaliAdventureLogo{
  width: 24px;
  height: 24px;
  display: flex;
  background: url(../img/aravaliAdventureLogo.webp) no-repeat;
  background-size:contain;
  margin: 0 6px;
  flex-shrink: 0;
}

.beige #footer{
  background: #fff;
  border-top: solid 2px #000;
}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f8b808;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #f8b808;
  color: #fff;
  text-decoration: none;
}

.copyright a{
  color: #f8b808;
  font-weight: 900;
}

.beige .copyright{
  color: #595855;
}

.beige #footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ea3323;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}