 .carousel-wrap {
    width: 1000px;
    margin: auto;
    position: relative;
  }
  .owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
      background: #2caae1;
  }
.who-we-are-content li h3 {
    font-size: 19px;
    list-style: none;
    font-family: "Mulish", Sans-serif;
}
ul.who-we-are-content {
    padding: 0;
    list-style: none;
}

  .owl-carousel .item {
      text-align: center;
  }
  .owl-carousel .nav-btn{
      height: 47px;
      position: absolute;
      width: 26px;
      cursor: pointer;
      top: 100px !important;
  }

  .owl-carousel .owl-prev.disabled,
  .owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
  }

  .owl-carousel .prev-slide{
      background: url(public/assets/images/nav-icon.png) no-repeat scroll 0 0;
      left: -33px;
  }
  .owl-carousel .next-slide{
      background: url(public/assets/images/nav-icon.png) no-repeat scroll -24px 0px;
      right: -33px;
  }
  .owl-carousel .prev-slide:hover{
     background-position: 0px -53px;
  }
  .owl-carousel .next-slide:hover{
    background-position: -24px -53px;
  }
  .single-who-we-are.boxx1 {
    margin-bottom: 20px;
    background: #f5f5f5;
    padding: 20px;
    /* max-height: 100%; */
    min-height: 150px;
}

  span.img-text {
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    font-size: 23px;
    display: block;
    text-transform: capitalize;
  }
  span.img-text:hover {
    color: #2caae1;
  }
  section.product-images .item {
    padding: 0!important;
    margin-top: 105px;

}

.shivam_animation_iconsize
{
    width: 200%;
  height: 100%;
  max-width: 200% !important;
  margin: 1em 0em 0em 5.5em;
}


@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.shivam-animation1 img
{
    /*filter: invert(100%); */
    -webkit-animation: blink 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 1s;
    -moz-animation-iteration-count: infinite;
    -o-animation: blink 1s;
    -o-animation-iteration-count: infinite;
}
.shivam-animation img
{
    filter: invert(100%); 
    -webkit-animation: blink 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 1s;
    -moz-animation-iteration-count: infinite;
    -o-animation: blink 1s;
    -o-animation-iteration-count: infinite;
}
    .shivam-animation h3
                    {
						-webkit-animation: color-change 1s infinite;
						-moz-animation: color-change 1s infinite;
						-o-animation: color-change 1s infinite;
						-ms-animation: color-change 1s infinite;
						animation: color-change 1s infinite;
					}
					
					@-webkit-keyframes color-change {
						0% { color: red; }
						50% { color: White; }
						100% { color: red; }
					}
					@-moz-keyframes color-change {
						0% { color: red; }
						50% { color: white; }
						100% { color: red; }
					}
					@-ms-keyframes color-change {
						0% { color: red; }
						50% { color: white; }
						100% { color: red; }
					}
					@-o-keyframes color-change {
						0% { color: red; }
						50% { color: white; }
						100% { color: red; }
					}
					@keyframes  color-change {
						0% { color: red; }
						50% { color: white; }
						100% { color: red; }
					}
					
					

/***************************************** banner start **********************************/
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px; /* Adjust as needed */
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  max-width: 100%; /* Ensures image does not overflow */
}

.carousel-item img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}

/*********************************** for banner *********************************/

/* Optional: Add some styles for better appearance on mobile */
@media (max-width: 768px) {
  .carousel-container {
    gap: 5px; /* Adjust as needed */
  }
  
  .slick-slide {
      display: none;
      float: left;
      height: 20% !important;
      min-height: 0px !important;
    }

}

/****************************** product card desgin grid view ********************************/

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px;
    padding: 20px;
}

.product-card {
    border: 1px solid #3e4095;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-details p {
    font-size: 14px;
    color: #666;
}

#infinite-scroll-trigger {
    height: 1px;
}
section.contactpage-form iframe {
    width: 100%;
}
section.privicy-policy-sec h1, section.privicy-policy-sec h2 {
    font-size: 28px;
    font-weight: 600;
}
section.privicy-policy-sec ul {
    padding:0px;
    list-style:none;
}
section.privicy-policy-sec ul li {
    list-style: circle;
}
section.privicy-policy-sec ul {
    padding-left: 30px;
    list-style: none;
}
/*#################################### Loard More button ************************************************/
.product-card {
            display: none;
            margin-top: 1rem;
        }

        #product-cards {
            margin-top: -1rem;
        }

        #load-more {
            display: inline-block;
            padding: 7px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #3e4095;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        #search-box {
            max-width: 400px; /* Adjust as needed */
        }




