/* header css  */

.headerContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  border-bottom: 1px solid #f0f0f0;
  background-color: #1E1E1E;
}
.navbar-toggler{
  background-color: white !important;
}

.navLogo img{
    width: 120px;
    object-fit: contain;
    margin-left: 50%;
}
.nav-link {
  color: #FAFAFA ;
  font-size: 16px !important;
  padding-right: 20px !important;
  font-weight: 500 !important;
}
.nav-link:hover {
  color: #D4AF37 !important;
  border-bottom: 2px solid #D4AF37;
  font-weight: 600;
}

.profileContainer {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #FAFAFA;
  font-size: 16px;
  font-weight: 500;
  margin-right: 6%;
  padding: 8px;
  border-radius: 8px;
}


@media screen and (max-width: 992px) {
  .navbar-toggler {
    border: none !important;
  }
  .navbar-toggler:focus {
    border: none !important;
    box-shadow: none !important;
  }
  .profileContainer {
    display: none !important;
  }
  .offcanvas-header {
   background-color: #1E1E1E;
    color: white;
    font-size: 14px;
    font-weight: 500;
  }

  .btn-close {
    color: white !important;
    background-color: white !important;
  }
  .offcanvasHeader {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .offcanvasHeader img {
    width: 100px;
    height: 50px;
    object-fit: fill;
  }
  .nav-link.activeMenu{
    color: #D4AF37 !important;
    border-bottom: 2px solid #D4AF37 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }
  .nav-link {
    color: #1E1E1E !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}

/* Home css  */
.heroBanner {
  background-color: #F8F8F8;
  padding-top: 30px;
  margin-bottom: 50px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.heroGrid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 20px;
  align-items: center;
}

.heroTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}
.heroSubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.heroBtnContainer {
  display: flex;
  gap: 20px;
}
.heroBtnContainerHome {
  display: flex;
  gap: 20px;
}
.btnHeroContact {
  border: 1px solid #D4AF37;
  border-radius: 5px;
  background-color: transparent;
  color: #D4AF37;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
}
.btnHeroBrowse {
  background-color: #D4AF37;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  border: none;
  padding: 5px 10px;
}
.heroCardGrid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 20px;
  margin: 40px 0px;
}
.heroCard {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
.heroCard > :first-child {
  color: #2e2e2e;
  font-size: 30px;
  font-weight: 600;
}
.heroCard > :last-child {
  color: #737373;
  font-size: 14px;
  font-weight: 500;
}
.heroRight img{
   width: 100%;
   height: 100%;
   object-fit: contain;
}
/* how it work  */
.howItWorkContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* margin-bottom: 50px; */
}
.howGrid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 20px;
  margin-top: 20px;
}
.howCard {
  background-color: #FBF7EB80;
  border: 1px solid #FBF7EB;
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
}
.howCard div {
  margin-bottom: 10px;
}
.howCard > :nth-child(2) {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 600;
}
.howCard > :last-child {
  color: #737373;
  font-size: 14px;
  font-weight: 500;
}
.howTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
.howSubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.howCard img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* featured properties  */
.featuredContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #eaefec4d;
  padding: 50px 0px;
  margin-bottom: 50px;
}
.featureTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.trendContainer {
  display: grid;
  grid-template-columns: 10fr 2fr;
  gap: 20px;

  margin-bottom: 30px;
}
.trendContainer > :first-child {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
}
.trendContainer a {
  color: #D4AF37;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.featureCardGrid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 20px;
}
.featureCard {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 15px;
}
/* .featureCardContent {
  height: 120px;
  overflow: auto;
} */
.featureCardContent div {
  margin-bottom: 15px;
}
.featureImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.featureCardContent > :first-child {
  color: #2e2e2e;
  font-size: 20px;
  font-weight: 500;
}
.featureCardContent > :last-child {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
}
.featureMenu {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 10px;
  margin-bottom: 15px;
}
.featureMenu div {
  width: 100%;
  color: #585858;
  background-color: #f8f8f8;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px;
}
.priceContainer {
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
}
.textPrice {
  color: #737373;
  font-size: 14px;
  font-weight: 500;
}
.textRupee > :first-child {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 600;
  margin-right: 5px;
}
.textRupee > :last-child {
  color: #9f9f9f;
  font-size: 12px;
  font-weight: 500;
}
.btnView {
  background-color: #D4AF37;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
}
.btnView a{
   color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
/* why snap bid  */
.whyContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 50px 0px;
}
.whySnapGrid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 10px;
}
.whyTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 500;
}
.whySubTitle {
  color: #737373;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.whyList span {
  display: block;
  color: #737373;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
.whyBtnContainer {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.btnWhyContact button {
  border: 1px solid #D4AF37;
  color: #D4AF37;
  font-size: 16px;
  padding: 5px 10px;
  background-color: transparent;
  font-weight: 500;
  border-radius: 5px;
}
.btnWhyBrowse button {
  background-color: #D4AF37;
  color: white;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}
.whySnapRight img {
  width: 100%;
  border-radius: 10px;
}

/* what our clients say  */
.whatContainer {
  background-color: #eaefec4d;
  padding: 50px 0px;
}
.whatTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 500;
}
.whatSubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
}
.whatCardGrid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 20px;
}
.whatCard {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  overflow: auto;
  height: 320px;
  margin-bottom: 50px;
}
.whatCard div {
  margin-bottom: 15px;
}
.whatCardContent > :first-child {
  color: #737373;
  font-size: 20px;
  font-weight: 500;
}
.whatCardContent > :last-child {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
}
.clientImgContainer {
  display: flex;
  gap: 20px;
}
.clientName span {
  display: block;
}
.clientName > :first-child {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 500;
}

