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

a {
  color: #894822;
  text-decoration: none;
}

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

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
} */


h1 {
  font-size: 34px;
  font-weight: 600;
}

/* @media (max-width: 768px) {
.hidemob{
  display: none;
}
}
@media (min-width: 1024px) {
  .displaydesktop{
    display:none;
  }
} */


@media (max-width: 768px) {
  .hidemob {
    display: none;
  }

  .visible-xs {
    display: block !important;
  }
}


.dontdisplaylg {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 9px;
  bottom: 60px;
  z-index: 996;
  background: #894822;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  transition: all 0.4s;
}

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

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #39312f;
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #f7945a;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #894822;
}

#topbar .cta a {
  color: #fff;
  background: #e08652;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.3s;
}

#topbar .cta a:hover {
  background: #ff6b3b;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

#header.header-fixed {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #635551;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
  width: 300px;
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #635551;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #894822;
}

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

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

.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;
}

.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: #894822;
}

.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: #473d3a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.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(43, 37, 35, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.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: #894822;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  height: 60vh;
  background: url("../img/Desktop-Banner-5-Rohan-Harita.jpg") center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 0;
  margin-bottom: -120px;
  
} */

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;

}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

/* New Code Start  */

@keyframes cursor {

  from,
  to {
    border-color: #894822;
  }

  50% {
    border-color: rgb(0, 255, 179);
  }
}

@keyframes typing {
  from {
    width: 100%;
  }

  90%,
  to {
    width: 0;
  }
}

@keyframes slide {
  33.3333333333% {
    font-size: 1.8cap;
    letter-spacing: 0px;
  }

  to {
    font-size: 0;
    letter-spacing: 0;
  }
}

.typing-slider {
  /* font-size: small; */
  color: #fff;
  font: weight 600px;
  ;
  text-align: left;
  white-space: nowrap;
}

.typing-slider p {
  padding-left: 2px;
  background-color: #894822;
  position: relative;
  display: inline;
  font-size: 0;
  letter-spacing: 0;
  animation: slide 15s step-start infinite;
}

.typing-slider p::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-left: 3px solid #fff;
  background-color: #894822;
  animation: typing 5s infinite, cursor 1s infinite;
}

.typing-slider p:nth-child(1) {
  animation-delay: 0s;
}

.typing-slider p:nth-child(1)::after {
  animation-delay: 0s;
  animation-timing-function: steps(16), step-end;
}

.typing-slider p:nth-child(2) {
  animation-delay: 5s;
}

.typing-slider p:nth-child(2)::after {
  animation-delay: 5s;
  animation-timing-function: steps(23), step-end;
}

.typing-slider p:nth-child(3) {
  animation-delay: 10s;
}

.typing-slider p:nth-child(3)::after {
  animation-delay: 10s;
  animation-timing-function: steps(12), step-end;
}


/* New Code End */



#hero h3 {
  color: #eee;
  font-size: 16px;
}

#hero .get-started-icon {
  font-size: 24px;
  background: #894822;
  padding: 14px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  z-index: 5;
  box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.5s;
  margin-left: -10px;
  padding: 8px 26px 8px 26px;
  color: #fff;
  background: #584b48;
  border-radius: 0 50px 50px 0;
  position: relative;
  z-index: 4;
}

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


@media (min-width: 1024px) {
  #hero {
    /* background-attachment: fixed; */
    width: 100%;
    height: 60vh;
    background: url("../img/Desktop Banner Rohan Harita.webp") center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    /* padding: 0; */
    margin-bottom: -120px;
  }

  #hero .get-started {
    margin-top: 20px;
  }
}

@media (max-width: 1024px),
(max-height: 768px) {
  #hero {
    margin-bottom: -150px;
    height: 80vh;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
    width: 100%;
    /* height: 60vh; */
    background: url("../img/Mobile-Banner-Rohan-Harita.jpg");
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    /* padding: 0; */
    margin-bottom: -133px;
  }

  #hero .hero-title {
    margin-top: -160px;
  }

  .typing-slider {
    font-size: small;
  }

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

  .about {
    padding: 40px 0 65px;
  }

  /* #hero .hero-title .typing-slider p {
    font-size: 12px;  
  } */
  #hero .get-started {
    margin-top: 24px;
  }

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

  }

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

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

  }
}

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #635551;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f2f2;
  margin-bottom: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.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: #635551;
  content: "/";
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0 80px 0;
  position: relative;
  z-index: 3;
  background: #8948220d;
}

.why-us .content {
  padding: 30px;
  background: #894822;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  color: #000;
  background: #fff;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #fff;
  background: #000;
}

