* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --maroon: #321E1E;
  --gold: #FFD700;
  --gold-col: #e9b545;
  --white: hsl(0, 0%, 100%);
  --WHITE: hsl(0, 0%, 100%);
  --BLACK: hsl(0, 0%, 0%);
  --black-90: hsl(0, 0%, 10%);
  --black-70: hsl(0, 0%, 30%);
  --black-alpha-40: hsla(0, 0%, 0%, 0.4);
  --yellow-light: hsl(44, 95%, 83%);
  --green-light: hsl(158, 68%, 75%);
  --red-light: hsl(0, 84%, 80%);
  --orange-light: hsl(22, 85%, 80%);
  --select-box-bg-color: hsl(0, 0%, 100%);
  --border-color-1: hsl(0, 0%, 90%);

}





html {
  overflow-x: hidden;
}
body {
  background-color: white;
  color: white;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* logo section */

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
  width: 168px;
  height: 60px;
}
@media only screen and (max-width: 767px) {

  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }
}
@media(max-width: 1200px) {
  .logo {
    max-height: none !important;
    margin-left: -40px;
    max-width: 100%;
  }

  .logo img {
    transform: scale(.9);
  }
}
@media (max-width: 35em) {
  #header .logo img {
    padding-left: 10px;
    margin: 0;
    width: 180px;
    height: 77px;
  }
}

/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
  /* margin-right: -150px; */

}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  /* background-image: linear-gradient(to right,#321E1E,rgba(224, 164, 12, 0.6) ); */
  background-image: linear-gradient(to right, black, rgba(224, 164, 12, 0.6));
  border-radius: 8px;
  /* border: 1px solid goldenrod; */
  box-shadow: 0 0 10px 1px #e9b545;
  /* backdrop-filter: blur(10px); */
  /* width: 100%; */
}

.navbar li {
  position: relative;
  /* background: red; */
  padding: 0px;
  /* color: #321E1E; */

}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 8px 16px;
  margin-left: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.815);
  /* color: #321E1E; */
  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: var(--gold-col);
  background-color: #321E1E;
  /* border-radius: 50px; */
  /* border: 2px solid var(--gold-col); */
  box-shadow: 0 0 5px 1px #e9b545;
  /* backdrop-filter: blur(5px); */

}




/**
  * Mobile Navigation 
  */
section#home {
  height: 100vh;
  display: grid;
  place-items: center;
}

/* h1 {
    font-size: 4rem;
  } */
#ham-menu {
  display: none;
}

nav ul.active {
  left: 0;
  /* width: 360px;
    position: fixed; */
}

@media only screen and (max-width: 991px) {
  html {
    font-size: 56.25%;
  }

  header {
    padding: 2.2rem 5rem;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

  .navbar {
    margin-right: 20px;
  }

 

  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
  }

  nav #ham-menu {
    /* font-size: 3.2rem; */
    font-size: 30px;

  }



  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 10%;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
  }

  nav ul.active {
    top: 0;
    left: 0px;
    width: 80vw;
    position: fixed;
    /* background-color: red; */
    margin-top: 13%;
}
}

@media screen and (max-width: 790px) {

  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

  .navbar {
    margin-right: 20px;
  }

  html {
    font-size: 50%;
  }

  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
  }

  nav #ham-menu {
    /* font-size: 3.2rem; */
    font-size: 30px;

  }



  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
  }

  nav ul.active {
    top: 0;
    left: 0px;
    width: 80vw;
    position: fixed;
    /* background-color: red; */
    margin-top: 13%;
}
  

}

@media only screen and (max-width: 575px) {
  html {
    font-size: 46.87%;
  }

  header {
    padding: 2rem 3rem
  }

  nav ul {
    top: 65.18px;
    height: calc(100vh - 65.18px);
  }

  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
  }

  nav ul.active {
    left: 0px;
    width: 80vw;
    position: fixed;
    margin-top: 10%;
  }
  
}

/* nav end */
/* card section */





/* SocialMediaIcons Section CSS Start Here */

.SocialMediaIcons-container{
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -130px;
  top: 130px;
  width: 210px;
  z-index: 1100;
}

.SocialMediaIcons-container .container-menu li{
  list-style-type: none;
  background-color: #e9b545;
  color: #fff;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.SocialMediaIcons-container .container-menu li:hover{
  margin-left: -115px;
}
.SocialMediaIcons-container .container-menu li img{
  float: left;
  margin: 5px 12px;
  border-radius: 10px;

}
.SocialMediaIcons-container .container-menu li:nth-child(1){
  background-color: rgb(75, 136, 222);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(2){
  background: linear-gradient(rgb(222, 75, 180),rgb(200, 0, 255),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(3){
  background-color: rgb(23, 27, 141);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(4){
  background-color: rgb(32, 240, 122);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(5){
  background: linear-gradient(rgb(227, 29, 19),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li p{
  padding-top: 5px;
  margin: 0px;
  line-height: 16px;
  font-size: 14px;
  font-family: sans-serif;
}

.SocialMediaIcons-container .container-menu li p a{
  text-decoration: none;
  color: #fff;
}
.SocialMediaIcons-container .container-menu li p a:hover{
  text-decoration: underline;

}

/* SocialMediaIcons Section CSS END Here */

/* First Section CSS Start Here */
.firstSection {
  background-color: gray;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.firstSection-cntainer-header #element {
  font-size: 3rem;
  font-weight: 600;
}

#element {
  color: goldenrod;
  position: relative;
}

#particles-js {
  background-color: rgb(30, 30, 31);
  width: 100%;
  height: 60vh;
  z-index: 0;
  position: absolute;
}



/* Filter galery */
.filterGalery{
  text-align: center;
}
.portfolio-item {
  display: inline-block;
  margin: 10px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.portfolio-item.hide{
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.portfolio-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
#filter-buttons{
  /* background-color: red; */
  padding: 20px 0;
}
#filter-buttons button{
  width: 10%;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  background: rgba(244, 210, 13, 0.8);
  transition: cubic-bezier(.4s);
  border: 1px solid goldenrod;
  box-shadow: 10px 10px 10px -1px rgba(0,0,0,0.4);
}
#filter-buttons button:hover{
  transform: scaleX(1) rotate(7deg);
  transition: all .3s ease;
  background: black;
  color: #fff;
  outline: none;
}

/* Second Section css start here */
.secondSection{
  width: 100%;
  height: auto;
  background: rgba(251, 222, 60, 0.3);
  opacity: .9;
}
.sectionHeading{
  text-align: center;
}

.priceSection{
  /* display: flex; */
  justify-content: center;
  align-items: center;
  color: #000;
}

.pric-card{
  max-width: 300px;
  background-color: #fff;
  padding: 20px;
  margin: 30px 15px;
  border-radius: 10px;
  box-shadow: 10px 10px 10px -1px rgba(10,99,169,0.16), 3px 3px 10px -1px rgba(255,255,255,0.7);
}
.pric-card h3{
  margin-bottom: 15px;
}
.pric-card h1{
  margin-bottom: 10px;
  color: rgba(0,0,0,1);
  font-size: 2.5rem;
}
.pric-card h1 span{
  font-size: 15px;
  color: rgba(0,0,0,0.7);
}
.pric-card ul{
  list-style: none;
 padding: 0;
 margin: 0;
}
.pric-card ul li{
  line-height: 3;
  color: rgba(0,0,0,0.9);
}
.pric-card ul li i{
  margin-right: 10px;
  color: rgba(0,0,0,0.4);
}
.pric-card a{
  margin: 20px 0;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid blue;
  color: blue;
  padding: 10px;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 8px 8px -1px rgba(37, 13, 199, 0.16), 3px 3px 10px -1px rgba(37, 13, 199, 0.16);

}
.pric-card a:hover{
  background-color: gold;
  color: aliceblue;
}


#header {
  position: relative !important;
    background-color: black;
  transition: all 0.5s;
  /* z-index: 997; */
  transition: all 0.5s;
  padding: 24px 0;
  /* background: rgba(103, 176, 209, 0.8); */
}



/* RESPONSIVE SECTION CSS STARTS FROM HERE */

@media screen and (max-width: 64em) {
  
  #particles-js{
    height: 40vh;
  }
  .firstSection {
    height: 40vh;
  }
  .firstSection-cntainer-header #element{
    font-size: 4rem;
  }
  .SocialMediaIcons-container .container-menu{
    padding-left: 4rem;
  }
  
}
@media screen and (max-width: 48em) {
  
  #particles-js{
    height: 40vh;
  }
  .firstSection {
    height: 40vh;
  }
  .pric-card{
    max-width: 100%;
   }
   
}