.clientName > :last-child {
  color: #737373;
  font-size: 14px;
  font-weight: 500;
}
.carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  background-color: black !important;
  border: none;
  opacity: 0.5;
  margin: 0 6px;
  transition: opacity 0.3s ease;
}

.carousel .carousel-indicators .active {
  opacity: 1;
  background-color: black !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* start your project  */
.startProject {
  background-image: url("../images/home/startProjectImg.png");
  background-size: cover;
  height: 150px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.startGrid {
  display: grid;
  grid-template-columns: 10fr 2fr;
  gap: 2px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.startTitle {
  color: #2e2e2e;
  font-size: 40px;
  font-weight: 500;
}
.startSubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
}
.startRight button {
  border: none;
  background-color: #D4AF37;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
}

@media screen and (max-width: 992px) {
  .heroGrid {
    display: grid;
    grid-template-columns: 12fr;
  }
  .howGrid {
    display: grid;
    grid-template-columns: 6fr 6fr;
  }
  .featureCardGrid {
    display: grid;
    grid-template-columns: 12fr;
  }
  .whySnapGrid {
    display: grid;
    grid-template-columns: 12fr;
    gap: 10px;
  }
  .whySnapRight img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}
  .whatCardGrid {
    display: grid;
    grid-template-columns: 12fr;
    gap: 20px;
  }
  .whatCard {
    margin-bottom: 0px;
  }
  .startProject {
    padding: 0px;
  }
}
@media screen and (max-width: 776px) {
  .heroTitle {
    font-size: 35px;
  }
  .howTitle {
    font-size: 35px;
  }
  .featureTitle {
    font-size: 35px;
  }
  .whyTitle {
    font-size: 35px;
  }
  .whatTitle {
    font-size: 35px;
  }
  .startTitle {
    font-size: 35px;
  }
}
@media screen and (max-width: 556px) {
  .heroTitle {
    font-size: 25px;
  }
  .heroCardGrid {
    display: grid;
    grid-template-columns: 12fr;
  }
  .heroCard > :first-child {
    font-size: 25px;
  }
  .howTitle {
    font-size: 25px;
  }
  .howGrid {
    display: grid;
    grid-template-columns: 12fr;
  }
  .featureTitle {
    font-size: 25px;
  }
  .trendContainer {
    display: grid;
    grid-template-columns: 6fr 6fr;
  }
  .featureCardGrid {
    display: grid;
    grid-template-columns: 12fr;
  }
  .featureCardContent > :first-child {
    font-size: 18px;
  }
  .featureCardContent > :last-child {
    font-size: 14px;
  }
  .featureCardContent div {
    margin-bottom: 5px;
  }
  .textRupee > :first-child {
    font-size: 18px;
  }
  .btnView {
    font-size: 12px;
  }
  .whyTitle {
    font-size: 25px;
  }
  .btnWhyContact button {
    font-size: 14px;
  }
  .btnWhyBrowse button {
    font-size: 14px;
  }
  .whatTitle {
    font-size: 25px;
  }
  .whatCardContent > :first-child {
    font-size: 18px;
  }
  .whatCardContent > :last-child {
    font-size: 14px;
  }
  .whatCard {
    height: 300px;
  }
  .startGrid {
    display: grid;
    grid-template-columns: 12fr;
    align-items: left;
    justify-content: left;
    justify-items: left;
  }
  .startTitle {
    font-size: 25px;
  }
  .startSubTitle {
    font-size: 14px;
  }
  .startRight button{
   font-size: 14px;
  }
.testimonial-left-arrow {
  display: none;
}
.testimonial-right-arrow {
  display: none;
}
}
@media screen and (max-width: 456px) {
  .heroTitle {
    font-size: 20px;
  }
  .heroSubTitle {
    font-size: 14px;
  }
  .btnHeroContact {
    font-size: 14px;
  }
  .btnHeroBrowse {
    font-size: 14px;
  }
  .heroCard > :first-child {
    font-size: 20px;
    text-align: center;
  }
  .heroCard > :last-child {
    font-size: 12px;
    text-align: center;
  }
  .howTitle {
    font-size: 20px;
  }
  .howSubTitle {
    font-size: 14px;
  }
  .featureTitle {
    font-size: 20px;
  }
  .trendContainer > :first-child {
    font-size: 14px;
  }

  .trendContainer a {
    font-size: 14px;
  }
  .featureCardContent > :first-child {
    font-size: 16px;
  }
  .featureCardContent > :last-child {
    font-size: 12px;
  }
  .featureMenu div {
    font-size: 10px;
  }
  .textRupee > :first-child {
    font-size: 14px;
  }
  strike{
    font-size: 12px;
  }
  .whyTitle {
    font-size: 20px;
  }
  .whySubTitle {
    font-size: 14px;
  }
  .whyList span {
    font-size: 12px;
  }
  .whatTitle {
    font-size: 20px;
  }
  .whatSubTitle {
    font-size: 14px;
  }
  .whatCardContent > :first-child {
    font-size: 16px;
  }
  
  .whatCardContent > :last-child {
    font-size: 12px;
  }
  .clientName > :first-child {
   font-size: 14px;
  }
  .clientName > :last-child {
   font-size: 12px;
  }
  .startTitle {
    font-size: 20px;
  }
  .startSubTitle {
    font-size: 12px;
  }
}



/* footer css  */
.footerContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #1E1E1E;
  padding: 50px 0px;
}
.footerGrid {
  display: grid;
  grid-template-columns: repeat(4, 3fr);
}
.footerList span {
  display: block;
  margin-bottom: 10px;
  color: #dadada;
  font-size: 14px;
  font-weight: 400;
}
.footerList > a{
  text-decoration: none;
}