.why-us .content1 .more-btn {
  display: inline-block;
  color: #fff;
  background: #894822;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  margin-top: 4rem;
  transition: all ease-in-out 0.4s;
}

.why-us .content1 .more-btn i {
  font-size: 14px;
}

.why-us .content1 .more-btn:hover {
  color: #fff;
  background: #000;
}


.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  width: 100%;
  height: 90%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #894822;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}

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

.about {
  background: #fff;
  padding: 70px 0 80px;
}

.faq .google-map {
  pointer-events: none;
}

.values .enqbtnvalues button {
  margin-top: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #894822;
  border: 1px solid #894822;
}

.values .enqbtnvalues button:hover {
  background-color: transparent;
  border: 2px solid #894822;
  color: #894822;
}

.portfolio .enqbtnportfolio button {
  margin-top: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #894822;
  border: 1px solid #894822;
}

.portfolio .enqbtnportfolio button:hover {
  background-color: transparent;
  border: 2px solid #894822;
  color: #894822;
}

.featured .enqbtnfeatured button {
  margin-top: 40px;
  font-weight: 700;
  color: #ffffff;
  background-color: #894822;
  /* border: 1px solid #894822; */
  border-radius: 30px;
  padding: 8px 25px;
}

.featured .enqbtnfeatured button:hover {
  background-color: #000;
  color: #fff;
}

.icon-boxes .enqbtnabout button {
  margin-top: 40px;
  font-weight: 700;
  color: #ffffff;
  background-color: #894822;
  /* border: 1px solid #894822; */
  border-radius: 30px;
  padding: 8px 25px;
}

.icon-boxes .enqbtnabout button:hover {
  background-color: #000;
  color: #fff;
}

.icon-boxes .enqbtn button {
  margin-top: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #894822;
  border: 1px solid #894822;
}

.icon-boxes .enqbtn button:hover {
  background-color: transparent;
  border: 2px solid #894822;
  color: #894822;
}

.about .icon-boxes h4 {
  font-size: 18px;
  color: #7f6d68;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #554945;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid #ffcbba;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.about .icon-box .icon i {
  color: #894822;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #894822;
  border-color: #894822;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
  text-decoration: none;
}

.about .icon-box .title a:hover {
  color: #894822;
  text-decoration: none;
  pointer-events: none;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

/* .about .video-box {
  background: url("../img/About-Elevation-Godrej-Greenfront-Hinjewadi.webp") center center no-repeat;
  background-size: cover;
  min-height: 500px;
} */

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#894822 50%, rgba(255, 88, 33, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .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);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 88, 33, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #894822;
  transform: scale(20);
}

.about .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;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.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 #894822;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #894822;
}

