*:focus {
  outline: none !important;
  box-shadow: none !important;
}
.logo img {
  height: 50px;
}
.navbarPadding{padding-top:50px;}
.navbar-toggler{
  /* position: absolute;
  right: 20px; */
  border: none;
  top: 10px;
}
.navbar-toggler:hover i {
  color: #000000;
}
ul.navbar-nav {
  margin-right: 100px;
}
.imgBanner{max-height: 80vh;}  
.iconBox {
    display: flex;
    background: #f4ffe6;
    border-radius: 20px;
    align-items: stretch;
    height: 100%;
    box-shadow: 0px 10px 10px -10px #000000a6;
    /* box-shadow: 0px 10px 20px -20px #000; */
}
.iconBox h4 {
  text-transform: capitalize;
}
.icon {
  background: var(--color-secondary);
  border-radius: 20px 0 0 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-content {
  padding: 10px;
}

.icon img {
  max-width: 70px;
  filter: invert(1);
}


/* .product-benefits{background:#e8e7e3 url(../img/pb-bg.jpg) no-repeat center center; 
background-size:cover; 
background-attachment: fixed; 
} */

.ingredient-div{
  overflow: hidden;
  cursor:pointer;
  position: relative;
  background: var(--color-background);
  text-align:center;
}
.ingredient-div img {
  transition: transform 0.3s ease-in-out; 
}
.ingredient-div:hover img {
  transform: scale(1.05);
}

.ingredient-div span {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  width: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px;
}

.infoCircle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-secondary-gradient1) !important;
  font-size: 70px;
  display: none;
  background: #0000009e;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ingredient-div:hover .infoCircle{
  display: flex;
}

.rounded-img-bg{background: var(--color-secondary);
  display: flex;
  align-items: center;
  border-radius: 30px 0 0 30px;}

  .section-pi li:not(:last-child) {
    border-bottom: 2px solid var(--color-secondary);
}

.section-pi li {
    margin: 0 20px;
    list-style: none;
    padding: 20px 0;
    text-align:left;
}
.section-pi ul {
  margin: 0;
  padding: 0;
}

.section-pi h4 {
  text-align: center;
  background: var(--color-secondary);
  border-radius: 30px 30px 0 0;
  padding: 10px;
  color: #fff;
} 

.section-pi {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 10px 10px -10px #000000a6;
  height:90%;
}

.orderbtn{
  background: var(--color-secondary);
border-radius: 20px;
display:inline-block;
box-shadow: 0px 10px 10px -10px #000000a6;
width: 100%;
    height: 100%;
}
.orderbtn img {
  height: 50px;
}
.orderbtn i{
  font-size:3rem;
}
.cta-heading{
  background: #ffffffad;
    display: inline-block;
    padding: 0px 30px;
    border-radius: 20px 0;
}
.modal-title{width: 100%; text-align: center;}
.modal-content{border-radius: 40px;}
.modal-body{border-radius: 40px;}
.scrollDiv{overflow: auto; max-height: calc(100vh - 180px);}
.modal-body li{margin-bottom: 10px;}

.err {
  color: firebrick;
  font-size: 12px;
}

::-webkit-scrollbar {  width: 8px;}
::-webkit-scrollbar-track { background: #d8d8d8;  border-radius: 60px;}
::-webkit-scrollbar-thumb {  background: #000000ba;    border-radius: 60px;}
::-webkit-scrollbar-thumb:hover {  background: #555;}
/* #main{float: left;
  width: 100%;
} */
font{pointer-events:none;}
.stickyBuyNow {
  position: fixed;
  right: 0;
  top: 40%;
  width: 50px;
  z-index: 1;
  margin: 0;
  float: right;
}
.stickyBuyNow .btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  /* background: #000; */
  color: #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;  
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 10px 10px -10px #000000a6;
  padding:0;
  margin-bottom: 10px;
}
.flash-text {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
  background: #f2c94c;
  width: 200px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 40px;
  /* box-shadow: 0px 4px 10px -4px #000000a6; */
  padding: 10px;
  font-family: var(--font-default);
}
.flash-text::before {
  content: '';
  height: 10px;
  width: 10px;
  position: absolute;
  top: -10px;
  right: 20px;
  border-bottom: 15px solid #f2c94c;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.flash {
  /* animation: flashText 15s ease-in-out forwards; */
  /* animation: blink 1s ease-in-out infinite; */
  animation:flashText 4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully hidden */
  }
}

@keyframes flashText {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* .bgAmazon{
  color:#fff;
}
.bgAmazon::before{
  background: #ff9900 !important;
  border-radius: 50%;
}
.bgWhatsapp{
  color: #fff;
    border-radius: 50%;
}
.bgWhatsapp::before{
  background: #25d366;
  border-radius: 50%;
} */
/******************************	cookie consent***********************************/
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #000000d1;
  color: white;
  padding: 20px 50px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}

.cookie-consent a {
  color: #f2c94c;
  text-decoration: none;
}

.cookie-consent button {
  background-color: #f2c94c;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-consent button:hover {
  background-color: #f29b30;
}

.hidden {
  display: none;
}
/******************************	cookie consent***********************************/
/******************************	GOOGLE TRANSLATE ***********************************/
#google_translate_element{visibility:hidden;}
.translateDiv {
  position: absolute;
  right: 0;
  height: 30px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .goog-te-gadget{display:flex;}
.goog-te-banner-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd{display:none !important; }
/*body{top:auto !important;}*/
#google_translate_element select {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 6px 6px;
  width: 100px;
  height: 30px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-primary);
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;cursor: pointer;
}
.goog-logo-link{display:none !important;   }
.goog-te-gadget{color:transparent!important;}
.VIpgJd-ZVi9od-l4eHX-hSRGPd{display:none;}
.goog-te-gadget-simple{
  width: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: none;
  border-radius: 3px;
  padding: 2px;
  /* background: #000 !important; */
  border: 1px solid #d3d0d0 !important;
  /* border-radius: 0; */
  height: 25px;
}
.goog-te-gadget-icon{ display: none;}
.goog-te-gadget-simple span{
  vertical-align: middle;
  width: 100%;
  text-align: end;
}
/*span.indicator { display: none;}*/
.goog-te-gadget-simple span {  font-size: 14px;
}


