@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

body {
  margin: 0;
  padding: 0;
  
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}

.navigation{
  display: none !important;

}
.loading-spinner img {
  width: 100px;
  /* Adjust the size of your loading GIF */

}
.mopile{
  display: none !important;
}
.section {
  width: 99.1%;
}

/* start navbar */
.dark-div.navbar {
  background-color: black;
}

.dark-div.navbar ul li a {
  color: #ffffff;
}
.show li a{
  color: black !important;
}
.navbar .show li a.select{
  color: #f2d131 !important;
  background-color: #000000 !important;
}
.navbar {
  width: 100%;
  background-color: #e4dfdf;
  margin: 0;
  border: none;
  position: fixed;
  z-index: 10;
}

.swiper-pagination-bullet-active {
  background: #eee !important;
}

.navbar .logo {
  padding-top: 18px;
  padding-bottom: 8px;
  margin-left: 83px;
}

.search {
  display: inline-block;
  margin-left: 41px;
  position: absolute;
  top: 18px;
  left: 135px;
}

.search input {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 377px;
  padding-left: 52px;
  background-color: #373737;
  border: none;
  color: White;
  margin-top: 16px;
  border-radius: 10px;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.644);
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  text-transform: capitalize;
  word-wrap: break-word;
}

.search i {
  position: relative;
  left: 43px;
  color: White;
}

.order-input,
.postcode-input,
.submit-button {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100px;
  transition: all 0.5s ease-in-out;
}

.submit-button:hover {
  background-color: #f2d131;
  color: black;
  cursor: pointer;
}

.navbar ul {
  list-style: none;
  position: absolute;
  top: 38px;
  left: 760px;
}

.navbar ul li {
  display: inline-block;
}

.navbar ul li a {
  text-decoration: none;
  color: #000000;
  margin-left: 30px;
  font-weight: bolder;
  transition: all 0.5s ease-in-out;
}

.navbar ul li a.select {
  color: #f2d131;
  background-color: #000000;
  padding: 10px;
  border-radius: 17px;
}

.navbar ul li a:hover {
  color: #f2d131;
}

.login {
  padding: 14px 32px;
  background: #f2d131;
  display: inline-block;
  margin-right: 85px;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 97px;
  border-radius: 21px;
}

.icon {
  display: inline-block;
  width: 114px;
  height: 50px;
  float: right;
  position: absolute;
  top: 25px;
  right: 15px;
}

.icon img {
  width: 25%;
  height: 50%;
  cursor: pointer;
}

.icon i {
  color: #f2d131;
  margin-left: 36px;
  font-size: 24px;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  top: 5px;
}

/* =========================================================================================== */
/* responsive */
.toggle-btn {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 30px;
  right: 45%;
}

.toggle-btn .bar {
  width: 35px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  margin: 6px 0;
  transition: 0.4s;
}

.dark-div .toggle-btn .bar {
  background-color: rgb(255, 255, 255);
}

/* Responsive styles */
@media (max-width: 1700px) {

  .navbar{
    display: none !important;
  }
  .navigation {
    display: block !important;
  }

}

@media (max-width: 450px) {
  .icon {
    top: 15px;
    right: 0px;
  }
  
  .icon i {
    color: #f2d131;
    margin-left: 11px;
    font-size: 14px;
    margin-top: 5px;
    top: -4px;
  }

  .icon img {
    width: 17%;
    height: 34%;
    cursor: pointer;
    margin-bottom: 10px;
  }
}

/* end navbar */

/* start hero */

#hero {
  width: 99.1%;
  height: 80vh;
  background: #f9f9f9;
}

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

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

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

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

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

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.sw-pr {
  color: black;
  font-size: 17px;
  font-family: Montserrat;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.2px;
  word-wrap: break-word;
  margin-left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #fff8f88a;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  .makeus {
    margin-top: 108px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.swiper-pagination-bullet-active {
  background: #eee;
}

.dark-div#hero {
  background-color: #4d4747 !important;
}