.clients .swiper-slide img {
  opacity: 0.5;
  filter: grayscale(100%);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .enqbtn button {
  font-weight: 600;
  color: #ffffff;
  background-color: #894822;
  border: 1px solid #894822;
}

.services .enqbtn button:hover {
  font-weight: 700;
  background-color: transparent;
  border: 2px solid #894822;
  color: #894822;
}

.services .icon-box {
  padding: 50px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  height: 250px;
  position: relative;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #894822;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: none;
}

.services .title a {
  color: #343a40;
}

.services .icon-box:hover .icon {
  background: #fff;
  border: 2px solid #894822;
}

.services .icon-box:hover .icon i {
  color: #894822;
}

.services .icon-box:hover .title a {
  color: #894822;
}

/* .services .description {
  line-height: 24px;
  font-size: 14px;
} */

.services ul.a {
  text-align: left;
  list-style-type: circle;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .enqbtn button {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: #894822;
  border: 1px solid #894822;
}

.values .enqbtn button:hover {
  font-weight: 700;
  background-color: transparent;
  border: 2px solid #894822;
  color: #894822;
}

.values .card {
  background: #f9f6f4;
  border: 0;
  padding: 0px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.values img {
  border: 0;
  /* padding: 0px 20px 20px 20px; */
  position: relative;
  width: 25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 768px) {
  /* .values img {
    width: 60%;
  } */
}

.values .card-title {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
  font-family: "Open Sans", sans-serif;
}

.values .card-title a {
  text-decoration: none;
  pointer-events: none;
  color: #473d3a;
}

.values .card-text {
  color: #4b4949;
}

.values .read-more a {
  color: #656262;
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s;
}

.values .read-more a:hover {
  text-decoration: underline;
}

.values .card:hover .card-body {
  background: #894822;
}

.values .card:hover .read-more a,
.values .card:hover .card-title,
.values .card:hover .card-title a,
.values .card:hover .card-text {
  color: #894822;
}

/*--------------------------------------------------------------
# Call-Section
--------------------------------------------------------------*/
.call-section {
  padding: 50px 0;
  background: url("../img/background.webp") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.call-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.call-section .call-sectionitem {
  text-align: center;
}

.call-section .call-sectionitem button {
  font-weight: 600;
  color: #000;
  background-color: #fff9f7;
  border: 1px solid #fff9f7;
  margin-top: 20px;
  border-radius: 30px;
  /* margin-bottom: -20px; */
  padding: 8px 25px;
}

.call-section .call-sectionitem button:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.call-section .call-sectionitem h4 {
  color: #894822;
}

.call-section .call-sectionitem p {
  margin-top: 15px;
  color: #fff;
}



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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #313030;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #894822;
  background: #fff1ed;
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 158px;
  right: 168px;
  bottom: -49px;
  top: 50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 38px;
  border-radius: 50px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #473d3a;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #7f6d68;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  top: 5px;
  right: 13px;
  font-size: 50px;
  top: calc(100% -4px);
  color: #635551;
}


.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #894822;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #ffa587;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 120px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}

.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 #894822;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #894822;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(71, 61, 58, 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 {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  padding: 17px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #473d3a;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  background: #8948220d;
  padding: 60px 0 80px;
}

.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 .box img {
  width: 80%;
  height: 200px;
  border: 1px solid #000;
  margin-top: 10px;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 10px 15px;
  font-size: 30px;
  font-weight: 600;
  color: #656262;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 22px;
  color: #894822;
  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: #313030;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
}

.pricing ul li {
  padding-top: 25px;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 5px;
}

.pricing ul i {
  color: #894822;
  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: #894822;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 30px;
  color: #fff;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #000;
  color: #fff;
}

.pricing .featured h3 {
  color: #fff;
  background: #894822;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
  font-family: "Open Sans", sans-serif;
}

.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: #894822;
  color: #fff;
}

/* .pricing .img {
  filter: blur(1.5px);
} */

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq {
  background: #f9f6f4;
}

.faq .enqbtn button {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: #894822;
  /* border: 1px solid #894822; */
  border-radius: 30px;
  padding: 8px 25px;
}

.faq .enqbtn button:hover {
  font-weight: 700;
  background-color: #000;
  color: #fff;
}

/* .faq .faq-list {
  padding: 0 100px;
} */

/* .faq .faq-list ul.a {
  padding: 10px 0 0 0;
  margin-bottom: 0;
  text-align: left;
  list-style-type: circle;
} */
.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 35px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #894822;
  margin-top: -6px;
}

.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: #894822;
}

.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: #894822;
  /* border-radius: 50%; 
   border: 2px dotted #ffded4;*/
  padding: 8px;
  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: 18px;
  margin: 0 0 0 68px;
}

.contact .info-box p a {
  padding: 0;
  color: #444444;
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.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;
  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;
}

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

.contact .php-email-form input {
  padding: 10px 15px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 12px;
  background: #222;
  text-align: left;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff9f7;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #656262;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffa587;
  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: #656262;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #894822;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #313030;
}


/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  padding: 60px 0 70px 0;
  background: #fff;
}

.featured .nav-tabs {
  border: 0;
}

.featured .nav-link {
  /* border: 0; */
  border: 1px solid #894822;
  /* padding: 20px; */
  color: #151515;
  transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 0px;
}

.featured .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-link:hover h4 {
  color: #0f0f0f;
}

.featured .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.featured .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.featured .nav-link.active h4 {
  color: #894822;
}

.featured .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.featured .nav-item {
  border: 0;
  padding: 10px;
  color: #151515;
  transition: 0.3s;
}

.featured .nav-item h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-item:hover h4 {
  color: #894822;
}

.features .nav-item i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.featured .icon-box {
  margin-top: 15px;
  margin-bottom: 15px;
}

.featured .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ffcbba;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.featured .icon-box .icon i {
  color: #894822;
  font-size: 32px;
}

.featured .icon-box:hover .icon {
  background: #894822;
  border-color: #894822;
}

.featured .icon-box:hover .icon i {
  color: #fff;
}

.featured .icon-box .title {
  margin-left: 45px;
  /* margin-top: 10px;
  margin-bottom: 10px; */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.featured .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
  text-decoration: none;
}

.featured .icon-box .title a:hover {
  color: #894822;
  text-decoration: none;
  pointer-events: none;

}