iframe.skiptranslate{top:39px !important;}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
  //color: #fff !important;
  width: 100%;
  display: block;
  margin: 0;
      position: relative;
      color: #000 !important;
    }
/*.skiptranslate{height:auto !important;}*/
/*.goog-te-gadget-simple span>a{display:flex;}*/
body{top:0 !important;}

/* div#google_translate_element {
  position: absolute;
  left: 0;
} */
/******************************	GOOGLE TRANSLATE ***********************************/


@media (max-width: 991.5px) {
  h1 {
    font-size: 1.8rem !important;
}
  h1,h2,h3,h4,h5,h6{line-height:normal;}
  .moblie-m-0{margin:0 !important;}
  .rounded-img-bg{border-radius: 30px 30px 0 0;}
  .ingredient-div img {
    max-width: 300px;
  }
  
.social-links{
  flex-direction: row ;
}
.navbar ul li a, .navbar ul li a:focus{font-size:14px;}
}
@media only screen and (max-width: 768px) {
  .pt-5,
  .py-5 {
      padding-top: 1.5rem!important;
  }
  .pb-5,
  .py-5 {
      padding-bottom: 1.5rem!important;
  }
  .pt-4,
  .py-4 {
      padding-top: 1rem!important;
  }
  .pb-4,
  .py-4 {
      padding-bottom: 1rem!important;
  }
  .pt-3,
  .py-3 {
      padding-top: 0.5rem!important;
  }
  .pb-3,
  .py-3 {
      padding-bottom: 0.5rem!important;
  }
  .p-5 {
      padding: 2rem!important;
  }
  h1 {
    font-size: 1.7rem !important;
}
h3,
h2 {
    font-size: 1.5rem !important;
}
.btn_style1,
.btn_style2 {
    font-size: 1.2rem !important;
}
h4 {
    font-size: 1.2rem !important;
}
h5 {
    font-size: 1.1rem !important;
}
li,
p {
    font-size: 0.9rem !important;
}
h6 {
    font-size: 12px !important;
}
.translateDiv {
  right: 50px;
  top: 10px;
}
.section-header {
  padding-bottom: 20px;
}

.bannerbg_mobile{background: #ece9e8;}
.imgBanner{max-height: 500px;
  margin: auto;}  
  /* .stickyBuyNow,  .stickyBuyNow .btn{height: 50px;
    width: 50px;} */
    .cookie-consent{    padding: 10px 10px;}
    .testimonials .testimonial-item h3, .testimonials .testimonial-item h4 {
      font-size: 1rem !important;
  }
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right{font-size: 16px;}
  .testimonials .testimonial-item p{    line-height: normal;}
}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 576px) {
  .testimonial-item>div{
    flex-direction:column;
    align-items:flex-start !important;
  }
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 320px) {
  h1 {
      font-size: 1.6rem !important;
  }
  h3,
  h2 {
      font-size: 1.2rem !important;
  }
  .btn_style2 {
      font-size: 1rem !important;
  }
  h5 {
      font-size: 1rem !important;
  }
  h4,
  li,
  p,
  .div_footer a {
      font-size: 0.8rem !important;
  }
  .txt_logo p {
      font-size: 10px !important;
  }
}

/* Athashri-GM Section Styles */
.athashri-gm .divider {
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    margin: 20px auto;
}

.athashri-gm .product-image-container {
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px; /* Adjusted for new image height */
    max-width: 280px; /* Adjusted for new image width */
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.athashri-gm .product-img {
    max-height: 242px; /* Exact height of your image */
    width: 212px; /* Exact width of your image */
    object-fit: contain;
}

/* Improve the info box layout */
.athashri-gm .info-box {
    padding: 30px;
    height: 100%;
    border-left: 4px solid var(--color-secondary);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.athashri-gm .risk-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.athashri-gm .risk-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #eee;
}

.athashri-gm .risk-list li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .athashri-gm .product-image-container {
        height: 280px;
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .athashri-gm .product-img {
        max-height: 222px;
        width: 192px;
    }
    
    .athashri-gm .info-box {
        padding: 20px;
    }
}