.single-urgent1,
.single-urgent1 img
{
    background: white;
    height:100% !important;
    padding: 0.2em;
}

.urgent-area
{
    margin:0px !important;
}





.wave{
  height: 50px;
  position: relative;
  background: linear-gradient(90deg, #27b6b9 0%, #0f4061 100%);
}

/* Wave text css */
.wave {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 32pt;
  padding-top: 35px;
  padding-bottom: 100px;
  
}
/* */


.wave::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image:
   radial-gradient(circle at 10px -5px, transparent 12px, #fff 13px);
}
.wave::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image:
    radial-gradient(circle at 10px 15px, #fff 12px, transparent 13px);
}


.single-urgent1 {
    background-color: white; /* Card background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    margin: 15px; /* Space around each card */
    overflow: hidden; /* Ensure content doesn't overflow */
    transition: transform 0.2s; /* Smooth scaling effect */
}

.single-urgent1:hover {
    transform: scale(1.05); /* Slightly enlarge card on hover */
}

/************vikas singh***********/

.slick-dotted.slick-slider {
    margin-top: -116px;
}


.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
}

ul.navbar-nav li a {
    font-family: "Mulish", Sans-serif;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0px 15px 0px 15px;
}


a.default-btn {
    border-radius: 50px;
    padding: 7px 20px 7px 20px;
}
.footer-back-one {
    height: 100%;
    border-radius: 10px;
    padding: 10px;
}

.footer-back-two {
    height: 100%;
    border-radius: 10px;
    padding: 10px;
}
.footer-back-three {
    height: 100%;
    border-radius: 10px;
    padding: 10px;
}
.footer-back-four {
    height: 100%;
    border-radius: 10px;
    padding: 10px;
}

form.row {
    padding-top: 14px;
    padding-left: -1px;
    padding-bottom: 158px;
    height: 440px;
    color: #111111;
    border: 1px solid #eee; 
    background-color: none !important;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.5s;
    border-radius: 5px;
}
.footer-area {
    background: #3e4095 !important;
    padding: 100px 0px 30px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    background-attachment: fixed !important;
    background-image: url(../images/Footer.bgnew.jpg) !important;
}
.footer-area:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffff85;
    top: 0px;
    position: absolute;
    left: 0px;
}
.product-1 .col-lg-1 {
    border: 2px solid #fff;
}


.excellence-heading h3 {
	font-size: 36px !important;
	margin-bottom: 51px !important;
	font-weight: 500 !important;
}

.product-category-main .section-Categories span.top-title {
    color: #000;
    font-weight: 700;
}
.product-category-main {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background: #f5f5f5;
}
.product-category-main .section-Categories span.top-title {
    color: #000;
    font-weight: 700;
}
.product-1 h3 {
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	color: white;
}

.product-2 h3 {
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	color: white;
}

.product-3 h3 {
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	color: white;
}

.product-4 h3 {
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	color: white;
}



.section-Categories .top-title {
	font-weight: 500;
	font-size: 36px;
	line-height: 32px;
	color: #ffffff;
	display: block;
	margin-bottom: 19px;
	text-align: center;
}

.choose-us-content h2 {
	font-family: soleil, sans-serif;
	font-size: 34px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.05em;
	text-decoration: none;
	text-transform: none;
	letter-spacing: -1.8px;

	margin-bottom: 0.46em;
}

.choose-us-content p {
	color: #000000;
	font-family: "Mulish", Sans-serif;
	font-weight: 500;
	font-size: 17px;
}

.count-title {
	font-size: 40px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 0;
	color: #000;
	text-align: center;
}
h2.testing-disply {
	text-align: center;
	padding-top: 50px;
}

section.testing-wrap-main {
	background-image: url(/assets/images/footer-bg.jpg);

}

h2.testing-disply {
	text-align: center;
	padding-top: 50px;
	color: white;
}

.single-who-we-are {
    margin-bottom: 5px;
    padding: 0px;
    border: 0px;
    margin-top: 20px;
}
.single-who-we-are h3 {
	font-size: 21px;
	margin-bottom: 15px;
	line-height: 16px;
	color: #3e4095;
	font-weight: bold;
}



.manual-wrap-main .row {
	align-items: center;
}

.Paediatric-Range-wrap {
	background-color: #f7efed;
}


.Gynae-Range-wrap {
	background-color: #f6edf2;
}

.Derma-Range-wrap {
	background-color: #edf7f0;
}

.Respiratory-wrap {
	background-color: #edf3f6;
}