.footerList > a > span {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.footerInput {
  display: flex;

  background-color: white;
  padding: 8px;
  border-radius: 10px;
  font-size: 14px;
}
.footerInput input {
  background-color: transparent;
  border: none;
  width: 100%;
  outline: none;
}
.footerInput button {
  background-color: transparent;
  border: none;
}
.footerList img {
  width: 60%;
  object-fit: contain;
  margin-bottom: 15px;
}

.copyRightContainer {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #131313;
  padding: 20px;
  align-items: center;
}
.copySubContainer {
  display: flex;
  justify-content: space-between;
}
.copyGrid {
  display: flex;
  gap: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.copyIcons {
  display: flex;
  gap: 20px;
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 776px) {
  .footerGrid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 30px;
  }
  .copySubContainer {
    display: grid;
    grid-template-columns: 12fr;
    gap: 10px;
  }
  .copyRightContainer {
    padding: 10px 0px;
  }
}
@media screen and (max-width: 556px) {
  .footerGrid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 10px;
  }
  .copyGrid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 10px;
  }
  .footerList > :first-child {
    font-size: 14px;
  }
  .footerInput {
    padding: 5px;
  }
  .footerInput input::placeholder {
    font-size: 10px;
  }
  .copyIcons {
    font-size: 18px;
  }
}
@media screen and (max-width: 456px) {
  .footerList > :first-child {
    font-size: 14px;
  }
  .footerList span {
    font-size: 12px;
  }
  .copyGrid {
    font-size: 12px;
  }
}
@media (max-width: 430px) {
    .navLogo img {
        width: 120px;
        object-fit: contain;
        margin-left: 0%;
    }
}