/* Modal Start  */

.modal-body {
  background: #fff;
}

.modal-header .btn-close {
  margin-top: -3rem;
}

.modal-body h6 {
  color: #fff;
}

.modal-body h4 {
  text-decoration: none;
}

.modal-body h4 a {
  color: #fff;
}

/* Modal End */



/* Share Btn Code  */
.menubtn {
  filter: url('#shadowed-goo');
}

.menubtn-item,
.menubtn-open-button {
  background: #04a53a;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-left: -35px;
  position: absolute;
  top: -35px;
  color: white;
  text-align: -webkit-center;
  line-height: 50px;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 200ms;
}

.menubtn-open {
  display: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
}

.hamburger-1 {
  transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
  transform: translate3d(0, 0, 0);
}

.hamburger-3 {
  transform: translate3d(0, 8px, 0);
}

.menubtn-open:checked+.menubtn-open-button .hamburger-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menubtn-open:checked+.menubtn-open-button .hamburger-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menubtn-open:checked+.menubtn-open-button .hamburger-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menubtn {
  position: absolute;
  left: 5%;
  margin-left: -80px;
  padding-top: 20px;
  padding-left: 80px;
  /* width: 650px;
  height: 150px; */
  box-sizing: border-box;
  font-size: 20px;
  text-align: left;
}

.menubtn-item:hover {
  background: #554945;
  color: #fff;
}

.menubtn-item:nth-child(3) {
  transition-duration: 180ms;
}

.menubtn-item:nth-child(4) {
  transition-duration: 180ms;
}

.menubtn-item:nth-child(5) {
  transition-duration: 180ms;
}

.menubtn-item:nth-child(6) {
  transition-duration: 180ms;
}

.menubtn-open-button {
  z-index: 2;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 400ms;
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
}

.menubtn-open-button:hover {
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);

}

.menubtn-open:checked+.menubtn-open-button {
  transition-timing-function: linear;
  transition-duration: 200ms;
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.menubtn-open:checked~.menubtn-item {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menubtn-open:checked~.menubtn-item:nth-child(3) {
  transition-duration: 190ms;
  transform: translateY(-65px);
}

.menubtn-open:checked~.menubtn-item:nth-child(4) {
  transition-duration: 290ms;
  transform: translateY(-130px);
}

.menubtn-open:checked~.menubtn-item:nth-child(5) {
  transition-duration: 390ms;
  transform: translateY(-195px);
}

.menubtn-open:checked~.menubtn-item:nth-child(6) {
  transition-duration: 490ms;
  transform: translateY(-260px);
}

.wrapper {
  position: relative;
  position: fixed;
  bottom: 140px;
  right: 25px;
  z-index: 100;
}

.wrapper :is(.btn, .link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
}

.btn {
  border: none;
  cursor: pointer;
  z-index: 10;
}

/*New Blooming Code*/
.container {
  justify-content: center;
  align-items: center;
}

.pulse i {
  color: #fff;
  font-size: 3rem;
}

.pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;

}

.pulse::before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid #31f314;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
}