.divion-logo {
	border: solid 1px;
	margin-top: 19px;
	padding: 10px;
	border-radius: 10px;
}
.galleryslider button.slick-arrow::before, .galleryslider button.slick-arrow::after {
        color: #000000 !important;
        font-size: 28px;
}
.product-1 .col img {
	width: 100%;
	max-width: 150px;
	transition: transform 0.3s ease;
}

.product-1 .col img:hover {
	transform: scale(1.1);
}

.product-2 .col img {
	width: 100%;
	max-width: 150px;
	transition: transform 0.3s ease;
}

.product-2 .col img:hover {
	transform: scale(1.1);
}


.product-3 .col img {
	width: 100%;
	max-width: 150px;
	transition: transform 0.3s ease;
}

.product-3 .col img:hover {
	transform: scale(1.1);
}

.product-4 .col img {
	width: 100%;
	max-width: 150px;
	transition: transform 0.3s ease;
}

.product-4 .col img:hover {
	transform: scale(1.1);
}

.counter {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
    color:#000;
}
.counter img {
	width: 80px;
	transition: transform 0.3s ease;
}

.counter:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.counter:hover img {
	transform: scale(1.1);
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.who-we-are-area .col-lg-6:first-child {
	animation: slideInLeft 1s ease-in-out forwards;
}

.who-we-are-area .col-lg-6:last-child {
	animation: slideInRight 1s ease-in-out forwards;
}


.Paediatric-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Paediatric-Range-wrap img:hover {
	transform: scale(1.1);
}




.Derma-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Derma-Range-wrap img:hover {
	transform: scale(1.1);
}

.Gynae-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Gynae-Range-wrap img:hover {
	transform: scale(1.1);
}

.Respiratory-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Respiratory-wrap img:hover {
	transform: scale(1.1);
}
.Sachet-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Sachet-Range-wrap img:hover {
	transform: scale(1.1);
}
.Ayurvedic-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Ayurvedic-Range-wrap img:hover {
	transform: scale(1.1);
}

.Syrup-Range-wrap img {
	width: 100%;
	max-width: 300px;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

.Syrup-Range-wrap img:hover {
	transform: scale(1.1);
}
.gallery-box-sec {
    margin-right: 12px;
}
.category-title h2 {
	font-size: 25px;
	font-weight: 600;
}

.manual-wrap-main .b-button a {
	font-weight: 600;
	border-bottom: solid 2px;
}
.divion-logo {
	overflow: hidden; /* Prevents image from overflowing */
	display: inline-block; /* Keeps container size minimal */
}

.divion-logo img {
	transition: transform 0.3s ease-in-out;
	display: block; /* Prevents extra spacing below the image */
}

.divion-logo img:hover {
	transform: scale(1.1);
}

.swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(37.5%, rgba(255, 255, 255, 0.852)), color-stop(67.19%, rgba(255, 255, 255, 0)));
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgb(62 64 149) 37.5%, rgba(255, 255, 255, 0) 67.19%);
	z-index: -1;
	display: none !important;
}
.swiper-slide {
	background-image: url(../images/hero/bg-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0px;
	padding-bottom: 0px; 
	position: relative;

}

.division-logo img {
	width: 100%; /* Ensures images are responsive */
	transition: transform 0.3s ease-in-out; /* Smooth transition effect */
}

.division-logo img:hover {
	transform: scale(1.1); /* Image zooms in on hover */
}
.division-logo img {
	width: 100%; /* Ensures images are responsive */
	border: 3px solid #000; /* Blue border */
	border-radius: 10px; /* Rounded corners */
	padding: 5px; /* Space between image and border */
	transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out; /* Smooth transition */
}

.division-logo img:hover {
	transform: scale(1.1); /* Slight zoom effect */
	border-color: #3e4095; /* Change border color on hover */
}
section.product-images .row {
	padding-top: 0px !important;
}


.custom-model-main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.custom-model-inner {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 714px;
    position: relative;
    text-align: center;
}
.pop-up-content-wrap h2 {
    font-size: 25px;
    color: #3e4095;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.pop-up-content-wrap input {
    margin: 0 0 8px 0;
}
.pop-up-content-wrap select {
    height: auto;
    padding: 12px 0;
}
.pop-up-content-wrap label {
    display: none;
}
.pop-up-content-wrap select {
    height: auto;
    padding: 6px 8px;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #6e6666;
}
.custom-formconimg .custom-model-inner-img {
    width: 100%;
}
.custom-formconimg .pop-up-content-wrap {
    width: 100%;
}
.custom-formconimg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 6px 10px;
    margin: 0px 0 8px;
    border: 1px solid #999;
    border-radius: 5px;
    background: #fff;
}
.radio-group {
	text-align: left;
	padding: 5px 0;
}