.dark-div .hero-div-text {
  color: #ffffff !important;
}

.dark-div .swiper-slide {
  background-color: #f2d131;
}

@media (width>1000px) {
  #hero {
    height: 100vh !important;
  }
}

@media (width<1000px) {
  #hero {
    height: 20% !important;
  }

  .hero-div-text {
    font-size: 22px !important;
  }

  .hero-div-Dad {
    padding: 10px 0 !important;
  }

  .swiper1 {
    margin: 10px !important;
  }
}

/* end hero */

/* start makeus */
.dark-div.makeus {
  background-color: #4c4747 !important;
}

.dark-div .Section2Header {
  color: white;
}

.dark-div .Section2Discription {
  background-color: #ffffff0a !important;
  backface-visibility: 80%;
}

.Section2Discription {
  color: white;
  background: black;
  padding: 20px;
  border-radius: 47px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.section2CardText {
  position: absolute;
  top: 164px;
  left: 42px;
  background: transparent;
  width: 320px;
  padding: 0px 5px;
  color: #000;
  font-family: Montserrat;
  text-align: center;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 54.839% */
  letter-spacing: 0.2px;
}

.section2Container {
  margin: auto;
}

@media (200px < width < 460px) {
  .section2CardsDadDiv {
    display: block !important;
  }

  .section2CardsDadDiv>div {
    width: 90% !important;
    margin: auto;
  }

  .section2CardsDadDiv .section2CardText {
    font-size: 23px;
    max-width: 70%;
    top: calc(25% + 10px);
  }
}

@media (461px < width < 920px) {
  .section2CardsDadDiv {
    display: block !important;
  }

  .section2CardsDadDiv .section2CardText {
    max-width: 60%;
    top: 180px;
  }
}

@media (min-width: 992px) {
  .section2Container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .section2Container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .section2Container {
    max-width: 1320px;
  }
}

/* end makeus */

/* start our passion */

/****************************/
@keyframes moveAd {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.ad-container {
  position: relative;
  overflow: hidden;
  width: 97%;
  margin-right: 20px;
  margin-left: 20px;
  height: 40px;
  /* Adjust height as needed */
  background-color: transparent;
  /* Background color of the ad container */
}

.ad-block {
  position: absolute;
  width: 97%;
  height: 100%;
  margin-right: 20px;
  margin-left: 20px;
  background-color: transparent;
  /* Background color of the ad block */
  color: #fff;
  /* Text color */
  text-align: center;
  animation: moveAd 10s linear infinite;
  /* Adjust animation duration as needed */
}

/****************************/

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='orange'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.Section3Discription {
  color: white;
  background: black;
  padding: 20px;
  border-radius: 47px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.Section3imgText {
  color: #f2d131;
  font-family: Montserrat;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;

  position: absolute;
  padding: 10px;
  left: 40px;
  top: 30%;
  width: 60%;
}

.productSection .accordion-button,
.accordion-body {
  color: #f2d131;
  background-color: #141414;
}

.accordion-item {
  border: none;
}

.linkOfGooglePlay {
  position: absolute;
  background: #eee;
  width: 30%;
  height: 18%;
  bottom: 4%;
  cursor: pointer;
  left: 30%;
  border-radius: 20px;
  padding: 10px;
  opacity: 0%;
}

/* .productSection .section3DivOne{
  background-color: #1414141d !important;
  color: black !important;
} */

.marquee-horizontal-large {
  z-index: 8;
  width: 100% !important;
  height: 82px;
  margin-top: 64px !important;
  position: relative;
  overflow: hidden;
}

.productSection .swiper-wrapper .swiper-slide div {
  margin-right: 50px;
  background-color: black !important;
}

.Section3imgDiv .Section3imgText {
  color: black;
  font-weight: bold;
}

.Section3imgDiv .playStoreWhite {
  display: block;
}

.Section3imgDiv .playStoreBlack {
  display: none;
}

.section3DivOne .ProductHighText {
  color: black;
}

.productSection .accordion-button,
.accordion-body {
  color: #141414;
  background-color: #f2d131;
}

.productSection .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.marquee-horizontal-large {
  z-index: 8;
  width: 100%;
  height: 82px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.track-horizontal {
  z-index: 1;
  flex-direction: row;
  align-items: center;
  display: flex;
  position: absolute;
}

.flex-horizontal {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.flex-horizontal.sb {
  justify-content: space-between;
}

.flex-horizontal.sb.mb80 {
  margin-bottom: 80px;
}

.flex-horizontal.gap32 {
  grid-column-gap: 32px;
}

.item {
  background-color: #000;
}

/*///////////start dark mod///////////*/

.dark-div.productSection {
  background-color: #4c4747 !important;
}

.dark-div .ProductHighText {
  color: white !important;
}

.dark-div .Section3imgDiv .Section3imgText {
  color: #f2d131;
  font-weight: bold;
}

.dark-div .playStoreWhite {
  display: none !important;
}

.dark-div .playStoreBlack {
  display: block !important;
}

.dark-div .swiper-wrapper .swiper-slide div {
  background: #ffffff0d !important;
}

.dark-div .section3DivOne {
  background: #ffffff0d !important;
}

.dark-div .item {
  background: #757575;
}

.dark-div .accordion-body {
  background-color: #000;
  color: #f2d131;
}

/* .productSection .accordion-button, .accordion-body */
.dark-div .accordion-button {
  background-color: #000;
  color: #f2d131;
}

.dark-div .accordion-button::after {
  background-color: #f2d131;
}

/*///////////end dark mod///////////*/

/* start mobile */

@media (200px < width < 460px) {
  .col {
    width: 80% !important;
  }

  .productSection .container {
    width: 90%;
  }

  .Section3imgText {
    font-size: 13px;
    position: absolute;
    padding: 10px;
    left: 10px;
    top: 30%;
    width: 60%;
    display: none;
  }
}

/* end mobile */

/* start tablet */
@media (470px < width < 700px) {
  .Section3imgText {
    font-size: 13px;
    position: absolute;
    padding: 10px;
    left: 30px;
    top: 30%;
    width: 60%;
    display: none;
  }
}

/* end tablet */

/* start labtop */
@media (992px < width < 1200px) {}

/* end labtop */

/* start pc */
@media (1200px < width) {
  .Section3imgText {
    color: #f2d131;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: absolute;
    padding: 10px;
    left: 20px !important;
    top: 30%;
    width: 60%;
  }
}

/* end pc */

/* end our passion */

/* start map */
.mapSection {
  background-color: #F2D131;
  padding: 30px 0;
}

.mapImg {
  z-index: 0;
  width: 100%;
  position: relative;
  max-width: 100%;
}


.mapDad {
  position: relative;
  width: 45%;
  margin: auto;
  display: flex;
  max-width: 700px !important;
}

.mapDad .locationMap {
  font-size: 45px;
  color: #F2D131;
  object-fit: cover;
  position: absolute;
}

.mapSection .mapText {
  color: black;
  font-weight: bold;
  margin-right: 30px;
  text-align: end;
}



.tooltip-container {
  transition: font-size 1s !important;
  -webkit-transition: font-size 1s !important;
  /* Safari and Chrome */
  -o-transition: font-size 0.3s !important;
  transition-timing-function: ease-out;
  position: relative;
  display: inline-block;
}

.tooltip-container:hover .tooltiptext {
  visibility: visible;
}

.tooltip-container:hover {
  font-size: 60px;
}

.tooltiptext {
  transition-timing-function: ease-out;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  background-color: #2f2a28;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  top: 105%;
  left: 50px;
  transform: translateX(-50%);
  font-size: 18px;
}



/*///////////start dark mod///////////*/


.mapSection.dark-div {
  background-color: #000000 !important;
}

.dark-div .mapText {
  color: #F2D131;
}




/*///////////end dark mod///////////*/







/* start mobile */

@media (200px < width < 460px) {}

/* end mobile */


/* start tablet */
@media (100px < width < 768px) {

  .mapDad {
    width: 100%;
  }

}

/* end tablet */


/* start labtop */
@media (992px < width < 1200px) {}

/* end labtop */

/* start pc */
@media (1200px < width) {}

/* end pc */
/* end map */

/* start testimonial */
/*.TestiMonialSection {
  padding: 60px 20px;
  background-image: url("images/bg.svg");
  background-size: cover;
  background-color: white;
}

.TestiMonialSection .sectionHeader1 {
  text-align: center;
  color: black;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background-color: black;
}


.TestiMonialSection .swiper-button-next::after,
.TestiMonialSection .swiper-button-prev::after {
  font-size: 40px;
  font-weight: bold;
}

.TestiMonialSection .cardDiv {
  position: relative;
}


.TestiMonialSection .cardDiv .dabos {
  position: absolute;
  right: 18%;
  top: 5%;
  width: 5%;
  z-index: 1;
}

.TestiMonialSection .cardDiv .img-person {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 20%;
  transform: rotate(-35deg);
}

.TestiMonialSection .cardDiv .cardText1 {
  position: absolute;
    left: 8%;
    font-size: 20px;
    top: 16%;
    max-width: 60%;
    line-height: 64px;
}



.TestiMonialSection .cardDiv .cardTextBottom {
  position: absolute;
  right: 4%;
  font-size: 16px;
  font-weight: bold;
  top: 58%;
  max-width: 60%;
}


/*///////////start dark mod///////////*/


/*.TestiMonialSection.dark-div {
  background-color: #4c4747 !important;
}

.dark-div .sectionHeader1 {
  color: white;
}

.dark-div .swiper-pagination-bullet-active {
  background-color: whitesmoke;
}




/*///////////end dark mod///////////*/







/* start mobile */

/*@media (200px < width < 460px) {





  .TestiMonialSection {
    padding: 80px 0;
  }

  .TestiMonialSection .container {
    margin: 0 !important;
    padding: 0 !important;
  }


  .TestiMonialSection .swiper-button-next::after,
  .TestiMonialSection .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }

  .TestiMonialSection .cardDiv .cardText1,
  .TestiMonialSection .cardDiv .cardText2,
  .TestiMonialSection .cardDiv .cardText3 {
    font-size: 14px;
  }

  .TestiMonialSection .cardDiv .cardTextBottom {
    right: 10%;
    font-size: 14px;
  }

  .TestiMonialSection .showMobileView {
    display: block;
    width: 100% !important;
  }

  .TestiMonialSection .hideMobileView {
    display: none;
  }

}

/* end mobile */


/* start tablet */
/*@media (460px < width < 768px) {

  .TestiMonialSection .cardDiv .cardText1,
  .TestiMonialSection .cardDiv .cardText2,
  .TestiMonialSection .cardDiv .cardText3 {
    font-size: 16px;
  }

  .TestiMonialSection .cardDiv .cardTextBottom {
    right: 10%;
    font-size: 16px;
  }

  .TestiMonialSection .showMobileView {
    display: block;
    width: 100% !important;
  }

  .TestiMonialSection .hideMobileView {
    display: none;
  }

}

/* end tablet */


/*@media (769px < width < 991px) {


  .TestiMonialSection .cardDiv .cardText1,
  .TestiMonialSection .cardDiv .cardText2,
  .TestiMonialSection .cardDiv .cardText3 {
    font-size: 12px;
  }


  .TestiMonialSection .cardDiv .cardTextBottom {
    right: 13%;
    font-size: 16px;
  }

}



/* start labtop */
/*@media (992px < width < 1200px) {

  .TestiMonialSection .cardDiv .cardTextBottom {
    right: 13%;
    font-size: 16px;
  }

}

/* end labtop */

/* start pc */
/*@media (1200px < width) {
  .TestiMonialSection .cardDiv .cardTextBottom {
    right: 20%;
    font-size: 20px;
  }
}

/* end pc */
/* end testimonial */

/* start our partener */
.SectionLogos {
  padding: 60px 0px;
  background-image: url("./images/bg.svg");
  background-size: cover;
  background-color: white;
}

.SectionLogos .sectionHeader {
  text-align: center;
  color: black;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background-color: black;
}


.SectionLogos .swiper-button-next,
.SectionLogos .swiper-button-prev {
  top: 55%;
  color: darkgrey !important;
  font-weight: bold;
  background: black;
  padding: 15px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 20px;
}




.SectionLogos .swiper-button-next::after,
.SectionLogos .swiper-button-prev::after {
  content: "";
  font-size: 18px;
  font-weight: bold;
}


/*///////////start dark mod///////////*/


.SectionLogos.dark-div {
  background-color: #4c4747 !important;
}

.dark-div .sectionHeader {
  color: white;
}

.dark-div .swiper-pagination-bullet-active {
  background-color: whitesmoke;
}

/*///////////end dark mod///////////*/

/* start mobile */

@media (200px < width < 460px) {


  .SectionLogos {
    padding: 80px 0;
  }

  .SectionLogos .container {
    margin: 0 !important;
    padding: 0 !important;
  }


  .SectionLogos .swiper-button-next::after,
  .SectionLogos .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }


}



/* start footer */
.footer {
  background-color: #F2D131;
  padding: 30px 0;
  width: 99.1%;
  height: 500px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.footer img {
  position: absolute;
  top: 79px;
  left: 138px;
}

.footer .sitemap {
  position: absolute;
  top: 65px;
  left: 437px;

}

.footer .social {
  position: absolute;
  top: 65px;
  left: 850px;

}

.footer .sitemap li,
.footer .social li {

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  list-style: none;
  margin-top: 13px;
  font-weight: bold;
}

.footer .sitemap li a,
.footer .social li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.footer .head {
  position: absolute;
  color: black;
  right: 170px;
  top: 72px;
  width: 339px;
  font-weight: bolder;
}

.footer .contact {
  width: 200px;
  position: absolute;
  bottom: 51px;
  left: 99px;
  font-weight: bold;
}

.footer .contact1 {
  width: 200px;
  position: absolute;
  bottom: 51px;
  left: 458px;
  text-align: center;
  font-weight: bold;
}

.footer .newsletter {
  width: 200px;
  position: absolute;
  bottom: 203px;
  right: 257px;
  font-weight: bold;
}

.footer .newsletter input {
  background-color: inherit;
  border: none;
  width: 200px;
  color: black;
  border-bottom: 1px solid black;
}
.footer .newsletter input::placeholder {
  color: black;
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  text-transform: capitalize;
  word-wrap: break-word;
}
.footer .newsletter input:focus {
  outline: none;
}
.footer .newsletter i{
  position: absolute;
  right: -27px;
  bottom: 3px;
  font-size: 20px;
  cursor: pointer;
}
.footer .privacy{
    position: absolute;
    bottom: 85px;
    right: 193px;
    font-weight: bold;
    font-size: 14px;
    color: black;
    text-decoration: none;
}
hr {
  width: 181px;
  border: 1px solid;
}
.footer .privacy a{
  text-decoration: none;
  color: #000;
}

/* drak */
.footer.dark-div {
  background-color: black;
}

.footer.dark-div .contact,
.footer.dark-div .contact1 {
  color: #F2D131;
}

.footer.dark-div li {
  color: #F2D131;
}

.footer.dark-div li a {
  color: #F2D131;
}

.footer.dark-div .head {
  color: #F2D131;
}

.footer.dark-div .newsletter {
  color: #F2D131;
}

.footer.dark-div .newsletter input {
  color: #F2D131;
  border-bottom: 1px solid #F2D131;
}
.footer.dark-div .newsletter input::placeholder {
  color: #F2D131;
}
.footer.dark-div .privacy p , .footer.dark-div .privacy a{
  color: #F2D131;
  
}

/* ############### responsive ########################## */
@media (max-width: 1700px) {
  .footer .sitemap {
    left: 300px;
  }

  .footer .social {
    left: 700px;
  }

  .footer .head {
    right: 0px;
  }

  .footer .contact {
    left: 0px;
  }

  .footer .contact1 {
    left: 300px;
  }

  .footer .newsletter {
    right: 63px;
  }
}
@media (max-width: 1200px) {
  .footer .sitemap {
    left: 200px;
  }

  .footer .social {
    left: 500px;
  }

  .footer .head {
    right: 0px;
  }

  .footer .contact {
    left: 0px;
  }

  .footer .contact1 {
    left: 200px;
  }

  .footer .newsletter {
    right: 52px;
  }
  .Section3imgText{
    font-size: 12px;
    left: 20px !important;
  }
}
@media (max-width: 992px) {
  .footer .sitemap {
    left: 239px;
  }

  .footer .social {
    left: 0px;
  }

  .footer .head {
    right: 0px;
  }

  .footer .contact {
    left: 244px;
    bottom: 10px;
  }

  .footer .contact1 {
    left: 0px;
    bottom: 10px;
  }

  .footer .newsletter {
    right: 59px;
  }
}
@media (max-width: 768px) {
  .footer .sitemap {
    left: 0px;
  }

  .footer .social {
    left: 178px;
    top: 159px;
  }

  .footer .head {
    right: 0px;
  }

  .footer .contact {
    left: 192px;
  }

  .footer .contact1 {
    left: 0px;
  }

  .footer .newsletter {
    right: 54px;
  }
  .footer .privacy{
    bottom: 25px;
    right: 26px;
  }
}

@media (max-width: 728px) {
  .footer{
    height: 800px;
  }
  .footer .sitemap {
    left: 168px;
    top: 233px;
  }

  .footer .social {
    left: 4px;
    top: 234px;
  }

  .footer .head {
    right: 0px;
  }

  .footer .contact {
    left: 4px;
    bottom: 48px;
  }

  .footer .contact1 {
    left: 0px;
    bottom: 130px;
  }

  .footer .newsletter {
    right: 54px;
  }
  .footer .privacy{
    bottom: 25px;
    right: 26px;
  }
}
@media (max-width: 570px) {
  .footer{
    height: 1000px;
  }
  .footer img {
    top: 79px;
    left: 45px;
  }
  .footer .sitemap {
    left: 251px;
    top: 295px;
  }

  .footer .social {
    left: 4px;
    top: 295px;
  }

  .footer .head {
    right: 0px;
    top: 154px;
  }

  .footer .contact {
    left: 4px;
    bottom: 138px;
  }

  .footer .contact1 {
    left: 0px;
    bottom: 230px;
  }

  .footer .newsletter {
    right: 54px;
    bottom: 338px;
  }
  .footer .privacy{
    bottom: 25px;
    right: 20px;
  }
  .section{
    width: 103%;
  }
}

@media (max-width: 478px) {
  .section{
    width: 104%;
  }
  .footer{
    height: 1000px;
  }
  .footer img {
    top: 79px;
    left: 45px;
  }
  .footer .sitemap {
    left: 251px;
    top: 295px;
  }

  .footer .social {
    left: 4px;
    top: 295px;
  }

  .footer .head {
    right: 0px;
    top: 154px;
  }

  .footer .contact {
    left: 4px;
    bottom: 138px;
  }

  .footer .contact1 {
    left: 0px;
    bottom: 230px;
  }

  .footer .newsletter {
    right: 54px;
    bottom: 338px;
  }
  .footer .privacy{
    bottom: 25px;
    right: 20px;
  }
  .section{
    width: 103%;
  }
}
@media (max-width: 300px) {
  .section{
    width: 104%;
  }
  .footer{
    height: 1000px;
  }
  .footer img {
    top: 79px;
    left: 45px;
  }
  .footer .sitemap {
    left: 161px;
    top: 295px;
  }

  .footer .social {
    left: 4px;
    top: 295px;
  }

  .footer .head {
    font-size: 10px;
    right: 42px;
    width: 101px;
  }

  .footer .contact {
    left: 4px;
    bottom: 138px;
  }

  .footer .contact1 {
    left: 0px;
    bottom: 230px;
  }

  .footer .newsletter {
    right: 54px;
    bottom: 338px;
  }
  .footer .privacy{
    font-size: 10px;
  }
  .section{
    width: 100%;
  }
  .section3DivOne{
    text-align: center;
    background: black;
    color: #f2d131;
    border-radius: 20px;
  }
  .passion_title{
         font-weight: bold !important;
        font-size: 0px !important;
  }
  .ad-container{
    width: 88%;
  }
  .col{
    min-width: 200px !important;
  }
  .section2CardsDadDiv .section2CardText {
    font-size: 14px;
    max-width: 70%;
    top: calc(15% + 10px);
}
  .Section3imgText{
    position: absolute !important;
    top: 0 !important;
    font-size: 12px !important;
    left: 20px !important;
    display: none;
  }
}


/* end footer */

/* for customer */
.DeleverySection{
  padding: 60px 0px;
  background-image: url("./images/bg.svg");
  background-size: cover;
  background-color: white;
}

.DeleverySection .delevryCardTitle{
  position: absolute;
  bottom: 24%;
  left: 27%;
  color: white;
  font-size: 25px;
  transform: rotate(-5deg);
}


.DeleverySection .delevryCardText{
  position: absolute;
  top: 29%;
  left: 24%;
  color: black;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(-12deg);
  max-width: 60%;
  max-height: 27%;
  overflow: hidden;
}

.light{
  color: black;
}


/*///////////start dark mod///////////*/

.DeleverySection.dark-div{
  background-color: #4c4747!important;
}
.mapSection1.dark-div{
  background-color: #4c4747!important;
}

.dark-div .ProductHighText1{
  color: white !important;
}
.dark-div .light{
  color: white !important;
}

/*///////////end dark mod///////////*/


/* start mobile */

@media (200px < width < 460px) {


  .DeleverySection{
    padding: 50px 0;
  }

  .DeleverySection .container{
    margin: 0 !important;
    padding: 0 !important;
  }


.DeleverySection .delevryCardTitle{
  position: absolute;
  bottom: 20%;
  left: 16%;
  color: white;
  font-size: 15px;
  transform: rotate(-5deg);
}


.DeleverySection .delevryCardText{
  position: absolute;
  top: 29%;
  left: 20%;
  color: black;
  font-size: 13px;
  font-weight: bold;
  transform: rotate(-12deg);
  max-width: 60%;
  max-height: 27%;
  overflow: hidden;
}


}
/* end mobile */


/* start tablet */
@media (460px < width < 768px) {

.DeleverySection .delevryCardTitle{
  position: absolute;
  bottom: 22%;
  left: 18%;
  color: white;
  font-size: 22px;
  transform: rotate(-5deg);
}


.DeleverySection .delevryCardText{
  position: absolute;
  top: 29%;
  left: 20%;
  color: black;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(-12deg);
  max-width: 60%;
  max-height: 27%;
  overflow: hidden;
}


}

/* end tablet */


@media (769px < width < 991px) {



.DeleverySection .delevryCardTitle{
  position: absolute;
  bottom: 24%;
  left: 21%;
  color: white;
  font-size: 25px;
  transform: rotate(-5deg);
}


.DeleverySection .delevryCardText{
  position: absolute;
  top: 29%;
  left: 20%;
  color: black;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(-12deg);
  max-width: 60%;
  max-height: 27%;
  overflow: hidden;
}

}



/* end labtop */

/* start pc */
@media (1200px < width) {
      
.DeleverySection .delevryCardTitle{
  position: absolute;
  bottom: 24%;
  left: 21%;
  color: white;
  font-size: 25px;
  transform: rotate(-5deg);
}

.DeleverySection .delevryCardText{
  position: absolute;
  top: 29%;
  left: 20%;
  color: black;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(-12deg);
  max-width: 60%;
  max-height: 27%;
  overflow: hidden;
}

}

/* end pc */

.mapSection .ProductHighText1{
  color: black;
}


.mapSection .accordion-button, .accordion-body {
  color:  #141414;
  background-color: #F2D131;
}


.mapSection .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")!important;
}



.mapSection .leaflet-marker-icon.leaflet-interactive{
  pointer-events: none;
  pointer-events: none;
}

/* for customer */

/* for retailers */
.retailersSection .ProductHighText2{
  color: black !important;
}
.retailersSection .icon1{
  border-radius: 10px;
  font-size: 15px !important;
  color: yellow;
  background-color: black;
  padding: 10px;
}
.retailersSection.dark-div{
  background-color: #4c4747!important;
}
.retailersBottomSection.dark-div{
  background-color: #4c4747!important;
}
.dark-div .ProductHighText2{
  color: white !important;
}
.dark-div .ProductHighText4{
  color: white !important;
}
._logo , ._desc{
color: #ddd;
}
.dark-div ._logo , .dark-div ._desc{
  color: rgb(0, 0, 0) !important;
}
/* for retailers */

/* join us */
.dark-div.joinUsSection{
  background-color: #4c4747!important;
}
/* join us */

/* about us */
.text-blk {
  line-height: 25px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.inner-container {
  max-width: 1320px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
}

.section-head-text {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.section-subhead-text {
  color: rgb(72, 72, 72);
  font-size: 20px;
  line-height: 27px;
  max-width: 670px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
}

.card {
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-right: 25px;
  padding-bottom: 40px;
  padding-left: 25px;
  box-shadow: rgba(134, 134, 134, 0.16) 0px 6px 24px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #f2e9e9;
}

.img-wrapper {
  width: 175px;
  height: 175px;
  clip-path: circle(50% at 50% 50%);
}

.name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  line-height: 27px;
}

.position {
  line-height: 26px;
  color: rgb(0, 166, 127);
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.testimonial {
  color: rgb(122, 122, 122);
  font-size: 18px;
  line-height: 27px;
}

.outer-container {
  background-color: transparent;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
}

.container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.swiper.team-swiper {
  max-width: 100%;
  width: 100%;
  height: fit-content;
}

.swiper-slide {
  display: flex;
  justify-content: flex-start;
  height: auto;
}

.swiper-pagination.container-block {
  position: relative;
  top: 0px;
  margin-top: 36px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}



.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-top: 0px;
  margin-right: 4px;
  margin-bottom: 0px;
  margin-left: 4px;
  height: 12px;
  width: 12px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;

  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(0, 166, 127);
}

.swiper-wrapper {
  position: relative;
  top: 0px;
}

@media (max-width: 1024px) {
  .swiper-slide {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .outer-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }
}

.ProductHighText6{
  color: black!important;
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset,0px) !important;
  color: #eee;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset,0px) !important;
  color: #eee;
}
.dark-div.lastSection{
  background-color: #4c4747!important;
}
.dark-div .ProductHighText5 , .dark-div .ProductHighText6{
   color: #eee!important;
}
/* about us */
.trackpos{
  margin-top: 16px;
  margin-left: 19px;
}