@media screen and (max-width: 35em) {
  
  #particles-js{
    height: 40vh;
  }
  .firstSection {
    height: 40vh;
  }
  .pric-card{
    max-width: 100%;
   }

}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 13px;
  background: black;
  color: white;
}
@media (max-width: 35em) {
  #header .logo img {
      padding-left: 38px;
      margin: 0;
      width: 176px;
      height: 53px;
  }
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
  background: linear-gradient(to right, rgb(0, 0, 0, 0.9), rgba(98, 97, 97, 0.9) 100%);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-logo img {
  width: 200px;
  height: 80px;
  margin-left: -40px;
  margin-top: -20px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  /* color: #fc0; */
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: white;
  /* color: var(--gold-col); */
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  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: #47b2e4; */
  color: white;
  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: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--gold-col);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--gold-col);
  /* color:var(--maroon); */
  color: black;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

/* #footer .footer-top .social-links a i{
  color: black;
} */

#footer .footer-top .social-links a:hover {

  background: black;
  color: var(--gold-col);
  padding: 5px;
  /* border-radius: 50%; */
  text-decoration: none;


  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  /* margin-right: 4px; */
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--gold-col);

}

#footer .copyright {
  /* float: left; */
  /* text-align: center; */

}

#footer .copyright a {

  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--gold-col);
  /* text-shadow: #C07F00; */
  text-decoration: none;
  /* background: #c080008e; */
  padding: 5px;
}

/* #footer .credits {
  float: right;
  font-size: 13px;
} */

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
.row .col-lg-3 .card img{
  height: 200px;
  width: 100%;
  padding-right: 23px;

}






/* whatsapp integration css  */

.whatsapp_float {
  position: fixed;
  width: 15%;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp_float span{
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: sans-serif;
  padding-left: 10px;
}

.whatsapp_float .msg-alrt{
  background-color: red;
 width: 18%;
 height: auto;
 border-radius: 100px;
 text-align: center;
 position: absolute;
 top: -13px;
 right: 0;
 
}

.whatsapp_float .msg-alrt h4{
  margin: 0;
  font-size: 1.2rem;
  padding: 5px;
  
}



/* for mobile */
@media screen and (max-width: 767px){
  .whatsapp-icon {
    /* margin-top: 10px; */
  }
  .whatsapp_float {
    width: 35%;
    height: 45px;
    bottom: 10px;
    right: 10px;
    font-size: 22px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  }

  .whatsapp_float span{
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: sans-serif;
    padding-left: 5px;
  }
}


/* Iso logo (In footer) */
/* .iso {
  width: 170px;
  height: 170px;
  margin: 10px 0px 0px 0px;
} */
/* Iso footer end */

/* Navbar Design in mobile response Start */
@media only screen and (max-width: 575px) {
  #nav-bar li .nav-link {
    background: linear-gradient(to right, #543800, #38301e);
    width: 79vw;
    height: 50px;
    border: none;
    font-size: 1.6em;
    color: white;
    cursor: pointer;
    border-radius: 0 25px;
    position: relative;
    transition: all .6s;
    margin: 0px 0px 8px 0px;
    display: flex;
    justify-content: center;
    border: 3px solid white;
}
  #nav-bar li .nav-link:hover{
    border-radius: 25px 0;
  }
  #nav-bar li .nav-link::before{
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #240b36, #543800);
	width: 100%;
	height: 100%;
	/* filter: blur(22px); */
	transform: scale(0.9, 0.8) translateY(20px);
	z-index: -1;
	opacity: 0;
	transition: all 0.6s;
  margin: 0px 0px 2px 0px;
  }
  #nav-bar li .nav-link:hover::before{
    opacity: 1;
  }
}

@media only screen and (max-width: 550px) {
  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}
}
/* Navbar Design in mobile response End */


/* Pop up form */
#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 9999;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid goldenrod;
  box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}

#close-popup {
  position: absolute;
  top: 1px;
  right: 13px;
  cursor: pointer;
  /* width: 16px; */
  font-size: 28px;
  z-index: 99999;
}

#popup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#popup-form button {
  padding: 10px 20px;
  /* background-color: #007bff; */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.formpop input{
  margin-bottom: 10px;
}
.popupimg{
  width: 300px;
  height: 271px;
  margin: -18px 34px 0px -65px;
}

.main-button-gradient button {
  font-size: 13px;
  color: #fff;
  /* background: rgb(219, 138, 222); */
  background: linear-gradient(-145deg, rgb(242 195 77 / 60%) 0%, rgb(22 21 20) 100%);
  padding: 12px 30px;
  /* padding: 0px; */
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.isopopup{
  width: 100px;
  height: 100px;
}
.ml11{
  margin: 0px 0px 0px -36px;
}

@media(max-width:600px){
  #popup-container {
    display: none;
    position: fixed;
    top: -147px;
    left: 0;
    width: 81%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 9999;
}
#popup-content {
  position: absolute;
  top: 67%;
  left: 62%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid goldenrod;
  box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}