.radio-group label {
	display: block;
	padding: 5px;
	font-size: 14px;
}
.custom-formconimg button {
    background: #3e4095;
}
button {
	background: black;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
}

a.Click-here {
    position: fixed;
    right: 10px;
    top: 50%;
    z-index: 9;
}

.custom-form label {
    display: flex;
    margin-bottom: .5rem;
    font-size: 14px;
}
.carousel-2 button.slick-arrow:before, .carousel-2 button.slick-arrow:after {
    color: #3e4095 !important;
}

.product-category-main .product-all-category-inner {
    background: #00000000;
    margin-bottom: 10px;
    border: 1px dotted #ffffff;
    padding: 6px 12px 6px;
    border-radius: 6px;
    text-align: center;
}
.product-category-main .product-all-category-inner h3 {
    margin-top: 10px;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: 500;
}
.footer-back-four form.row {
    padding-left: 0px;
    padding-right: 0px;
}
            
.banner-main .slick-prev {
    left: 50px;
    z-index: 9;
}       
.banner-main .slick-next {
    right: 50px !important;
}       
.banner-main .carousel-2 button.slick-arrow:before, .banner-main .carousel-2 button.slick-arrow:after {
    font-size: 24px;
}       
.pb-50 {
    padding-bottom: 50px;
}
.pt-50 {
    padding-top: 50px;
} 
.who-we-are-area .swiper-pagination {
    display: none;
}
section.bg-counter {
    background-image: url(/assets/images/Some-Interesting-Facts-About-Us.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
} 
section.bg-counter:before {
    position: absolute;
    content: "";
    background: #ffffffb0;
    width: 100%;
    height: 100%;
    top: 0px;
}
section.bg-counter .section-title {
    margin: 0px auto 40px;
    padding-top: 0px;
}  
       
.Premium.Manufacturers-logos {
    padding-top: 20px;
}       
.go-top.active {
    display: none;
}            
.footer-back-four form.row {
    background: #ffffff;
    padding: 24px 0 0;
    border-radius: 10px;
    margin-bottom: 24px;
}            
.footer-back-four form.row .forms input {
    padding-right: 28px;
    padding-left: -6px;
    padding-top: 0px;
    padding-bottom: 0px;
    color: black;
    text-align: justify;
    background: #d5d5e8;
    border-radius: 8px;
    border: 2px solid white;
}
.footer-back-four form.row .forms textarea {
    padding-right: 28px;
    padding-left: -6px;
    padding-top: 2px;
    padding-bottom: 0px;
    color: black;
    text-align: justify;
    background: #d5d5e8;
    border-radius: 8px;
    border: 2px solid white;
}
.footer-back-four form.row .forms input::placeholder {
    color: #000;
}
.footer-back-four form.row .forms textarea::placeholder {
    color: #000;
} 
.footer-back-four button.btn.btn-theme:hover {
    background: #3e4095;
    border: 2px solid #3e4095;
    color: #fff;
}
.social-lipos a {
    color: #fff !important;
}

/**************about us***********************/
span.top-title {
    font-size: 16px;
    color: #3e4095;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}
.common-heading {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 12px;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-weight: 700;
}
.personal-info-team h3 {
    font-size: 18px;
    font-weight: bold;
}
.missioninner-box button.toggle-button {
    background: #3e4095;
    border-radius: 100px;
    font-weight: 600;
    width: auto;
    padding: 8px 24px;
}
section.missionvision-outer {
    background: #e3e3f245;
}
section.contact-page-sec h1.headingtt {
    background: #e7393e;
    margin: 34px auto 0;
    padding: 12px 0px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    outline: 8px solid #e7393e;
    color: #fff;
    font-size: 28px;
    width: 25%;
}
ul.contact-addressing-boxes {
    padding: 0pc;
    list-style: none;
}
.contact-social0list {
    display: flex;
    align-items: center;
    background: #3d3f92;
    padding: 16px 15px;
    margin-top: 5%;
    border-radius: 10px;
}
.contact-social0list a {
    margin-right: 12px;
}
.contact-left-img img {
    width: 100%;
}
.contact-page-form {
    background: url(/assets/images/contact-usform.jpg);
    border: 2px solid #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    z-index: -1;
}
.contact-page-form:before {
    background: #000000b3;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 10px;
}
.department-orthopedics-area h1.headingtt {
    margin-top: 0px;
}
ul.track-inner-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 16px;
    padding: 0px;
    list-style: none;
}
ul.track-inner-box li {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}
input#search-box {
    background: #f9f9ff;
}
.mobile-bottom .btn-outline-info {
    color: #fff;
    border-color: #006e36;
    background: #006e36;
}
.mobile-bottom {
    display: none;
}

