html {
    scroll-behavior: smooth;
  }
  body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #242424;
  }
  
  a,
  a:hover {
    text-decoration: none !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    cursor:  pointer !important;
  }
  
  ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
  }
  img {
    display: block;
    max-width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .posrel{
    position: relative;
  }

  @media (min-width: 1366px) {
    .cmpad{
      max-width: 1920px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  @media (max-width: 1366px) {
    .cmpad {
      padding-left: 60px;
      padding-right: 60px;
    }
  }
  @media (max-width: 991px) {
    .cmpad {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media (max-width: 767px) {
    .cmpad {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  @media (max-width: 575px) {
    html {
      font-size: 90%;
    }
  }
  
  @media (min-width: 768px) {
    ::-webkit-scrollbar {
      width: 10px;
      height: 6px;
    }
    ::-webkit-scrollbar-track {
      background-color: #eee;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #d3d3d3;
    }
    ::-webkit-scrollbar-thumb:hover {
      background-color: #d3d3d3;
    }
  
    .custscroll::-webkit-scrollbar,
    .custscroll::-webkit-scrollbar-thumb {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscroll::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscroll:hover::-webkit-scrollbar-thumb {
      background-color: #ccc;
    }
    .custscroll::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  
    .custscrollA::-webkit-scrollbar {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 6px;
    }
    .custscrollA::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  }
  .para{
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: .8;
    line-height: 25px;
  }

  .modal-dialog {
    max-width: 850px !important;
    margin-right: auto;
    margin-left: auto;
}
.modal-header{
  border-bottom: 0 !important;
}
.modalbtn{
  width: 100%;
  display: flex;
  justify-content: end;
}
.modal-left h3{
  font-weight: 600;
  color: #2d2b72;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #0000001a;
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 0.9rem;
  transition: 0.3s;
  color: #333;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.356);
  font-size: 0.8rem;
}
input:focus,
select:focus,
textarea:focus {
  border: 1px solid #2d2b72;
  outline: none;
}

.modal-left{
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

.modalimg{
  height: 100%;
  width: 100%;
}
.modalimg img{
  padding: 20px;
}
.modal-right{
  background: #2d2b7212;
  height: 100%;
  padding: 50px 27px 20px 20px;
}
.modal-body{
  padding: 0 !important;
}


  /* header */
  .mob-header{
    display: none;
  }
  .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    transition: all .3s;
  }
  .mid-header ul{
    display: flex;
    justify-content: center;
    gap: 19px;
  }
  .mainli{
    color: #242424;
    position: relative;

  }
  .right-header{
    width: 125px;
    transition: all .3s;

  }
  .headicn img{
    width: 22px;
  }
  .left-header{
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .headicn a{
    background: white;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
  }
  .headicn a:hover{
    background-color: #2d2b72;
  }
  .headicn a:hover img{
    filter: brightness(0)invert(1);
  }
  header{
    position: fixed;
    width: 100%;
    z-index: 12;
    transition: all .3s;
    background-color: #f9f9f9;
  }

  header.active{
    background-color: #f9f9f9;
    transition: all .3s;

  }
  header.active .header{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  header.active .right-header{
    width: 130px;
    transition: all .3s;
  }

  .mainli::before{
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 20px;
    content: '';
    background: #2d2b72;
    opacity: 0;
    transition: all .3s;
  }
  .mainli.active::before{
    opacity: 1;
  }

  .mainli:hover::before{
    width: 100%;
  }
  .mainli:hover{
    color: #ec1f28;
  }
  
  .headbtn{
    background: #2d2b72;
    color: #fff;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all .3s;
    border: 1px solid #2d2b72;
    width: max-content;
    gap: 5px;
  }
  .headbtn:hover{
    background-color: transparent;
    color: #2d2b72;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    transition: 0.3s;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 770px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 8px;
    z-index: 1;
    right: -600px;
    transition: 0.3s;
    animation-name: zoomIn;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    border-radius: 20px;
    padding: 20px;

  }
  
  .dropdown-content li{
    display: flex;
  }
  .dropdown-content li img{
    width: 20px;
  }
  
  @keyframes zoomIn {
    0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    transition: 0.3s;
  }
  
  .dropdown-content a {
    font-size: 0.85rem;
    color: #242424;
    padding: 8px 15px;
    display: flex;
    transition: 0.3s;
    font-weight: 500;
    border-radius: 10px;
    padding-left: 10px;
    min-width: 200px;
  }
  
  .dropdown-content a:hover {
    color: #ec1f28;
  }
  .dropdown-content ul{
        flex-wrap: wrap;
    gap: 10px;
  }
  .dropdown-content ul li{
           border: 1px solid #ff00003d;
    border-radius: 6px;
    padding-left: 10px;
  }



  /* mobile navbar */
.mob-menu{
  width: 25px;
  display: none;
}
.sideBtn{
  width: 35px;
  background: transparent;
  border: none;
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.sidebar.show {
  width: 335px;
  opacity: 1;
}

.sidebar .sidehead {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.sidebar .sidehead .logo {
  width: 120px;
  display: flex;
}

.sidebar .sidehead .closebtn, .enquiry .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #2d2b72;
  position: absolute;
  top: 7px;
  right: 0.5rem;
  color: white !important;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 5px;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .sidehead .closebtn:hover, .enquiry .closebtn:hover {
  color: #3a3a3a;
}

.sidebar .sidemenu {
  padding: 15px;
  overflow-y: auto;
  height: calc(100vh - 95px);
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
}

.sidebar .sidemenu ul.menulist li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist li a, .sidebar .sidemenu ul.menulist li span {
  color: #333;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 20px;
  cursor: pointer;
  background: #44427a0f;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: unset;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #2d2b72;
  background-color: rgb(24 94 196 / 9%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}


.sidebar .dropdown.show .dropdown-toggle {
  color: #3498db;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 30px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: none;
}

.sidebar .dropdown.show .dropdown-toggle:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.875rem;
}

.sidebar .dropdown-menu a:hover {
  background-color: transparent !important;
}

.sidebar .seperate {
  font-size: 0.875rem;
  color: #9e9e9e;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

.sidebar ul.social {
  padding: 0 15px;
  display: flex;
}

.sidebar ul.social li a i {
  color: #2f2483;
  padding-right: 35px;
}
.sidebar .accordion-item {
  border: unset;
}
.sidebar .accordion-button::after {
  width: 13px;
  height: 13px;
  background-size: contain;
}

.sidemenu .icon img{
  width: 16px;
}
.social li a img{
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(70%) saturate(3851%) hue-rotate(233deg) brightness(95%) contrast(103%);
}
.social{
  gap: 15px !important;
}

.accordion-button:not(.collapsed) .icon img{
  filter: brightness(0)invert(1);
}
.sidebar .social li a img{
  filter: none !important;
}

.accordion-button{
  border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #2d2b72 !important;
  color: #fff !important;
  box-shadow: none !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
  filter: brightness(0) invert(1);
}
.accordion-button:focus{
  box-shadow: none;
}

.pl{
  padding-left: 80px;
}

.accordion-body ul li a{
  padding-left: 20px !important;
}

  /* slider */
  .slider{
    position: relative;
    height: 100vh;
    padding-top: 110px;
    background-color: #f9f9f9;
  }
  .mainSwiper{
    height: calc(100vh - 200px);
  }
  .swiper-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .swiper-box{
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
  }

.mainpagination{
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 8px;
    top: auto !important;
    width: auto !important;
    padding: 5px 5px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    left: 15px !important;
    bottom: 15px !important;
  }
  .mainpagination .swiper-pagination-bullet, .brandpagination .swiper-pagination-bullet{
    background-color: #333;
    opacity: .2;
    width: 10px;
    height: 6px;
    border-radius: 3px;
    margin: 0 !important;
    border: 1px solid rgb(255 255 255 / 20%);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
  }
  .mainpagination .swiper-pagination-bullet-active, .brandpagination .swiper-pagination-bullet-active{
    background-color:#2d2b72;
    opacity: 1;
    width: 16px;
  }

  /* achievements */
  .achievement-box{
    position: absolute;
    bottom: 0rem;
    width: 75%;
    height: 125px;
    max-height: 100%;
    z-index: 4;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 35px;
    backdrop-filter: blur(6px);
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
 }
 .achi-flex{
    display: flex;
    justify-content: center;
 }
 .achi-cont h5, 
 .achi-cont h2{
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d2b72;
    margin: 0;
 }
 .achi-cont{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
 }
 .achi-cont p{
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin: 0;
 }
 .achiv-flex{
    display: flex;
    gap: 20px;
    position: relative;
 }
 .achiv-flex img{
    width: 50px;
    object-fit: contain;
 }
 .achiv-flex::after{
    position: absolute;
    content: '';
    right: 20px;
    height: 100%;
    width: 1px;
    background-color: #2d2b7224;
 }
 .achi-flex .achline:last-child .achiv-flex::after {
    content: none; 
}
/* footer */
footer{
    background-color: #12113c;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .circlefoot{
    height: 85px;
    width: 85px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .circlefoot img{
    width: 50px;
  }
  .circle-foot{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .circle-foot a, .circle-foot p, footer p, footer a{
    color: #fff;
    opacity: .8;
    font-size: 0.875rem;
  }
  .line2{
    height: 1px;
    width: 100%;
    background-color: #ffffff2e;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .logofoot img{
    filter: brightness(0) invert(1);
    width: 160px;
  }
  .footcol h5{
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
  }
  .footcol h5::before{
    position: absolute;
    bottom: -10px;
    background-color: #fff;
    height: 2px;
    width: 20px;
    content: '';
  }
  .footcol ul{
    line-height: 30px;
  }
  footer .flexicon a:hover i{
    color: #fff;
  }
  .bottom-right a{
    opacity: 1;
  }
  .bottom-foot{
    display: flex;
    justify-content: space-between;
  }
  .footcol a:hover{
    opacity: 1;
  }
  footer .flexicon{
    border: none;
    display: flex;
    gap: 15px;
  }
  .footer-left{
    position: relative;
  }
  .footerpos{
    position: relative;
    background-color: #fff;
    width: 100%;
    margin-top: -20px;
    padding: 25px;
    border-top-right-radius: 20px;
    box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    height: calc(100% + 20px);
  }
  .footerpos .para{
    color: #333;
  }
  .top-footpos img{
    width: 150px;
  }
  .reach .footcol h5{
    color: #2d2b72;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
  }
  .reach .footcol h5::before{
    display: none;
  }
  .reach .footcol img{
    width: 20px;
    filter: brightness(0)invert(1);
  }
  .leftcol a, .flexcolumn p{
    color: #333;
  }
  .reach .footcol{
    display: flex;
    gap: 10px;
  }
  .flexcolumn{
    flex-direction: column;
  }
  .flexcolumn i{
    color: #333;
    font-size: 1rem;
  }
  .flexcolumn p{
    margin-bottom: 0;
  }
  .flexcolumn .flexicon a:hover i{
    color: #2d2b72;
    transform: none;
  }
  .footcol{
      padding-left: 10px;
  }
  .footicn{
    display: flex;
    background: #2d2b72;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }
  .socialfoot img{
    width: 20px !important;
    filter: none !important;
  }
  .socialfoot a{
    opacity: 1 !important;
    border: 1px solid #12113c29;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
  }
  .socialfoot a:hover{
    background-color: #2d2b72;
  }
  .socialfoot a:hover img{
    filter: brightness(0)invert(1) !important;
  }
  .endcol a{
    border: 1px solid #12113c29;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 20px;
    transition: all .3s;
  }
  .endcol a:hover{
    background-color: #2d2b72;
    color: #fff;
  }
.endcol{
  flex-flow: wrap;
  display: flex;
  gap: 15px;
}
  /* brands */
  .mainhead{
    font-weight: 600;
    font-size: 2.3rem;
  }
  .brands{
    background-color: #f9f9f9;
    position: relative;
  }
  .brandbox{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
  }
  .brandpagination{
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: auto !important;
    padding: 5px 5px;
    border: 1px solid #eee;
    background: #fff;
    bottom: 20px !important;
    margin: auto;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 20px;
  }
  .brandSwiper{
    margin-bottom: 20px !important;
  }

/* about */
.abtimg img{
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.circle{
  height: 85px;
  width: 85px;
  background: #12113c;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 10px;
  right: 0;
  padding: 15px;
}
.aboutbox{
  padding-left: 30px;
}
.subhead{
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  padding-left: 30px;
  color: #12113c;
}
.subhead::before{
  position: absolute;
  content: '';
  height: 2px;
  width: 20px;
  top: 50%;
  background-color: #12113c;
  left: 0;
}
.red{
  color: #ec1f28;
}
.features{
  border-radius: 20px;
}
.features p{
  margin: 0;
}
.featicn img{
  width: 50px;
  margin-bottom: 10px;
  filter: brightness(0)invert(1);
}
.featicn{
  background: #ec1f28;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 10px;
}
@media(min-height: 650px){
  .abtimg img{
    height: 540px;
    width: 100%;
    object-fit: cover;
  }
  .circle{
    height: 75px;
    width: 75px;
    top: 4px;
  }
}
/* products */
.products{
  position: relative;
}
.products::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #2d2b7224;
  top: 0;
}
.category ul{
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 25px;
  flex-flow: nowrap;
  overflow: hidden;
  overflow-x: auto;
}
.category ul li{
  border: 1px solid #2d2b7224;
  padding: 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  flex: 1 0 auto;
  transition: all .3s;
}
.category ul li:hover{
  border: 1px solid #2d2b72;
}
.category ul li:hover span{
  background-color: #2d2b72;
}
.category ul li:hover img{
  filter: brightness(0)invert(1);
}
.category ul li a{
  color: #242424;
  display: flex;
  gap: 10px;
  align-items: center;
}
.category ul li a  span{
  display: flex;
  height: 45px;
  width: 45px;
  background-color: #12113c1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}
.category ul li a  span img{
  width: 25px;
}
.prohead{
  font-weight: 600;
  color: #12113c;
}
.productcont{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.productcont h6{
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
.product-box{
  padding: 15px;
  border: 1px solid #2d2b7224;
  border-radius: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.product-box:hover img{
  transform: scale(1.1);
}
.prodSwiper{
  height: 100%;
}
.prodSwiper .swiper-slide{
  margin-bottom: 15px !important;
}
/* @media(min-height: 650px){
  .prodSwiper{
    height: 635px;
  }
} */
 .product-sec .headbtn{
  background: transparent;
  color: #000;
 }
 .product-sec .headbtn:hover{
  background-color: #2d2b72;
  color: #fff;
 }
 .product-sec .headbtn:hover img{
  filter: brightness(0)invert(1);
 }
.prodflex{
  display: flex;
  justify-content: space-between;
}
.prodbtns{
  position: relative;
}
.swiper-button-next, .swiper-button-prev{
  top: 21px !important;
}
.swiper-button-next::after, .swiper-button-prev::after{
  font-size: 20px !important;
  color: #fff !important;
}
.swiper-button-prev, .swiper-button-prev{
  left: -112px !important;
  top: 21px !important;
}
.swiper-button-next{
  left: -60px !important;
}
.swiper-button-next, .swiper-button-prev{
  background: #2d2b72;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  transition: all .3s;
  border: 1px solid #2d2b72;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  background: #fff;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after{
  color: #2d2b72 !important;
}
.milkSwiper .product-box{
  min-height: 290px;
}
.lineclamp{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
.banimg img{
  border-radius: 20px;
}
.productimg img{
    margin: auto;
    /*height: 63%;*/
    /*margin-top: 17%;*/
}
.productcont p{
  text-align: center;
  font-size: 0.8rem !important;
}
.mobnext, .mobprev{
  display: none !important;
}

.btcont{
  cursor: pointer;
}


.mobilemenu ul{
  display: flex;
  gap: 15px;
  flex-flow: wrap;
}
.mobilemenu ul li{
  border: 1px solid #ffffff2e;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-radius: 20px;
}


.banSwiper{
  margin-top: 30px;
}



.sld-mob{
    display:none;
}


/* responsive */
@media(min-width: 992px) and (max-width: 1199px){
.mid-header ul, .left-header{
  gap: 10px;
}
.mid-header ul li a{
  font-size: 0.9rem;
}
.headbtn{
  padding-left: 20px;
  padding-right: 20px;
}
}

@media(max-width: 1199px){
  .achievement-box{
    width: 85%;
  }
  .mainpagination{
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: auto !important;
    width: 30px!important;
    padding: 15px 6px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    left: 10px !important;
    bottom: 50% !important;
    transform: translateY(50%) !important;
  }
  .achiv-flex {
    gap: 10px;
}
.achiv-flex::after {
  right: 0;
}
}

@media(max-width: 1199px){
   .mob-header{
    display: block;
    width: 30px;
  } 
  .mid-header, .left-header{
    display: none;
  }
}

@media(max-width: 991px){
  .abtimg img{
    margin: auto;
  }
  .achiv-flex{
    gap: 20px;
  }
  .achi-cont h5{
    font-size: 1.5rem;
  }
  .achievement-box{
    height: 150px;
    padding: 15px;
  }
  .noline::after, .mid-header, .left-header{
    display: none;
  }
  .aboutbox{
    padding-left: 0;
  }
  .footerpos{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .reach{
    display: flex;
    flex-flow: wrap;
  }
  .reach .footcol{
    flex: 1 0 auto;
  }
  .brandpagination{
    bottom: 30px !important;
  }
  .mob-header{
    display: block;
    width: 30px;
  }
}





@media(max-width: 767px){
    .slider{
  height: 83vh;
}
.mainSwiper {
  height: calc(83vh - 200px);
}
.achievement-box{
  bottom: 4rem;
}
.sld-desk{
    display:none;
}
.sld-mob{
    display:block;
}
}




@media(max-width: 575px){
  .achiv-flex{
    gap: 5px;
  }
  .achi-cont h5{
    font-size: 1.5rem;
  }
  .achi-cont p{
    font-size: 0.9rem;
  }
  .achiv-flex img{
    width: 30px;
  }
  .achievement-box{
    height: 140px;
  }
  .features br, .mainhead br, .nonefoot, .headbtn span{
    display: none !important;
  }
  .circle{
    top: 0;
  }
  .swiper-button-prev, .swiper-button-prev {
    left: 0px !important;
    top: 50% !important;
}
.swiper-button-next{
    top: 50% !important;
    left: auto !important;
    right: -15px !important;
    border-radius: 0 !important;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}
.swiper-button-prev{
  top: 50% !important;
  border-radius: 0 !important;
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  left: -15px !important;
}
.product-sec .headbtn{
  float: right;
  margin-bottom: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
}
.prodflex .prohead{
  margin: 0;
  width: 100%;
}
.swiper-button-next, .swiper-button-prev {
  background: #2d2b72;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: all .3s;
  border: 1px solid #2d2b72;
}
.prodSwiper {
  height: 100%;
}
.banSwiper{
  margin-top: 30px;
}
.product-box {
  min-height: 200px;
  padding: 10px;
} 
.para{
  line-height: normal;
}
.productcont{
  padding-top: 0;
  position: relative;
}
.milkSwiper .product-box {
  min-height: 215px;
}
.milkSwiper{
  height: 215px;
}
.bottom-foot {
  flex-direction: column;
  align-items: center;
}
.footcol h5 {
  margin-bottom: 20px;
  font-size: 1rem;
}
.abtimg img{
  height: unset;
}

.achievement-box{
  bottom: 5rem;
}

.prodbtns{
  width: 100%;
}
.right-header{
  width: 130px;
}
.achievements{
  padding-bottom: 2rem;
}
.slider{
  padding-top: 100px;
}
.mobnext, .mobprev{
  display: flex !important;
}
.reach .footcol {
  flex: 1 0 100%;
}
.othrmnu{
  display: none !important;
}
.footerpos{
  padding: 20px;
}
.mobilemenu ul{
  gap: 11px;
}
}


.productimg{
    background: url(../img/images/container-bac.png);
    background-size: contain;
}






/*pricefilter*/
.priceslider{
   max-width: 100%;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0px 0px 9px 0px #0000002b;
    border-radius: 7px;
padding-bottom: 26px;
}

.priceslider .slider-track {
    height: 3px;
    background: #9e9e9e;
    position: relative;
    border-radius: 5px;
    margin-top: 22px;
    }

    .priceslider .range {
      position: absolute;
      height: 3px;
      background: #2d2b72;
      border-radius: 5px;
      top: 0;
    }

    .priceslider input[type="range"] {
         position: absolute;
    width: 100%;
    top: -6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    padding: 0;
    border: none;
    z-index: 11;
    }

    .priceslider input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      pointer-events: auto;
      height: 15px;
      width: 15px;
      background: #2d2b72;
      border: 5px solid #2d2b72;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      cursor: pointer;
    }

    .priceslider .values {
      display: flex;
      justify-content: space-between;
     margin-top: 20px;
    }

    .priceslider .value-box {
     background: #2d2b72;
    color: #fff;
    padding: 8px 13px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    font-weight: 500;
    }

    .priceslider .inputs {
      margin-top: 25px;
      display: flex;
      justify-content: space-between;
      display:none;
    }

    .priceslider .inputs input {
      width: 40%;
      padding: 10px;
      font-size: 16px;
      border: 2px solid #a0d2eb;
      border-radius: 8px;
      text-align: center;
      color: #222;
    }

    .priceslider .inputs span {
      display: flex;
      align-items: center;
      font-size: 18px;
      font-weight: bold;
      color: #444;
    }




@media(max-width: 1300px){
    .right-header {
    width: 104px;}
    .mid-header ul {
    gap: 15px;
}
   
.left-header {
 
    gap: 10px;
}
header.active .right-header {
    width: 104px;
   
}
}





/*modal*/
.mymodal .btn-close{
	    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 0.5rem;
    background-color: #2d2b72;
    z-index: 9;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 1;
    color: white;
    border: none;
}









.prdctclr{
   background: #ececff;
    border-radius: 14px;
    height: 200px;
    padding: 15px;
    box-shadow: inset 0px 0px 9px 0px #aeaed1;
}
.prdctclr img {
    margin: auto;
    height: 100%;
    margin-top: 0;
}



.error
{
	width: 100%;
	margin-top:.25rem;
	font-size: 80%;
	color:#dc3545;
	text-align: right;
	display: block;
}