.pulse::after {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid #31f314;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  animation-delay: 0.4s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Share Button End */


.modal-content {
  background-color: #fff9f7;
}

.modal-header {
  text-align: center;
}

.modal-header h4 {
  font-size: 26px;
  font-weight: 600;
}

.modal-body {
  text-align: center;
  border-radius: 0px;
  /* padding:15px; 
  box-shadow: 0 0 16px rgba(214, 215, 216, 0.6); */
}

.form-group input {
  border-radius: 30px;
  margin-top: 10px;
  border: 1px solid #514b4b6e;
}

.form-group .btn {
  border-radius: 30px;
  margin-top: 10px;
  background: #894822;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  transition: 0.4s;
  width: 100%;
}

.form-group .btn:hover {
  background: #894822;
}

.footer-info {
  background: #fff9f7;
  margin-top: 15px;
}

.footer-info h6 {
  color: #0f0f0f;
  padding-top: 10px;
}

.footer-info p {
  margin-top: 1rem;
  font-size: smaller;
}

.footer-info .modal-contact {
  padding-bottom: 1px;
  padding-top: 7px;
  margin-bottom: 10px;
  margin-left: 5px;
  font-family: sans-serif;
  color: #0f0f0f;
  text-align: -webkit-center;
  /* background-color: #ffffff;
  box-shadow: 0 0 16px rgba(214, 215, 216, 0.6); */
}

.footer-info .modal-contact:hover {
  color: #894822;
}

.footer-info .modal-contact h5 a {
  color: #0f0f0f;
}

.footer-info .modal-contact a:hover {
  color: #894822;
}

.footer-info .modal-whatsapp {
  padding-bottom: 1px;
  padding-top: 7px;
  margin-bottom: 10px;
  margin-right: 5px;
  font-family: sans-serif;
  color: #0f0f0f;
  text-align: -webkit-center;
  background-color: #ffffff;
  box-shadow: 0 0 16px rgba(214, 215, 216, 0.6);
}

.footer-info .modal-whatsapp:hover {
  color: #894822;
}

.footer-info .modal-whatsapp h5 a {
  color: #0f0f0f;
}

.footer-info .modal-whatsapp a:hover {
  color: #894822;
}


.footer-offer .modal-contact {
  height: 140px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(214, 215, 216, 0.6);
}

.footer-offer .modal-contact:hover {
  color: #894822;
  background-color: #fff9f7;
}

.footer-offer .modal-contact img:hover {
  background-color: #fff9f7;
}

.footer-offer .modal-contact h6 {
  color: #0f0f0f;
  margin-top: 10px;
}

.footer-offer .modal-contact h6:hover {
  color: #894822;
}

.footer-offer .modal-contactmob {
  height: 140px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(214, 215, 216, 0.6);
}

.footer-offer .modal-contactmob:hover {
  color: #894822;
  background-color: #fff9f7;
}

.footer-offer .modal-contactmob img:hover {
  background-color: #fff9f7;
}

.footer-offer .modal-contactmob h6 {
  color: #0f0f0f;
  margin-top: 10px;
}

.footer-offer .modal-contactmob h6:hover {
  color: #894822;
}


.modal-contactmob .icon-box {
  margin-top: 40px;
}

.modal-contactmob .icon-box .icon {
  float: left;
  display: flex;
  background: #fff;
}

.modal-contactmob .icon-box .icon img {
  color: #894822;
  font-size: 32px;
}

.modal-contactmob .icon-box:hover .icon {
  background: #894822;
  border-color: #894822;
}

.modal-contactmob .icon-box:hover .icon i {
  color: #fff;
}

.modal-contactmob .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.modal-contactmob .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
  text-decoration: none;
}

.modal-contactmob .icon-box .title a:hover {
  color: #894822;
  text-decoration: none;
  pointer-events: none;
}


/* Fixed Footer */

.down_enquiry {
  background-color: #000;
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  display: none;
  /* Make it visible with `display: block;` when needed */
}

.down_enquiry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* Use flexbox for alignment */
}

.down_enquiry ul li {
  flex: 1;
  /* Equal width for all buttons */
  text-align: center;
  border-right: 1px solid #fff;
}

.down_enquiry ul li:last-child {
  border-right: none;
  /* Remove border for the last item */
}

.down_enquiry ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  /* For animation clipping */
}



/* Popup Form CSS  */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.popup-content .form-group input[type=text] {
  width: 100%;
  height: 40px;
  border: 1px solid #d7cbcb;
  padding: 0 20px;
  margin-top: 8px;
  margin-bottom: 15px;
  color: #000;
  border-radius: 20px;
  text-align: center;
  box-shadow: 2px 2px 6px #93979a9e;
}

.popup-content .form-group input[type=mobile] {
  width: 100%;
  height: 40px;
  border: 1px solid #d7cbcb;
  padding: 0 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #000;
  border-radius: 20px;
  text-align: center;
  box-shadow: 2px 2px 6px #93979a9e;
}

/* .popup-content .form-group input {
    text-align: left;    
}
   */
.popup-content {
  background: #0a0909eb;
  padding: 50px 30px;
  border-radius: 8px;
  width: 350px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0 10px rgb(184 189 203 / 43%);

}

.popup-content h6 {
  font-size: 28px;
  color: #fff;
  /* margin-top: -13px;
	margin-bottom: 10px; */
}

.popup-content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: -12px;
}

.popup-content h4,
.popup-content h5 {
  margin: 0;
}


.popup-content .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 18px;
  padding: 0px 8px;
  margin-top: 0rem;
  border: 2px solid #544e4e;
  color: #fff;
  background: transparent;
}

.input-item {
  position: relative;
  padding-right: 0px;
  padding-left: 0px;
}

.input-item.ltn__custom-icon::before {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  color: var(--ltn__secondary-color);
}

/* .popup-content button {
	width: 88%;
	margin-left: 15px; 
  } */

.grecaptcha-badge {
  transform: translateY(80px) !important;
  opacity: .9 !important;
  transition: .3s
}