/**************responsive************************/          
            
 @media only screen and (min-width: 768px) and (max-width: 1024px) {           
     .slick-dotted.slick-slider {
        margin-top: 0px !important;
    }  
    .count-title {
        font-size: 30px;
    }
    .footer-back-three, .footer-back-four {
        margin-top: 14px;
    }
    .others-option-for-responsive .dot-menu {
        top: -30px;
    }
    .contact-info-item .contact-info-text {
        width: 66%;
    }
    .contact-info-item {
        margin-bottom: 20px;
    }
    .contact-info-item .contact-info-text {
        width: 66%;
        overflow-wrap: break-word;
    }
  .mean-container .mean-nav ul li ul.dropdown-menu li a {
    color: #000 !important;
    opacity: 1;
}
 }  
 
 
 @media only screen and (max-width: 767px) {
    .slick-dotted.slick-slider {
        margin-top: 0px !important;
    } 
    .others-option-for-responsive .dot-menu {
        top: -30px;
    }
    .single-who-we-are {
        margin-bottom: 5px;
        padding: 0px;
        border: 0px;
    }
    .Paediatric-Range-wrap a img, .Derma-Range-wrap a img, .Gynae-Range-wrap a img, .Respiratory-wrap a img {
        margin-bottom: 14px !important;
    }
    .section-title .top-title {
        font-size: 28px !important;
    }
    .footer-area {
        padding: 60px 0px !important;
    }
    .footer-back-one, .footer-back-two, .footer-back-three {
        margin-bottom: 14px;
        height: auto !important;
    }
    .footer-form {
        display: none;
    }
    section.product-images {
        margin: 0px 0px !important;
    }
    
    .social-lipos {
        display:none;
    }
    a.Click-here {
        display: none;
    }
   .mobile-bottom {
        position: fixed;
        bottom: 0;
        background: #aa1824;
        width: 100%;
        display: block !important;
        z-index: 99;
    }
    .mobile-bottom  ul {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        margin: 0;
        padding: 0px;
        list-style: none;
    }
    li.fsd-one {
       background-color: #384c8a;
       padding: 10px;
    }
    li.fsd-two {
       background-color: #25d366;
       padding: 10px;
    }
    li.fsd-three {
        background: #d91e29;
        padding: 10px;
    }
    
    .modal {
        background: #0000009c;
    }
    .modal-content {
        height: fit-content;
        top: 24%;
        width: 98%;
        padding: 40px 20px;
        margin: 0 auto;
    }
    .modal-content .form-control {
        border: none;
        font-size: 15px;
        border: 1px solid #9d9d9d;
    }
    .close {
        font-size: 28px;
        margin-top: -18px;
    }
    .mobile-bottom span.close1 {
        background: #000000;
        right: 0px;
        padding: 20px;
        width: 34px;
        height: 34px;
        position: absolute;
        z-index: 9;
        opacity: 1;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0px;
        font-size: 34px;
    }
    .mobile-bottom  ul a{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    .pt-70 {
        padding-top: 50px;
    }
    .mean-container .mean-nav ul li ul.dropdown-menu li a {
        color: #000 !important;
        opacity: 1;
    }
    .b-button.shop-btn.s-btn.text-md-right {
        text-align: center;
        margin-bottom: 10px;
    }
    .section-Categories .top-title {
        font-size: 28px;
        line-height: normal;
    }
    .slick-prev {
        left: 3px !important;
        z-index: 9;
    }
    .Sachet-Range-wrap img, .Ayurvedic-Range-wrap img, .Syrup-Range-wrap img   {
        margin: 10px auto 10px;
    }
    .copy-right-area {
        padding-top: 20px;
        padding-bottom: 80px;
    }
    .page-banner-content ul li {
        padding: 4px 16px;
        margin-right: 10px;
    }
    .missioninner-box {
        margin-top: 15px;
    }
    .product-grid {
        padding: 0px;
    }
    .product-card {
        padding: 0px;
    }
    .sidebar-cat {
        margin-top: 20px;
    }
    section.contact-page-sec h1.headingtt {
        width: 90%;
    }
    .contact-info-item .contact-info-text {
        width: 64%;
    }
    .contact-info-item {
        margin-bottom: 10px;
    }
    ul.contact-addressing-boxes {
        margin-top: 30px;
    }
    .category-title h2 {
        text-align: center;
    }
    .banner-main .slick-next {
        right: 8px !important;
    }
}
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            