.popupimg {
  width: 300px;
  height: 271px;
  margin: -9px -24px 0px -12px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11{
  margin: 0px !important;
}
}


@media(max-width:380px){
  #popup-content {
    width: 83vw;
    position: absolute;
    top: 77%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 5px solid goldenrod;
    box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}
}


@media(width:280px)
{
  #popup-content {
    position: absolute;
    top: 73%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 5px solid goldenrod;
    box-shadow: 10px 7px 10px 7px rgb(126 108 65);
    width: 269px;
}
.popupimg {
  width: 300px;
  height: 271px;
  margin: -9px -24px 0px -34px !important;
}
.isopopup {
  width: 100px;
  height: 100px;
  margin: 0px !important;
}
}

@media (min-width: 760px) and (max-width: 920px) {
  .popupimg {
    width: 300px;
    height: 271px;
    margin: 0px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11{
  margin: 0px 0px 11px 103px;
}
}
@media screen and (max-width: 992px) {
 
  .popupimg {
    width: 228px;
    height: 235px;
    margin: 0px 0px 0px 62px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11 {
  /* margin: 0px 0px 11px 103px; */
  margin: 0px 0px 11px 110px;
}
.isopopup {
  width: 85px;
  height: 85px;
  margin: -15px 0px 0px 0px;
}

}
@media screen and (width: 540px) {
  .ml11 {
    margin: 0px ;
  }
}

/* Popup form End */


/* New Dropdown Start */
/* New Add */
.dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  background-color: #fff; /* Background color */
  border: 7px solid #e9b545 !important; /* Border */
  z-index: 1000; /* Positioning */
}

.dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

/* Set dropdown menu width to 80% of the screen */
.dropdown-menu {
  position: fixed !important; 
  width: 70vw; /* 80% of the viewport width */
  /* left: auto;
  right: auto;  */
  display: grid ;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  gap: 20px;
}

/* Optional: Adjust dropdown item styles if needed */
.dropdown-item {
  width: 100%; /* Ensure dropdown items take full width of the dropdown */
}
.posabs123{
  display: flex;
  justify-content: center;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: grid;
  padding: 20px;
  width: 97%;
  left: 0;
  margin: 0px 20px;
}
.dropdown1:hover .dropdown-menu {
  display: contents;
  /* padding: 0px; */
  width: auto;
  max-height: 400px;
  /* overflow-x: scroll; */
  margin: 0px ;
}


.dropdown1 .dropdown-menu.show {
  display: none; /* Show when active */
}



.dropdown-menu {
  display: none; /* Hide by default */
  /* max-height: 400px; */
  /* overflow-y: auto; Enable scrolling */
  margin: 0; /* Remove margin */
}
.dropdown-menu.show {
  display: block; /* Show when active */
}



/* New */
.dropdown-buttons {
  display: flex;
  flex-direction: column;
  width: 23%;
}

.dropdown-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;
}

.dropdown-button.active {
  background-color: #007bff; /* Change this color as needed */
  color: white;
}

.dropdown-item-group {
  display: none;
}

.dropdown-item-group.active1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--gold-col);
  row-gap: 66px;
}
.dropdown:hover .dropdown-menu{
  display: none;
}
@media(min-width:968px){
  .dropdown:hover .dropdown-menu {
    display: flex;
    padding: 30px 20px;
    width: 97%;
    left: 0;
    margin: 0px 20px;
    z-index: 999;
    /* display: block; */
    /* max-height: 90vh;
        overflow-y: scroll; */
  }
}
.dropdown-button {
  color: black;
  font-size: 20px;
  font-weight: 700;
  position: relative; /* Positioning context for ::after */
  margin-bottom: 5px;
}
.dropdown-button:hover {
  color: var(--gold-col);
}
.dropdown-button::after {
  content: ''; /* Required for ::after to display */
  position: absolute; /* Position it relative to the button */
  left: 0;
  right: 0;
  bottom: 4px; /* Adjust this value to create space below the button */
  height: 1px; /* Set height for the "line" */
  background-color: #ccc; /* Set color for the line */
}

.dropdown-button:last-child::after {
  display: none; /* Hide the line for the last button */
}

@media(max-width:992px){
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
  .dropdown1 .dropdown-menu.show {
    display: none;
}
.dropdown1:hover .dropdown-menu {
    display: contents;
    /* padding: 0px; */
    width: auto;
    max-height: 400px;
    /* overflow-x: scroll; */
    margin: 0px;
}
.dropdown-item {
  color: #ffffff !important;
}
}
@media (min-width: 1023px) and (max-width: 1366px)  {
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
}



/* Social Media Start */
.Social-media{
  display: flex;
  justify-content: center;
}
.Social-media a{
  display: flex;
    background: #fff;
    height: 39px;
    width: 35px;
    margin: 15px 9px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 124, 196, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s;
    padding: 0px 8px;
}
.Social-media a i{
  font-size: 22px;
  color:var(--gold-col);
  transition: transform 0.5s;
}
.Social-media a:hover{
  box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
              inset -4px -4px 6px -1px rgba(255,255,255,0.7),
                    -0.5px -0.5px 0px -1px rgba(255,255,255,1),
                    0.5px 0.5px 0px rgba(0,0,0,0.15),
                    0px 12px 10px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0, 124, 196, 0.1);
  transform: translateY(2px);
}
.Social-media a:hover i{
  transform: scale(0.90);
}
.Social-media a:hover .fa-facebook{
  color: #3b5998;
}
.Social-media a:hover .fa-twitter{
  color: #00acee;
}
.Social-media a:hover .fa-whatsapp{
  color: #4fce5d;
}
.Social-media a:hover .fa-instagram{
  color: #f14843;
}
.Social-media a:hover .fa-youtube{
  color: #f00;
}
/* Social Media End */

.footer-links .strong-footer{
  line-height: 23px;
}
/* .footer-links{
  border-right: 1px solid #d0d0ce;
} */

.disflex22{
  display: flex;
  column-gap: 10px;
}
.disflex22 img{
  width: 33%;
}
.footer-middle-menu{
  border-top: 1px solid #d0d0ce;
  margin-top: 30px;
  text-align: center;
}
.footer-middle-menu ul{
  padding-top: 20px;
}
.footer-middle-menu ul li a{
  border-right: 1px solid #d0d0ce;
  padding: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-family: Oxanium, sans-serif;
}
.footer-middle-menu ul li{
  display: inline-block;
}
.credits p{
  color: white;
  margin-top: 8px;
  text-align: justify;
  font-size: 13px;
}


/* Dropdown */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
} */

/* Custom styles for the multi-level dropdown */
/* New */
.dropdown-menu{
  position: relative;
}

  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }

.dropdown-menu.show {
  display: contents !important;
}


@media only screen and (max-width: 575px) {
  nav ul.active {
    top: 0px;
    left: inherit;
    width: 100vw;
    position: absolute;
    margin-top: 50PX;
    right: 0px;
}
}
.totalwid{
  display: flex;
}
.left-side-bar {
  display: flex;
  flex-direction: column;
  width: 23%;
  padding-right: 30px;
  border-right: 3px solid #e9b545 !important;
}
.right-side-bar {
  width: 75%;
}

.left-side-bar h4, .right-side-bar h4{
  font-size: 19px;
  font-weight: 700;
}
.right-side-bar a {
  font-family: Oxanium, sans-serif;
  margin-right: 0px;
  padding: 2px 0px;
  font-weight: 500;
  transition: transform 0.5s ease, font-weight 0.5s ease, text-decoration 0.5s ease; /* Smooth transition for transform, font-weight, and text-decoration */
}

.right-side-bar a:hover {
  transform: translateX(10px) scale(1.05); /* Move slightly to the right and scale up */
  text-decoration: underline;
  font-weight: 700;
  box-shadow: none !important;
}

.right-side-bar a i{
  margin-right: 10px;
}

.dropdown-iconsize{
  width:10%;
  margin-right: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
  background-color: transparent !important;
}
/* Default styles */
.dropdown-submenu .dropdown-menu {
  display: none; /* Hidden by default */
  transition: all 0.3s ease;
}

/* Style when sub-dropdown is opened */
.dropdown-menu.show .dropdown-submenu {
  display: block;
    border-bottom: 2px solid rgb(255 255 255 / 30%);
    background: black;
}

/* Change the color of the clicked sub-dropdown */
.dropdown-submenu > a.active {
  color: #916711 !important; /* Change the color to blue */
  font-weight: 700;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: transparent !important;
}
.fixed-top {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.dropdown-iconsizemob{
  width: 7%;
  margin-right: 10px;
}

@media(max-width:768px){
  .dropdown-item{
    width: 76vw !important;
    font-size: 13px !important;
  }
  .fontmob li a{
    font-size: 10px !important;
    padding: 2px 16px;
  }
  .disflex22 img {
    width: 27%;
}
.Social-media {
  display: flex;
  justify-content: left;
}
}




.dropdown-item {
  color: #000 !important;
}

@media (max-width: 992px) {
  .dropdown-item {
      color: #fff !important;
  }
  .credits p {
    color: white;
    margin-top: 8px;
    text-align: justify;
    font-size: 0.8em;
}
}
/* New Dropdown End */

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: .3s;
  display: inline-block;
  line-height: 21.2px;
  font-family: Oxanium, sans-serif;
  text-decoration: none;
  font-size: 13px;
}
body{
  font-family: Oxanium, sans-serif;
}

#footer .copyright, #footer .footer-top .footer-contact p, #footer .footer-top h4, .btn .btn-primary, .footer-links p, .pricing-card .features li, .pricing-card .heading p {
  font-family: Oxanium, sans-serif;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Oxanium, sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color, inherit);
  font-family: Oxanium, sans-serif;
}

@media (max-width: 35em) {
  header {
      padding: 1rem 0rem;
  }
}

.dropdown-item:hover {
  box-shadow: none !important;
  cursor: pointer;
}

#footer .copyright, #footer .footer-top .footer-contact p, #footer .footer-top h4, .btn .btn-primary, .footer-links p, .navbar a, .navbar a:focus, .pricing-card .features li, .pricing-card .heading p {
  font-family: Oxanium, sans-serif;
}



/* nav ul.active {
  left: 0;
} */
@media only screen and (max-width: 991px) {
  .navbar ul {
      position: fixed;
      left: -200vw;
      margin-top: 10%;
      /* margin-top: 700px; */
      width: 80vw;
      /* height: calc(100vh - 73.6px); */
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* justify-content: space-around; */
      transition: 1s;
      gap: 0;
  }
  #nav-bar li .nav-link {
    background: linear-gradient(to right, #543800, #38301e);
    width: 79vw;
    height: 50px;
    border: 3px solid #fff;
    font-size: 1.6em;
    color: #fff;
    cursor: pointer;
    border-radius: 0 25px;
    position: relative;
    transition: .6s;
    margin: 0 0 8px;
    display: flex;
    justify-content: center;
}
#filter-buttons button {
  width: 15%;
}
}
a {
  color: #fff;
  letter-spacing: 0;
  /*cursor: none;*/
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  /* CSS rules for tablet devices */
  .Social-media {
    display: flex;
    justify-content: left;
}
}

/* New */
@media (min-width: 968px) {
  .dropdown-about:hover .dropdown-menu {
    position: absolute !important;
    width: auto;
    left: 0;
  }
}







/* New Page Changes */


/* New Changes By BS */


/* Hero Setion Start */
.herobg {
  max-height: 140vh;
  height: 1030px;
  position: relative;
  /* height: 100vh;  */
  width: 100%;
  overflow: hidden; /* Ensures the image does not go outside the section */
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image cover the entire section */
  z-index: -1; /* Places the image behind any other content */
}

.bg-image1 {
  /* padding-left: 20px; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image cover the entire section */
  z-index: -1; /* Places the image behind any other content */
}

/* .herobg{
  background-image: url(../images/herobg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
} */
.herobg h4{
  font-size: 3rem;
    font-weight: 700;
}
.mthero{
  padding-top: 100px;
  padding-bottom: 200px;
}
.emailfield{
  border-radius: 20px !important;
  padding: 10px !important;
  padding-left: 20px !important;
  padding-right: 60px !important;
  font-size: 1.2rem !important;
  border: var(--bs-border-width) solid #007fff !important;
}
.herobg .button1 a{
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #FA6050 !important;
  border: #FA6050 !important;
  color: #000;
  font-size: 20px;
}
.pos321{
  top: 400px;
    left: -100px;
    max-width: 195px;
    width: 100%;
    background-color: white;
    padding: 14px;
    border-radius: 10px;
/* 
    position: relative;
    margin: 0px 0px 10px calc((100% - 1116px)* 0.5);
    left: 62px;
    grid-area: 5 / 1 / 6 / 2;
    justify-self: start;
    align-self: start; */
}
.pos321 p{
  font-size: 10px;
}
.pos321 img{
  width: 100%;
}
.pos322{
  top: 530px;
  right: -70px;
}
.pos322 a{
  padding: 10px 20px;
  background-color: white;
  border-radius: 20px;
  font-size: 13px;
}
.pos321 a{
  background-color: #8b1939 !important;
  border: #8b1939 !important;
  text-transform: uppercase;
  font-size: 10px;
}
/* Hero Section End */

.getstarted{
  padding: 16px 30px !important;
  background-color: #000 !important;
  border: #000 !important;
  border-radius: 30px !important;
}
.build1{
  margin: 50px 0px;
}
.onlinestore{
  margin: 50px 0px;
}
.posabsss{
  top: 51%;
    right: -20px;
}
.w-85{
  width: 85%;
}
.onlinestore ol li{
  font-size: 16px;
  font-weight: 700;
}
.onlinestore h3{
  font-size: 3rem;
    font-weight: 700;
}
.creating{
  align-items: center;
}
.creating .linkk{
  color: #000;
  cursor: pointer;
}
.creating:hover .linkk{
  color: #007fff;
}

.linkk {
  position: relative;
  color: #000;
  /* text-decoration: none; */
  font-weight: bold;
  /* font-size: 1rem; */
}

.linkk::after {
  font-size: 20px;
  content: "→"; /* Unicode character for a right arrow */
  display: inline-block;
  margin-left: 0.3em; /* Adjust spacing between text and arrow */
  transition: margin-left 0.3s ease; /* Smooth transition for hover effect */
}

/* Optional: Add a hover effect */
.linkk:hover::after {
  margin-left: 0.75em; /* Move the arrow slightly on hover */
  color: #007fff;
}

.topselling{
  margin: 50px 0px;
  background-image: url(../images/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.topselling h3{
  font-size: 3rem;
  color: white;
  margin-bottom: 40px;
}

/* Testimonial Start */

:root {
  --clr-bg: #222;
  --clr-primary: #f5f5f5;
  --clr-secondary: #075985; 
}

.body23 {
  /* min-height: 100svh; */
  display: grid;
  place-content: center;
  gap: 1.5rem;
  /*font-size: clamp(0.9rem, 2.5vw,1.4rem);*/
  color: var(--clr-primary);
  padding: 1rem;
  background-image: radial-gradient(circle, rgba(175, 208, 84, .25) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 40px 40px;
}

.body23::after {
  content: "";
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-image: url('data:image/svg+xml,<svg id="logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" version="1.1"><g id="surface1"><path fill="rgb(175, 208, 84)" d="M 47.894531 0.789062 C 46.320312 0.878906 45.480469 0.949219 44.601562 1.042969 C 37.023438 1.863281 29.746094 4.394531 23.386719 8.414062 C 20.214844 10.421875 17.402344 12.65625 14.757812 15.285156 C 7.773438 22.222656 3.027344 30.992188 1.113281 40.5 C -0.460938 48.332031 -0.132812 56.378906 2.070312 64.003906 C 4.0625 70.890625 7.507812 77.195312 12.277344 82.675781 C 16.65625 87.714844 22.109375 91.898438 28.074219 94.804688 C 37.914062 99.59375 49.078125 101.03125 59.875 98.886719 C 69.480469 96.976562 78.265625 92.300781 85.253906 85.371094 C 92.304688 78.386719 97.027344 69.65625 98.960938 60.039062 C 99.636719 56.675781 99.902344 53.996094 99.902344 50.285156 C 99.902344 47.910156 99.855469 46.925781 99.660156 45.128906 C 98.671875 35.808594 95.136719 27.136719 89.324219 19.773438 C 86.917969 16.722656 83.851562 13.675781 80.777344 11.285156 C 75.664062 7.304688 69.949219 4.410156 63.695312 2.628906 C 60.5625 1.742188 57.058594 1.128906 53.609375 0.867188 C 52.796875 0.804688 48.566406 0.746094 47.894531 0.789062 Z M 54.105469 24.300781 C 54.105469 24.355469 53.550781 25.921875 52.875 27.773438 L 51.636719 31.148438 L 41.390625 31.148438 C 34.375 31.148438 31 31.167969 30.683594 31.210938 C 27.867188 31.601562 25.414062 33.695312 24.371094 36.621094 C 24.054688 37.503906 23.910156 38.265625 23.839844 39.371094 C 23.800781 40.046875 23.789062 43.769531 23.804688 50.574219 C 23.828125 61.464844 23.816406 60.867188 24.101562 62.066406 C 24.316406 62.976562 24.832031 64.132812 25.339844 64.875 C 26.515625 66.597656 28.074219 67.726562 29.9375 68.203125 C 30.679688 68.394531 31.542969 68.433594 34.851562 68.433594 C 37.878906 68.433594 37.960938 68.441406 37.925781 68.542969 C 37.90625 68.601562 37.34375 70.148438 36.671875 71.972656 L 35.460938 75.296875 L 32.726562 75.296875 C 30.136719 75.296875 29.960938 75.285156 29.269531 75.164062 C 26.808594 74.714844 24.59375 73.707031 22.644531 72.152344 C 22.015625 71.648438 20.859375 70.496094 20.335938 69.847656 C 18.960938 68.15625 17.824219 65.824219 17.285156 63.601562 C 16.824219 61.660156 16.835938 62.175781 16.859375 49.355469 C 16.882812 36.71875 16.847656 37.765625 17.292969 35.953125 C 17.882812 33.523438 18.941406 31.398438 20.515625 29.5 C 21.140625 28.746094 21.625 28.257812 22.417969 27.597656 C 24.695312 25.699219 27.460938 24.53125 30.316406 24.265625 C 30.589844 24.234375 36.054688 24.210938 42.460938 24.207031 C 53.515625 24.199219 54.105469 24.207031 54.105469 24.300781 Z M 66.320312 24.363281 C 69.789062 24.90625 72.703125 26.371094 75.039062 28.757812 C 76.65625 30.402344 77.730469 32.21875 78.382812 34.417969 C 78.683594 35.445312 78.824219 36.347656 78.867188 37.523438 C 78.964844 40.515625 78.066406 43.320312 76.21875 45.777344 C 75.949219 46.136719 75.707031 46.445312 75.675781 46.460938 C 75.558594 46.539062 75.636719 46.605469 76.246094 47 C 80.933594 50.003906 83.621094 55.320312 83.308594 60.960938 C 83.027344 65.992188 80.328125 70.570312 76.113281 73.175781 C 74.453125 74.199219 72.570312 74.894531 70.546875 75.21875 L 69.757812 75.347656 L 56.425781 75.363281 L 43.085938 75.386719 L 43.273438 74.878906 C 43.371094 74.601562 43.949219 73.027344 44.546875 71.386719 L 45.640625 68.40625 L 57.613281 68.375 L 69.582031 68.347656 L 70.167969 68.191406 C 72.121094 67.652344 73.628906 66.617188 74.753906 65.019531 C 75.40625 64.097656 75.960938 62.777344 76.175781 61.632812 C 76.328125 60.832031 76.328125 59.308594 76.175781 58.503906 C 75.867188 56.859375 75.085938 55.316406 73.960938 54.152344 C 72.835938 52.976562 71.722656 52.308594 70.191406 51.894531 L 69.582031 51.730469 L 52.117188 51.703125 L 34.65625 51.671875 L 35.691406 48.835938 C 36.265625 47.273438 36.835938 45.703125 36.96875 45.351562 L 37.207031 44.695312 L 51.269531 44.679688 L 65.328125 44.667969 L 65.941406 44.511719 C 68.972656 43.753906 71.089844 41.820312 71.71875 39.214844 C 71.890625 38.496094 71.898438 37.390625 71.722656 36.699219 C 71.019531 33.839844 68.550781 31.78125 65.21875 31.253906 C 64.984375 31.21875 63.597656 31.171875 62.058594 31.15625 L 59.3125 31.121094 L 60.523438 27.789062 C 61.195312 25.960938 61.769531 24.398438 61.800781 24.324219 L 61.863281 24.183594 L 63.710938 24.21875 C 65.164062 24.242188 65.722656 24.269531 66.320312 24.363281 Z M 66.320312 24.363281 "/></g></svg>');
}
h1 {
  font-size: clamp(1rem, 2.5vw + 0.25rem, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.testimonials{
    --_trans-speed: 300ms;
    --_avatar-size: 4rem;
    --_quote-bg-clr: var(--clr-secondary);
    --_quote-padding: 1rem;
    --_quote-pointer-offset: 1rem;
    --_quote-offset: 1rem; /* this is to allow for the bottom arrow indicator*/
    --_quotemarks-size: 60px;
    --_quotemarks-offset-x: -1rem;
    --_quotemarks-offset-y: -2rem;
    --_clip-text: polygon(0 0, 0 0, 0 100%);
    --_clip-text-width: 80px;
    --_dots-size: 1.5rem;
    --_dots-bg-clr: var(--clr-secondary);
    --_dots-inset: 100%;
    --_dots-border-clr: var(--clr-secondary);
  
    width: min(calc(100% - 2rem), 800px);
    margin-inline: auto;
    background-color: rgb(0, 0, 0);
    border: 1px solid var(--clr-secondary);
    padding: 3rem;
}
@media (min-width:600px) {
    .testimonials {
        --_quotemarks-offset-x: -1rem;
        --_quotemarks-offset-y: -1rem;
        --_quotemarks-size: 80px;
      --_quote-padding: 1rem 1.5rem 3rem 3rem ;
        --_box-clip-start-x: 100px;
        --_clip-text: polygon(0 0, 70% 0, 0 100%);
    }
}


.quotes{
    --_box-clip: polygon(var(--_box-clip-start-x) 0,
        100%  0,
        100% calc(100% - var(--_quote-offset)),
        calc(100% - var(--_quote-pointer-offset)) calc(100% - var(--_quote-offset)),
        calc(100% - (var(--_quote-pointer-offset) + 1rem)) 100%,
        calc(100% - (var(--_quote-pointer-offset) + 2rem)) calc(100% - var(--_quote-offset)),
        0 calc(100% - var(--_quote-offset))
    );
    display: grid;
    place-content: center;
    grid-template-areas: 'stack';
    width: 100%;
    transition: width var(--_trans-speed) ease-in-out;
}

.quotes > article {
    grid-area: stack;
    transition: all 300ms;
    margin-block-end: 1rem;
}
.quotes .clip {
    height: 100%;
    width: var(--_clip-text-width);
    shape-outside: var(--_clip-text);
    float: left;
    display: block;
}
.quotes blockquote{
    margin-bottom: 1rem;
    text-align: right;
    transition: scale var(--_trans-speed) ease-in-out;
    scale: var(--_scale, 0);
    display: flex;
}

/* quote mark*/
.quotes blockquote::before{
    content: '';
    position: absolute;
    top: var(--_quotemarks-offset-y);
    left: var(--_quotemarks-offset-x);
    z-index: 2;
    width: var(--_quotemarks-size);
    height: var(--_quotemarks-size);
    transition: translate, opacity, top;
    transition-timing-function: ease-in-out;
    transition-rudarion: var(--_trans-speed);
    transition-delay: var(--_trans-delay-quotes, 0ms);
    opacity: var(--_opacity,0);
    scale: var(--_scale,0);
    background-image: url('data:image/svg+xml,<svg fill="white" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>quote</title><path d="M9.563 8.469l-0.813-1.25c-5.625 3.781-8.75 8.375-8.75 12.156 0 3.656 2.688 5.375 4.969 5.375 2.875 0 4.906-2.438 4.906-5 0-2.156-1.375-4-3.219-4.688-0.531-0.188-1.031-0.344-1.031-1.25 0-1.156 0.844-2.875 3.938-5.344zM21.969 8.469l-0.813-1.25c-5.563 3.781-8.75 8.375-8.75 12.156 0 3.656 2.75 5.375 5.031 5.375 2.906 0 4.969-2.438 4.969-5 0-2.156-1.406-4-3.313-4.688-0.531-0.188-1-0.344-1-1.25 0-1.156 0.875-2.875 3.875-5.344z"></path></g></svg>');
  background-repeat: no-repeat;
}


.quotes blockquote > p{
    position: relative;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: var(--_quote-padding);
    isolation: isolate;
    background: var(--_quote-bg-clr);
    clip-path: var(--_box-clip);
    text-wrap: balance;
}

.quotes .user{
    display: flex;
    align-items: start;
    gap: 1rem;
    justify-content: end;
    text-align: right;
}

.quotes .user  *{
  opacity: var(--_opacity,0);
  transition: 
    translate var(--_trans-speed) ease-in-out, 
    opacity var(--_trans-speed) ease-in-out,
    scale var(--_trans-speed) ease-in-out;;
}

/* user - name */
.quotes .user p:first-child{
    font-size: 1.1rem;
    color: var(--clr-primary);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    translate: var(--_translate, 0 2rem);
    transition-delay: var(--_trans-delay-name,0ms);
}
/* user - role */
.quotes .user p:last-child{
    font-weight: 300;
    font-size: .8rem;
    color: var(--clr-secondary);
    translate: var(--_translate, 0 2rem);
    transition-delay: var(--_trans-delay-role, 0ms);
}
/* user - image*/
.quotes .user img{
    border-radius: 2px;
    border: 1px solid var(--clr-primary);
    width: var(--_avatar-size, 60px);
    height:var(--_avatar-size, 60px);
    object-fit: cover;
    transition-delay: var(--_trans-delay-img,0ms);
    scale: var(--_scale,0);
}
/* checked all */
input[type=radio]:checked + article{
  --_scale: 1;
  --_translate: 0 0;
  --_opacity: 1;
  --_trans-delay-quotes: 300ms;
  --_trans-delay-name: 300ms;
  --_trans-delay-role: 400ms;
  --_trans-delay-img: 500ms;
}


.dots {
    padding: .25rem .5rem;
    border-radius: 3px;
    border: 1px dashed transparent;
    width: fit-content;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: border-color 300ms ease-in-out;
}
.dots > label {
    border-radius: 1rem;
    border: 1px solid var(--_dots-border-clr);
    position: relative;
    width: var(--_dots-size);
    height: var(--_dots-size);
    aspect-ratio: 1;
    cursor: pointer;
    transition: border-color var(--_trans-speed) ease-in-out, border-color var(--_trans-speed) ease-in-out;
}


.dots > label::before{
    content: '';
    position: absolute;
    border-radius: inherit;
    inset: var(--_dots-inset);
    background-color: var(--_dots-bg-clr);
    transition: inset 300ms ease-in-out;
}

.dots > label:hover::before,
.quotes:has(input#option-1:checked) + .dots > label:nth-child(1)::before,
.quotes:has(input#option-2:checked) + .dots > label:nth-child(2)::before,
.quotes:has(input#option-3:checked) + .dots > label:nth-child(3)::before,
.quotes:has(input#option-4:checked) + .dots > label:nth-child(4)::before,
.quotes:has(input#option-5:checked) + .dots > label:nth-child(5)::before  {
    --_dots-inset: .25rem;
}
/* focus using keyboard adds border */
.quotes:has(input:focus-visible) + .dots{
    border-color: var(--clr-primary);
}
.sucessbtn a{
  background-color: white;
  padding: 16px 30px;
  color: black;
  cursor: pointer;
  text-decoration: none;
  border-radius: 30px;
}

/*  */
.storesetup{
  margin: 50px 0px;
}
.storesetup h4{
  font-size: 3rem;
  font-weight: 700;
}
.storesetup h5{
  font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.storesetup .sellbtn{
   background-color: #000;
   border: #000;
   padding: 16px 30px;
   border-radius: 26px;
   text-decoration: none;
   color: white;
}


/*  */
.powerfulfeatures h4{
  font-size: 3rem;
  font-weight: 700;
}
.powerfulfeatures h5{
  font-size: 1.3rem;
  font-weight: 600;
  padding-top: 23px;
  border-top: 2px solid #00000073;
}
.powerfulfeatures .sellbtn{
  margin: 30px 0px;
  background-color: #000;
  border: #000;
  padding: 16px 30px;
  border-radius: 26px;
  text-decoration: none;
  color: white;
}
.posabsww{
  top: 40%;
  left: -30px;
}
.posabsxx{
  top: 30%;
  left: 60%;
}


/* FAQ Start */
.faq{
  margin: 50px 0px;
}
/* Detail styling */
.details{
  --padding: 10px;
  /* border: 1px solid #8d8d8d; */
  border-radius: 4px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

/* .details + .details{
  margin-top: 15px;
} */

.details__title{
  padding: 20px;
  font-size: 1.3rem;
  --width: 20px;
  --height: 3px;
  --radius: 1px;
  --color: currentColor;
  margin:0;
  /* padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding); */
  cursor: pointer;
  transition: all .2s ease-in-out;
  position: relative;
}

.details__title:before,
.details__title:after{
  content:'';
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all .2s ease-in-out;
}

.details__title:after{
  rotate: 90deg;
}

.details__container[open] .details__title:before{
  rotate: 45deg;
  /* rotate: 135deg; */
}

.details__container[open] .details__title:after{
  rotate: 135deg;
  /* rotate: 225deg; */
}

.details__container[open] .details__title{
  background-color: #f3f3f3;
}

.details__summary::marker{
  content:'';
}

.details__desc{
  display: grid;
  grid-template-rows: 0fr;
  transition: all .2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc{
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner{
  min-height: 0;
}
.maxwid1{
  max-width: 900px !important;
    width: 900px !important;
    border: 2px solid rgba(0, 0, 0, 0.5);
    padding: 0px !important;
}
.faq h4{
  font-size: 3rem;
  font-weight: 700;
  padding: 30px 0px;
}
.details__container{
 
}
/* FAQ End */


/*  */
.foryou{
  background-color: rgb(242,242,242);
}
.foryou h4{
  font-size: 3rem;
  font-weight: 700;
  padding: 30px 0px 90px 0px;
}
.boxnew{
  padding: 20px;
}
.boxnew h5{
  padding-top: 20px;
  border-top: 2px solid rgb(0 0 0 / 25%);
  font-size: 1.5rem;
    font-weight: 700;
}
.boxnew a{
  margin: 20px 0px;
  color: black;
}
.help-center-link {
  position: relative;
  color: #075985; /* Set the link color */
  /* text-decoration: none; */
  font-weight: bold;
  font-size: 1rem;
}

.help-center-link::after {
  font-size: 20px;
  content: "→"; /* Unicode character for a right arrow */
  display: inline-block;
  margin-left: 0.3em; /* Adjust spacing between text and arrow */
  transition: margin-left 0.3s ease; /* Smooth transition for hover effect */
}

/* Optional: Add a hover effect */
.help-center-link:hover::after {
  margin-left: 0.75em; /* Move the arrow slightly on hover */
}

.boxnew p{
  margin: 30px 0px;
}


/*  */

.launchstore{
  padding: 110px 0px;
  background-color: black;
}
.launchstore h4{
  font-size: 3rem;
  font-weight: 700;
  color: white;
}
.launchstore a{
   margin: 20px 0px;
   padding: 20px 30px;
   background-color: white;
   color: black;
   text-decoration: none;
   border-radius: 30px;
}
.build-p{
  font-size: 1.4rem;
}

/* responsive */
@media (max-width:600px) {
  .cont-wid{
    width: 85% !important;
  }
  .herobg h4 {
    font-size: 4rem;
    font-weight: 700;
}
.herobg p {
  font-size: 2rem;
}
  .build-heading{
    font-size: 4rem;
    font-weight: 700;
  }
  .build-p{
    font-size: 2rem;
  }
  .herobg .button1 a{
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #FA6050 !important;
    border: #FA6050 !important;
    color: #000;
    font-size: 17px;
  }

  /* .pos321 {
    top: 300px;
    left: 25%;
    max-width: 195px;
    width: 100%;
    background-color: white;
    padding: 14px;
    border-radius: 10px;
}


.pos322 a {
  position: relative;
  top: 130px;
  right: 83%;
  padding: 10px 20px;
  background-color: white;
  border-radius: 20px;
  font-size: 13px;
} */
.build1 {
  margin: 0px 0px;
}
.getstarted{
  padding: 10px 30px !important;
  background-color: #000 !important;
  border: #000 !important;
  border-radius: 30px !important;
  font-size: 11px !important;
}

.onlinestore {
  margin: 0px 0px;
}
.w85img{
  width: 95%;
}
.w75img{
  max-width: 50% !important;
}
.posabsss {
  top: 41%;
  right: -170px;
}
.onlinestore h3 {
  font-size: 4rem;
  font-weight: 700;
}

.topselling h3 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
}
.sucessbtn a {
  background-color: white;
  padding: 10px 30px;
  color: black;
  cursor: pointer;
  text-decoration: none;
  border-radius: 30px;
}
.quotes blockquote::before {
  content: '';
  position: static;
  
}
.storesetup h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.storesetup p {
  font-size: 1.5rem;
  
}
.storesetup .sellbtn {
  background-color: #000;
  border: #000;
  padding: 10px 30px;
  border-radius: 26px;
  text-decoration: none;
  color: white;
}
.storesetup {
  margin: 10px 0px;
}

.powerfulfeatures h5 {
  font-size: 2rem;
  font-weight: 600;
  padding-top: 23px;
  border-top: 2px solid #00000073;
}
.powerfulfeatures p {
  font-size: 1.5rem;
  
}

.growth-btn{
  display: flex;
  justify-content: center;
}
.powerfulfeatures .sellbtn {
  margin: 30px 0px;
  background-color: #000;
  border: #000;
  padding: 10px 30px;
  border-radius: 26px;
  text-decoration: none;
  color: white;
}

.bottol-content-div{
  margin-top: 50px !important;
}

.posabsww .bottol-3img{
  width: 45% !important;
}

.maxwid1{
  max-width: 340px !important;
    width: 340px !important;
    border: 2px solid rgba(0, 0, 0, 0.5);
    padding: 0px !important;
}
.details__title {
  font-size: 2rem;
}
.foryou h4 {
  font-size: 3rem;
  font-weight: 700;
  padding: 0px 0px 0px 0px;
}
.boxnew h5 {
  padding-top: 20px;
  border-top: 2px solid rgb(0 0 0 / 25%);
  font-size: 2rem;
  font-weight: 700;
}
.boxnew p {
  margin: 10px 0px;
  font-size: 1.5rem;
}
#footer .footer-top .footer-logo img {
  width: 200px;
  height: 80px;
  margin-left: -10px;
  margin-top: -20px;
}

.herobg {
  position: static;
  height: 100vh; /* Adjust as needed */
  width: 100%;
  overflow: hidden; /* Ensures the image does not go outside the section */
}



}

@media (max-width:375px) {
  .herobg{
    max-height: 140vh;
    height: 650px;
  }
}



@media only screen and (min-width: 601px) and (max-width: 950px)  {

  .herobg {
    max-height: 140vh;
    height: 1179px;
  }
  .herobg h4 {
    font-size: 10rem;
    font-weight: 700;
}
.herobg p {
  font-size: 5rem;
}

.herobg .button1 a{
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #FA6050 !important;
  border: #FA6050 !important;
  color: #000;
  font-size: 30px;
}

/* .pos321 {
  top: 300px;
  left: 37%;
  max-width: 195px;
  width: 100%;
  background-color: white;
  padding: 14px;
  border-radius: 10px;
}


.pos322 a {
position: relative;
top: 130px;
right: 195%;
padding: 10px 20px;
background-color: white;
border-radius: 20px;
font-size: 13px;
} */
 
.build-heading{
  font-size: 4rem;
  font-weight: 700;
}
.build-p{
  font-size: 2rem;
}

.getstarted{
  padding: 10px 30px !important;
  background-color: #000 !important;
  border: #000 !important;
  border-radius: 30px !important;
  font-size: 15px !important;
}

.w75img{
  max-width: 100% !important;
}

.onlinestore h3 {
  font-size: 5rem;
  font-weight: 700;
}
.onlinestore p {
  font-size: 2.5rem;
}

.topselling h3 {
  font-size: 3.3rem;
  color: white;
  margin-bottom: 20px;
}
.quotes blockquote::before {
  content: '';
  position: static;
  
}
.storesetup h4 {
  font-size: 5rem;
  font-weight: 700;
}
.storesetup h5 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.storesetup p {
  font-size: 2rem;
  
}
.storesetup .sellbtn {
  background-color: #000;
  border: #000;
  padding: 10px 30px;
  border-radius: 26px;
  text-decoration: none;
  color: white;
}
.storesetup {
  margin: 10px 0px;
}

.powerfulfeatures h4 {
  font-size: 5rem;
  font-weight: 700;
}
.powerfulfeatures p {
  font-size: 2rem;
}
.powerfulfeatures h5 {
  font-size: 4rem !important;
  font-weight: 600;
  padding-top: 23px;
  border-top: 2px solid #00000073;
}
.powerfulfeatures p {
  font-size: 2rem;
  
}
.maxwid1{
  max-width: 640px !important;
    width: 640px !important;
    border: 2px solid rgba(0, 0, 0, 0.5);
    padding: 0px !important;
}
.faq h4 {
  font-size: 5rem;
  font-weight: 700;
  padding: 30px 0px;
}
.details__title {
  font-size: 2rem;
  }
  .foryou h4 {
    font-size: 5rem;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
  }
  .foryou p {
    font-size: 2rem;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
  }
  .boxnew h5 {
    padding-top: 20px;
    border-top: 2px solid rgb(0 0 0 / 25%);
    font-size: 3rem;
    font-weight: 700;
  }
  .boxnew p {
    margin: 10px 0px;
    font-size: 2rem;
  }
  .boxnew a {
    margin: 10px 0px;
    font-size: 1.5rem;
  }
  }

  .powerfulfeatures p {
    font-size: 1.4rem;
  }
  .main-btl{
    min-height: 60rem;
  }
  
  
  
  
  


/* cookies  */
/* Unique Accept Cookies Styling Start */
.unique-cookie-popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #536576;
  color: white;
  padding: 15px;
  z-index: 9999;
}

.unique-cookie-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.unique-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.unique-cookie-content {
  flex: 1 1 75%;
}

.unique-cookie-font p {
  color: white;
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
}

.unique-cookie-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.unique-cookie-btn {
  min-width: 10rem;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.accept-all-btn {
  background-color: #28a745;
  color: white;
}

.essential-btn {
  background-color: #17a2b8;
  color: white;
}

.decline-btn {
  background-color: #dc3545;
  color: white;
}



@media (max-width: 600px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
      line-height: 1.6rem;
      font-size: 8px !important;
  }

  .unique-cookie-btn {
      /* font-size: 14px; */
      font-size: 1rem ;
  }
  .unique-cookie-btn {
    min-width: 8rem;
    padding: 6px 12px !important;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.unique-cookie-popup h1 {
    font-size: calc(1.5rem + 1vw);
}
.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
  font-size: 8px;
}

}

@media only screen and (min-width: 601px) and (max-width: 1100px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
      font-size: 16px;
  }

  .unique-cookie-btn {
      font-size: 15px;
  }
}
/* Unique Accept Cookies Styling End */



