* {
    padding: 0;
    margin: 0;
    text-decoration: inherit;
    outline: inherit;
    box-shadow: none;
    box-sizing: border-box;
}
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
b,
strong {
    font-weight: 500;
}
h5 b,
h5 strong,
h6 b,
h6 strong {
    font-weight: 500;
}
p b,
p strong {
    font-weight: 600;
}
a {
    color: var(--textColor);
    text-decoration: none;
}
a:hover {
    color: var(--primaryColor);
}
:focus {
    outline: inherit;
    box-shadow: inherit;
}
.lightGrayBg {
    background-color: var(--lightGrayColor) !important;
}
.lightpurpleBg {
    background-color: var(--lightPurpleColor) !important;
}
.secondaryBg {
    background-color: var(--secondaryColor) !important;
}
.primaryBg {
    background-color: var(--primaryColor) !important;
}
.orangeColorBg {
    background-color: var(--orangeColor) !important;
}
.lightWhiteBg {
    background-color: var(--lightWhiteColor) !important;
}
.bg-fixed {
    background-attachment: fixed;
}
.whiteColor {
    color: var(--whiteColor) !important;
}
/*line-menu-ul*/
.line-menu-ul {
    width: 100%;
    display: inline-block;
}
.line-menu-ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}
.line-menu-ul ul li {
    margin: 0;
    padding: 5px 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}
.line-menu-ul ul li a {
    color: var(--textColor);
    font-size: var(--normalTextFont);
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--textFontFamily);
    margin-bottom: 0;
    transition: 0.3s ease;
}
.line-menu-ul ul li a:hover {
    color: var(--primaryColor);
}
.line-menu-ul ul li:first-child {
    padding-top: 0;
}
.line-menu-ul ul li:last-child {
    padding-bottom: 0;
}
.line-menu-ul.line-menu-col-two ul {
    margin: 0 -12px;
}
.line-menu-ul.line-menu-col-two ul li {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    float: left;
}
.line-menu-ul.line-menu-col-two ul li:nth-child(2) {
    padding-top: 0;
}
/*line-menu-ul*/
/*social*/
.social-ul {
    width: 100%;
    display: inline-block;
}
.social-ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}
.social-ul ul li {
    margin: 0;
    padding: 0 4px;
    list-style: none;
    width: auto;
    display: inline-block;
}
.social-ul ul li a {
    color: var(--textColor);
    font-size: var(--lgHeadingFont);
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--textFontFamily);
    margin-bottom: 0;
    transition: 0.3s ease;
}
.social-ul ul li a:hover {
    color: var(--primaryColor);
}
.social-ul ul li:first-child {
    padding-left: 0;
}
.social-ul ul li:last-child {
    padding-right: 0;
}
/*social*/
.title-link-con {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-link-con .link-icon-text {
    color: var(--primaryColor);
}
.new-event-con {
    position: relative;
}
.new-event-con .new-event-card-col {
    padding: 50px 30px;
    width: 100%;
    border: 1px solid transparent;
    background: var(--lightGrayColor);
    transition: 0.3s;
    margin: 12px auto;
}
.new-event-con .new-event-card-col:hover {
    /* transition: 0.0s;
    */
    background: var(--primaryColor);
}
.new-event-con .new-event-card-col:hover .ew-event-card-caption .card-date {
    color: var(--whiteColor);
}
.new-event-con .new-event-card-col:hover .ew-event-card-caption .tagline {
    color: var(--whiteColor);
}
.new-event-con .new-event-card-col:hover .ew-event-card-caption p {
    color: var(--whiteColor);
}
.new-event-con .new-event-card-col:hover .link-icon-text {
    color: var(--whiteColor);
}
.new-event-con .new-event-card-col:hover .link-icon-text:hover {
    color: var(--whiteColor);
}
.new-event-con .new-event-card-col .ew-event-card-caption .card-date {
    font-weight: 600;
}
.new-event-con .new-event-card-col .ew-event-card-caption .tagline {
    font-size: var(--smTextFont);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
}
.new-event-con .new-event-card-col .link-icon-text {
    color: var(--textColor);
}
.new-event-con .new-event-card-col .link-icon-text:hover {
    color: var(--primaryColor);
}
.new-event-con .new-event-card-none .new-event-card-col {
    padding: 0 15px 0 0 !important;
    background-color: transparent !important;
    margin: 20px 0 !important;
}
.new-event-con .new-event-card-none .new-event-card-col .ew-event-card-caption .card-date {
    color: var(--textColor) !important;
}
.new-event-con .new-event-card-none .new-event-card-col .ew-event-card-caption .tagline {
    color: var(--textColor) !important;
}
.new-event-con .new-event-card-none .new-event-card-col .ew-event-card-caption p {
    color: var(--textColor) !important;
}
.new-event-con .new-event-card-none .new-event-card-col .link-icon-text {
    color: var(--textColor) !important;
}
.new-event-con .new-event-card-none .new-event-card-col .link-icon-text:hover {
    color: var(--primaryColor) !important;
}
.video-full-con {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80vh;
    min-height: 450px;
    background-color: var(--lightGrayColor);
}
.video-full-con .video-full-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video-full-con .video-full-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}
.video-full-con .video-full-bg::after {
    content: "";
    background-color: rgb(0 0 0 / 10%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.video-full-con .video-caption-col {
    position: relative;
}
.video-full-con .video-caption-col .link-icon-text-con {
    display: inline-block;
}
.video-full-con .container {
    position: relative;
    z-index: 3;
}
.video-full-con .full-video-caption {
    position: relative;
}
.video-full-con .full-video-caption .tagline {
    color: var(--lightWhiteColor);
}
.video-full-con .full-video-caption h2 {
    color: var(--lightWhiteColor);
}
.video-full-con .full-video-caption p {
    color: var(--lightWhiteColor);
}
.video-full-con .full-video-caption .link-icon-text {
    color: var(--lightWhiteColor);
}
.innovation-con {
    position: relative;
    background-color: var(--secondaryColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: url("../images/research-bg.jpg");
    */
    padding-top: 260px;
    min-height: 450px;
    background-attachment: fixed;
}
.innovation-con .innovation-caption {
    position: relative;
}
.innovation-con .innovation-caption .innovation-caption-col {
    width: 100%;
    background: var(--whiteColor);
    padding: 90px 60px;
}
.innovation-con .container {
    position: relative;
    z-index: 2;
}
.innovation-con .innovation-video-full-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.innovation-con .innovation-video-full-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}
.product-con {
    position: relative;
}
.product-con .product-card-col-title-box {
    background: transparent !important;
    padding-left: 0 !important;
    transform: inherit !important;
    border-color: transparent !important;
    box-shadow: inherit !important;
}
.product-con .product-card-col {
    background-color: var(--lightGrayColor);
    padding: 42px 30px;
    width: 100%;
    border: 1px solid var(--lightGrayColor);
    transition: all 0.3s ease-in;
    margin: 12px auto;
}
.product-con .product-card-col:hover {
    /* transition: 0.0s;
    */
    background-color: var(--primaryColor);
}
.product-con .product-card-col:hover .product-card-caption h5 {
    color: var(--whiteColor);
}
.product-con .product-card-col:hover .product-card-caption h6 {
    color: var(--whiteColor);
}
.product-con .product-card-col:hover .product-card-caption p {
    color: var(--whiteColor);
}
.product-con .product-card-col:hover .product-card-icon img {
    filter: grayscale(0) brightness(3);
}
.product-con .product-card-col .tagline {
    font-size: var(--smTextFont);
    font-weight: 500;
    opacity: 0.95;
}
.product-con .product-card-col .link-icon-text {
    color: var(--primaryColor);
}
.product-con .product-card-col .product-card-icon {
    margin-bottom: 15px;
}
.product-con .product-card-col .product-card-icon img {
    width: 65px;
}
.product-con .product-card-col .product-card-caption {
    padding-top: 42px;
}
.product-con .product-card-col .product-card-caption h6 {
    position: relative;
}
.product-con .product-card-col .product-card-caption h5 {
    position: relative;
}
.product-con .product-card-col .product-card-caption p {
    font-size: 16px;
    margin-bottom: 0;
}
/*home slider*/
.home-slider-con {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--lightGrayColor);
}
.home-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--lightGrayColor);
}
.home-slider .home-slider-col {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--whiteColor);
}
.home-slider .home-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.home-slider .owl-stage-outer {
    height: 100%;
}
.home-slider .owl-stage-outer .owl-stage {
    height: 100%;
}
.home-slider .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}
.home-slider .owl-item.active .home-slide-bg {
    animation: kenburns 10s linear infinite alternate;
}
/* Styling for Tagline */
.home-slider-caption {
    display: flex;
    width: 100%;
    height: 100%;
}
/**/
.about-con {
    position: relative;
    overflow: hidden;
}
.about-con .about-caption {
    padding-left: 40%;
    padding-right: 12%;
}
.about-con .about-caption p {
    font-size: 20px;
}
.about-con:after {
    content: "";
    background-color: transparent;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/about-bg.png);
    position: absolute;
    z-index: -1;
    left: -60px;
    bottom: 0;
    width: 33.33%;
    height: 90%;
    opacity: 0.5;
}
.brands-card-col {
    border: solid 1px var(--lightWhiteColor);
    background-color: var(--whiteColor);
    width: 100%;
    position: relative;
    padding: 60px 40px;
    min-height: 350px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin: 12px auto;
}
.brands-card-col:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 2px 40px 0 rgb(0 0 0 / 12%);
}
.brands-card-col .brands-card-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: 100%;
}
.brands-card-col .brands-card-full .brands-card-img {
    width: 140px;
    padding: 0 8px;
    text-align: center;
}
.brands-card-col .brands-card-full .brands-card-caption {
    width: calc(100% - 140px);
    padding: 0 15px;
}
.steriport-card.brands-card-col .brands-card-full .brands-card-caption {
    width: calc(100%);
}
.steriport-card.brands-card-col {
    min-height: 220px;
}
.brands-card-full .brands-card-caption p{
    font-size: 21px;
}
.brands-card-col .brands-card-full .brands-card-caption img {
    margin-bottom: 20px;
}
.innovations-img .brands-card-caption img {
    width: 180px;
} 
/*.brands-card-col .brands-card-full .brands-card-caption .link-icon-text {
    color: var(--textColor);
}*/
/*.brands-card-col.brands-card-col-bg {
    background-color: var(--lightGrayColor);
}*/
/*.brands-card-col.brands-card-col-bg .brands-card-full .brands-card-caption .link-icon-text {
    color: var(--whiteColor);
}*/
.brands-card-col.brands-card-col-full-card {
    position: relative;
}
.brands-card-col.brands-card-col-full-card .brands-card-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60% !important;
    height: auto;
    z-index: 0;
    padding: 0;
}
.brands-card-col.brands-card-col-full-card .brands-card-caption {
    position: relative;
    z-index: 1;
}
.network-con {
    position: relative;
}
.network-con .network-caption {
    position: relative;
}
.network-con .network-caption .network-caption-col {
    margin: 8px auto;
}
.network-con .network-caption .network-caption-col .link-icon-text {
    color: var(--textColor);
}
.network-con .network-caption .network-caption-col .link-icon-text:hover {
    color: var(--primaryColor);
}
.network-con .network-caption .network-map {
    position: relative;
    margin-top: 60px;
}
.brands-con {
    position: relative;
}
.brands-con .title-con {
    padding-bottom: 60px;
}
/*map */
.hot-spot {
    width: 20px;
    height: 20px;
    background-color: var(--secondaryColor);
    border-radius: 50%;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: locationDotIn 1.3s infinite ease-out;
    border: 2px solid #ffffff;
}
.hot-spot:before {
    content: "";
    width: 26px;
    height: 26px;
    border: 2px solid var(--secondaryColor);
    position: absolute;
    border-radius: 50%;
    top: -18px;
    left: -18px;
    transform: translate(50%, 50%);
    animation: locationDotOut 1.3s infinite ease-out;
    z-index: 99;
}

.speech-bubble {
    background: var(--whiteColor);
    color: var(--blackColor);
    display: block;
    padding: 9px 16px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
    box-shadow: 2px 4px 8px rgb(0 0 0 / 16%);
    margin-top: -30px;
    margin-left: 15px;
    text-align: center;
}
.speech-bubble::before {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--whiteColor);
    position: absolute;
    left: 42%;
    bottom: -8px;
    transform: rotate(45deg);
    z-index: -1;
}
.speech-bubble.active {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

/*end map*/

/*logo-list*/
.logo-list-con {
    position: relative;
}
.logo-list-con .logo-list-col {
    position: relative;
    margin: 12px auto;
    text-align: center;
    padding: 18px 0;
}
.logo-list-con .logo-list-col img {
    position: relative;
}
/*logo-list*/
/*question-box*/
.question-box-con {
    position: relative;
}
.question-box-con.question-box-bg {
    background: linear-gradient(to bottom, var(--whiteColor) 50%, var(--lightGrayColor) 50%);
}
.question-box-con .question-box-caption {
    position: relative;
    background-color: var(--secondaryColor);
    padding: 40px 60px;
}
.question-box-purple-Bg .question-box-con .question-box-caption {
    background-color: var(--lightPurpleColor);
}
.question-box-orange-Bg .question-box-con .question-box-caption {
    background-color: var(--orangeColor);
}
.question-box-con .question-box-caption h2 {
    color: var(--whiteColor);
}
.question-box-con .question-box-caption .question-caption h3 {
    color: var(--whiteColor);
    margin-bottom: 1rem;
}
.question-box-con .question-box-caption .question-caption p {
    color: var(--whiteColor);
    font-size: var(--normalTextFont);
}
.question-box-con .question-box-caption .question-caption p a {
    color: var(--whiteColor);
}
.question-box-con .question-box-caption .question-caption p:last-child {
    margin-bottom: 0;
}
.question-box-con .question-box-caption .btn-con {
    position: relative;
}
.question-box-con .question-box-caption .btn-con .white-btn {
    color: var(--lightPurpleColor);
}
.question-box-con .question-box-caption .btn-con .white-btn:hover {
    opacity: 0.9;
}
.question-box-orange-Bg .question-box-con .question-box-caption .btn-con .white-btn {
    color: var(--orangeColor);
}
.question-box-purple-Bg .question-box-con .question-box-caption .btn-con .white-btn {
    color: var(--lightPurpleColor);
}
.question-box-con .question-box-caption .btn-con .white-btn {
    color: var(--secondaryColor);
}
/*end-question-box*/
/*cir-ul*/
.cir-ul {
    position: relative;
}
.cir-ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}
.cir-ul ul li {
    margin: 12px 0;
    padding: 0 0 0 65px;
    list-style: none;
    width: 100%;
    color: var(--textColor);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--primaryFontFamily);
    position: relative;
    min-height: 60px;
    /* display: inline-flex; */
    align-items: center;
    align-content: center;
    /* flex-wrap: wrap; */
}
.cir-ul ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #999;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    padding: 15px;
    border: dashed 1px #999;
    line-height: 20px;
    bottom: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    text-align: center;
}
.cir-ul ul li a {
    color: var(--textColor);
}
.cir-ul.img-cir-ul ul li::before {
    display: none;
}
.cir-ul.img-cir-ul ul li .cir-ul-img {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    padding: 0;
    border: dashed 1px #999;
    line-height: 43px;
    bottom: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    text-align: center;
    overflow: hidden;
}
.cir-ul.img-cir-ul ul li .cir-ul-img img {
    width: auto;
    max-height: 100%;
}
/*end-cir-ul*/
.db-box-con {
    background-color: var(--lightGrayColor);
    width: 100%;
    display: inline-block;
    padding: 30px 40px;
}
.db-box-con .db-box-col {
    padding: 12px 0;
}
.db-box-con .db-box-img {
    position: relative;
    text-align: center;
}
.db-box-con .db-box-caption {
    position: relative;
}
.db-box-con .db-box-caption figure {
    margin-bottom: 24px;
}
.db-box-con .db-box-caption figure img {
    width: 240px;
    max-width: 100%;
}
.db-box-con .db-box-caption p {
    color: var(--darkGrayColor);
    opacity: 0.8;
}
.db-box-con .db-box-caption .btn-con {
    margin-top: 8px;
    width: 100%;
    display: inline-block;
}
.db-box-con.white-color-db-box .db-box-caption p {
    color: var(--whiteColor);
    opacity: 0.8;
}
.db-box-con.db-box-bg-img {
    position: relative;
    overflow: hidden;
}
.db-box-con.db-box-bg-img .db-box-caption {
    padding-bottom: 100px;
    z-index: 1;
}
.db-box-con.db-box-bg-img .db-box-img {
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 75%;
    height: auto;
    z-index: 0;
}
.db-box-con.db-box-bg-img .db-box-img img {
    width: auto;
    height: auto;
}
.testimonials-slider-con {
    position: relative;
    padding-right: 8%;
}
.testimonials-slider-con .testimonials-top-icon-con {
    position: relative;
    margin-bottom: 4px;
}
.testimonials-slider-con .testimonials-top-icon-con img {
    width: 60px;
}
.testimonials-slider-con .testimonials-slider {
    position: relative;
}
.testimonials-slider-con .testimonials-slider .testimonials-slide-col {
    position: relative;
    width: 100%;
    padding: 15px 0;
}
.testimonials-slider-con .testimonials-slider .testimonials-slide-col p {
    position: relative;
}
.testimonials-slider-con .testimonials-slider .testimonials-slide-col .name-designation-text {
    position: relative;
    margin-top: 8px;
    width: 100%;
    display: inline-block;
}
.testimonials-slider-con .testimonials-slider .testimonials-slide-col .name-designation-text p {
    color: #8978b8;
    margin-bottom: 4px;
}
.owl-bottom-arrow {
    position: relative;
}
.owl-bottom-arrow .owl-nav {
    position: relative;
}
.owl-bottom-arrow .owl-nav button.owl-prev,
.owl-bottom-arrow .owl-nav button.owl-next {
    position: relative;
    font-size: 42px;
    line-height: 1;
    color: #8978b8 !important;
    font-weight: 300;
    background-color: transparent !important;
}
.owl-bottom-arrow .owl-nav button.owl-prev.disabled,
.owl-bottom-arrow .owl-nav button.owl-next.disabled {
    opacity: 0.5;
}
.owl-bottom-arrow .owl-nav button.owl-prev {
    position: relative;
    margin-right: 20px;
}
.owl-bottom-arrow .owl-nav button.owl-next {
    position: relative;
}
/*product-banner-con*/
.product-banner-con {
    position: relative;
    background-color: transparent;
    height: auto;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    /* box-shadow: 0 1px 2px 0 rgb(0 0 0 / 15%); */
    border: 1px solid var(--lightGrayColor);
}
.product-banner-con .product-banner-col {
    padding-top: 15px;
    padding-bottom: 15px;
}
.product-banner-con .product-banner-caption {
    position: relative;
    align-self: end;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    width: 100%;
}
.product-banner-con .product-banner-caption .product-banner-caption-img {
    position: relative;
    margin-top: 30px;
    margin-bottom: 90px;
}
.product-banner-con .product-banner-caption .product-banner-caption-img img {
    width: 450px;
    max-width: 100%;
    margin-bottom: 20px;
}
.product-banner-con .product-banner-caption .product-banner-caption-img img.aerovein-text-logo{
    width: 350px;
}
.product-banner-con .product-banner-caption .product-banner-caption-img p {
    font-size: calc(var(--normalTextFont) * 1.8);
}
.product-banner-con .product-banner-caption h2 {
    margin-bottom: 30px;
}

.product-banner-con .product-banner-caption h3 {
    /* color: var(--darkGrayColor); */
    display: inline-block;
    width: 100%;
}
.product-banner-con .product-banner-caption h3 img {
    width: auto;
    height: 30px;
    vertical-align: inherit;
    margin: 0 4px;
}
.product-banner-con .product-banner-caption p {
    color: var(--darkGrayColor);
}
.product-banner-con.white-color-banner .product-banner-caption h2 {
    color: var(--whiteColor);
}
.product-banner-con.white-color-banner .product-banner-caption h3 {
    color: var(--whiteColor);
}
.product-banner-con.white-color-banner .product-banner-caption p {
    color: var(--whiteColor);
}
.product-banner-con .product-banner-img {
    position: relative;
    text-align: center;
}
/* .product-banner-con .product-banner-img img {
    width: 100%;
} */
.product-banner-con.product-banner-bg-img-con {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 750px;
}
.product-banner-con.product-banner-bg-img-con .product-banner-caption {
    position: relative;
    z-index: 3;
}
.product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
    z-index: 0;
}
.product-banner-con.product-banner-bg-img-con .product-banner-bg-img img {
    width: auto;
    height: auto;
}
/*product-banner-con*/
.two-box-col {
    padding-top: 15px;
    padding-bottom: 15px;
}
/*accordion*/
.accordion {
    position: relative;
}
.accordion .accordion-item {
    margin: 10px auto;
    padding: 0;
    border: 0;
    width: 100%;
    display: inline-block;
}
.accordion .accordion-item:first-child {
    margin-top: 0;
}
.accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.accordion .accordion-item .accordion-header {
    position: relative;
    width: 100%;
    padding: 20px 60px 20px 30px;
    background-color: var(--whiteColor);
    border: 0;
    color: var(--lightPurpleColor);
    border: 0;
    font-size: var(--xsHeadingFont);
    line-height: normal;
    cursor: pointer;
}
.accordion .accordion-item:hover .accordion-header {
    background-color: var(--lightPurpleColor);
    color: var(--whiteColor);
}
.accordion .accordion-item .accordion-header:after {
    content: "\f068";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 30px;
    top: 24px;
}
.accordion .accordion-item .accordion-header.collapsed:after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
}
.accordion .accordion-item .accordion-body {
    padding: 30px;
    border-top: 1px solid var(--lightGrayColor);
}
.accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}
/*accordion*/
.lr-text-list-con {
    position: relative;
}
.lr-text-list-con .lr-text-list-full {
    width: 100%;
    padding: 15px 0;
}
.lr-text-list-con .lr-text-list-full h6 {
    font-weight: 500;
    margin-bottom: 0;
}
.lr-text-list-con .lr-text-list-full p {
    position: relative;
}
.lr-text-list-con .lr-text-list-full p p {
    font-size: var(--xsHeadingFont);
}
.lr-text-list-con .lr-text-list-full p:last-child {
    margin-bottom: 0;
}
.lr-text-list-con .lr-text-list-full .lr-text-list-title {
    position: relative;
}
.lr-text-list-con .lr-text-list-full .lr-text-list-title h6 {
    color: var(--lightPurpleColor);
}
.lr-text-list-con .lr-text-list-full .lr-text-list-title p {
    color: var(--textColor);
}
.lr-text-list-con .lr-text-list-full .lr-text-list-text {
    position: relative;
}
.lr-text-list-con .lr-text-list-full .lr-text-list-text.dot-ul ul{
    margin-bottom: 8px;
}
/*dot-ul*/
.dot-ul {
    position: relative;
}
.dot-ul ul {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}
.dot-ul ul li {
    margin: 5px 0;
    padding: 0px 0 0 18px;
    list-style: none;
    display: inline-block;
    width: 100%;
    color: var(--textColor);
    font-size: var(--normalTextFont);
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--textFontFamily);
    position: relative;
}
.dot-ul ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--textColor);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 9px;
}
.dot-ul-white.dot-ul ul li {
    color: var(--whiteColor);
}
.dot-ul-white.dot-ul ul li::before {
    background-color: var(--whiteColor);
}
.dot-ul ul li:first-child {
    padding-top: 0;
    margin-top: 0;
}
.dot-ul ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.dot-ul ul li a {
    color: var(--textColor);
}
.dot-ul ul li a:hover {
    color: var(--primaryColor);
}

.dot-ul .li-50 ul {
    display: flex;
    flex-wrap: wrap;
}

.dot-ul .li-50 li {
    flex: 0 0 auto;
    width: 50%;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: 30px;
}
/*dot-ul*/
/*product-slider*/
.product-img-slider {
    position: relative;
}
.product-img-slider .pro-img-slide-col {
    border: 1px solid transparent;
    padding: 30px;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.product-img-slider .pro-img-slide-col img {
    height: auto;
    width: auto;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}
.product-thumb-slider {
    position: relative;
    padding: 12px 24px;
}
.product-thumb-slider .pro-thumb-slide-col {
    border: 1px solid #f7f7f7;
    padding: 15px;
    margin: 8px;
    overflow: hidden;
}
.product-thumb-slider .pro-thumb-slide-col img {
    height: 75px;
    width: auto;
    margin: 0 auto;
    text-align: center;
}
.product-thumb-slider .owl-item.current .pro-thumb-slide-col {
    border-color: var(--lightPurpleColor);
}
/*product-slider*/
/*slider dot css*/
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    background-color: var(--lightPurpleColor);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--lightPurpleColor);
    opacity: 1;
}
.owl-bottom-arrow-center {
    position: relative;
}
.owl-bottom-arrow-center .owl-nav {
    position: initial !important;
}
.owl-bottom-arrow-center .owl-prev,
.owl-bottom-arrow-center .owl-next {
    position: absolute !important;
    top: calc(50% - 50px);
}
.owl-bottom-arrow-center .owl-prev {
    left: 0;
}
.owl-bottom-arrow-center .owl-next {
    right: 0;
}
/**/
/*page-banner-con*/
.page-banner-con {
    position: relative;
    padding-top: 180px;
    padding-bottom: 20px;
    background-color: var(--lightGrayColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: url(../images/banner-grey-bg.jpg); */
}
.page-banner-con h1 {
    margin-bottom: 8px;
}
.page-banner-con .page-banner-cat-icon {
    position: relative;
    text-align: right;
}
.page-banner-con .page-banner-cat-icon a {
    position: relative;
}
.page-banner-con .page-banner-cat-icon img {
    width: 50px;
}
/*end-page-banner-con*/
/**/
.breadcrumb-con {
    position: relative;
}
.breadcrumb-ul {
    width: 100%;
    position: relative;
}
.breadcrumb-ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    position: relative;
    display: inline-block;
}
.breadcrumb-ul ul li {
    margin: 4px auto;
    padding: 0;
    list-style: none;
    width: auto;
    position: relative;
    display: inline-block;
    font-size: var(--smTextFont);
    line-height: 1.5;
    font-family: var(--textFontFamily);
    font-weight: 600;
}
.breadcrumb-ul ul li a {
    color: var(--smTextFont);
    font-weight: 400;
    position: relative;
}
.breadcrumb-ul ul li a:hover {
    color: var(--primaryColor);
}
.breadcrumb-ul ul li a::after {
    content: "\f061";
    font-family: "FontAwesome";
    margin: 0 8px;
    color: var(--textColor);
    font-size: var(--xsTextFont);
}
.breadcrumb-ul ul li a:hover:after {
    color: var(--textColor);
}
.breadcrumb-ul ul li:last-child a::after {
    display: none;
}
/**/
/*product-list*/
.product-list-con {
    position: relative;
}
.product-list-con .product-list-col {
    width: 100%;
    margin: 12px auto;
}
.product-list-con .product-list-col .product-list-full {
    position: relative;
}
.product-list-con .product-list-col .product-list-full .product-list-img {
    position: relative;
    margin-bottom: 15px;
}
.product-list-con .product-list-col .product-list-full .product-list-img a {
    border: 1px solid #ccc;
    padding: 30px;
    overflow: hidden;
    width: 100%;
    height: 250px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.product-list-con .product-list-col:hover .product-list-full .product-list-img a {
    box-shadow: 0 2px 40px 0 rgb(0 0 0 / 12%);
}
.product-list-con .product-list-col .product-list-full .product-list-img img {
    height: auto;
    width: auto;
    margin: 0 auto;
    text-align: center;
    max-height: 90%;
    max-width: 90%;
}
.product-list-con .product-list-col .product-list-full .product-list-caption {
    position: relative;
}
.product-list-con .product-list-col .product-list-full .product-list-caption h4 {
    position: relative;
}
.product-list-con .product-list-col:hover .product-list-full .product-list-caption h4 a {
    color: var(--primaryColor);
}
.product-detail-list {
    position: relative;
}
.product-detail-list ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    margin: 0;
    width: 100%;
}
.product-detail-list ol > li {
    display: flex;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    list-style: none;
    width: 100%;
    color: var(--textColor);
    font-size: var(--xsTextFont);
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--textFontFamily);
    position: relative;
}

.product-detail-list ol > li:hover {
    background: #dddddd21;
    color: black;
}

.product-detail-list ol > li::before {
    counter-increment: item;
    content: counter(item) ".";
    margin-right: 8px;
    font-size: 16px;
}
.product-detail-list ol li .row {
    flex: 1;
    margin: 0;
}

.product-detail-list ul > li{
    font-size: var(--xsTextFont);
}

.product-detail-list strong{
    font-size: var(--xsTextFont);
    font-weight: 500;
}
/*end product page*/
/*career page*/
.career-details .accordion {
    position: relative;
}
.career-details .accordion .accordion-item {
    margin: 10px auto;
    padding: 0;
    border: 0;
    width: 100%;
    display: inline-block;
}
.career-details .accordion .accordion-item:first-child {
    margin-top: 0;
}
.career-details .accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.career-details .accordion .accordion-item .accordion-header.collapsed {
    position: relative;
    width: 100%;
    padding: 15px 50px 15px 20px;
    background-color: #ddd;
    /* border: 1px solid #ddd;  */
    color: var(--textColor);
    font-size: 18px;
    line-height: normal;
    cursor: pointer;
}
.career-details .accordion .accordion-item:hover .accordion-header {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}
.career-details .accordion .accordion-item .accordion-header {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-size: 18px;
    line-height: normal;
    cursor: pointer;
    position: relative;
    width: 100%;
    padding: 15px 50px 15px 20px;
}
.career-details .accordion .accordion-item .accordion-header:after {
    content: "\f068";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 30px;
    top: 20px;
}
.career-details .accordion .accordion-item .accordion-header.collapsed:after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
}
.career-details .accordion .accordion-item .accordion-body {
    padding: 15px 15px 15px 0px;
    border-top: 1px solid var(--lightGrayColor);
}
.career-details .accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}
.career-details .accordion .accordion-item .accordion-body .career-detail-list {
    font-size: 16px;
}

.career-details .accordion .accordion-item .accordion-body .career-detail-list ul {
    list-style: none;
    padding-left: 0px;
}
.career-details .accordion .accordion-item .accordion-body .career-detail-list ul li {
    display: flex;
    padding: 12px 0px 12px 10px;
    border-bottom: 1px solid #ddd;
}
.career-details .accordion .accordion-item .accordion-body .career-detail-list ul li .row {
    flex: 1;
    margin: 0;
}
.accordion-grey .accordion-item .accordion-header.collapsed {
    background-color: #ddd !important;
    color: var(--textColor) !important;
}

/*end career page*/
.table-box {
    position: relative;
}
/* .table-box table {
    width: 100%;
    border-collapse: collapse;
}
.table-box table  thead {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
}
.table-box table {
    border: 1px solid rgb(109 109 109 / 50%);
} */

.table-box th,
.table-box td {
    /* border: 1px solid var(--grayColor); */
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--primaryFontFamily);
}
/*.table-box th:nth-child(2),
.table-box td:nth-child(2) {
    text-align: left;
}*/
.table-box th:first-child,
.table-box td:first-child {
    text-align: left;
    position: sticky;
    left: 0px;
}
.table-box .steriport-header {
    /* color: var(--orangeColor); */
    /* font-weight: bold; */
}
.table-box tr .fa-times {
    /* color: var(--secondaryColor); */
}
.table-box tr .fa-check {
    /* color: var(--orangeColor); */
}

/*end-product-list*/
.product-box-text {
    position: relative;
}
.product-box-text.product-con .product-card-col {
    align-items: end;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 240px;
}
.product-box-text.product-con .product-card-col .product-card-caption {
    width: 100%;
    margin-top: auto;
}
/*investors*/
.investor-details-section {
    position: relative;
}
.investor-details-section ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.investor-details-section ul li {
    flex: 0 0 auto;
    margin: 0;
    width: 50%;
    color: var(--textColor);
    font-size: 20px;
    font-family: var(--textFontFamily);
    display: inline-flex;
    padding: 0px 20px 20px 0px;
}

.investor-details-section ul li a::before {
    content: "\F640";
    font-family: "bootstrap-icons";
    color: #999;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px 15px 20px 30px;
}
.investor-details-section ul li a:hover::before {
    color: var(--whiteColor);
}
.investor-details-section ul li a {
    color: var(--textColor);
    background-color: var(--lightGrayColor);
    padding: 22px 30px 22px 67px;
    position: relative;
}

.investor-details-section ul li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.investor-details-section .report-width ul li {
    color: var(--textColor);
    font-size: 18px;
    font-family: var(--textFontFamily);
    padding: 0px 30px 30px 0px;
    width: auto;
    margin: 0px;
    display: inline-flex;
    flex-wrap: wrap;
    flex: none;
}
.policies {
    position: relative;
}
.policies ul{
    grid-column-gap: 40px; 
    grid-row-gap: 50px; 
    grid-template-rows: auto auto; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    grid-auto-columns: 1fr; 
    display: grid;
    padding-left: 0px;
}
.policies ul li {
    margin: 0;
    width: 100%;
    color: var(--textColor);
    font-size: 16px;
    font-family: var(--textFontFamily);
    display: inline-grid;
    padding: 0;
}


.policies ul li a::before {
    content: "\F640";
    font-family: "bootstrap-icons";
    color: #999;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px 15px 20px 0px;
}
.policies ul li a:hover::before {
    color: var(--primaryColor);
}
.policies ul li a {
    color: var(--textColor);
    padding: 22px 0px 0px 30px;
    position: relative;
    border-top: 1px solid #ccc;
}

.policies ul li a:hover {
    color: var(--primaryColor);
}

.announcements {
    position: relative;
}
.announcements ul{
    grid-column-gap: 40px; 
    grid-row-gap: 50px; 
    grid-template-rows: auto auto; 
    grid-template-columns: 1fr 1fr 1fr; 
    grid-auto-columns: 1fr; 
    display: grid;
    padding-left: 0px;
}
.announcements ul li {
    margin: 0;
    width: 100%;
    color: var(--textColor);
    font-size: 16px;
    font-family: var(--textFontFamily);
    display: inline-grid;
    padding: 0;
}


.announcements ul li a::before {
    content: "\F640";
    font-family: "bootstrap-icons";
    color: #999;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 22px 15px 20px 0px;
}
.announcements ul li a:hover::before {
    color: var(--primaryColor);
}
.announcements ul li a {
    color: var(--textColor);
    padding: 22px 0px 0px 30px;
    position: relative;
    border-top: 1px solid #ccc;
}

.announcements ul li a:hover {
    color: var(--primaryColor);
}

/*end investors*/
.product-card-col-height {
    min-height: auto !important;
}
.product-card-col-height .product-card-caption {
    padding-top: 0 !important;
}
.product-box-text .product-card-caption h6 {
    margin-bottom: 0;
}
/* progress bar*/
.financial-progress .progress {
    width: 100%;
    border-radius: 0px;
    margin-bottom: 30px;
    height: 55px;
    --bs-progress-bg: var(--whiteColor);
}

.financial-progress .progress .progress-bar {
    width: 100%;
    background: var(--primaryColor);
    border-radius: 0px;
    color: white;
    text-align: left;
    padding: 6px 10px 6px 10px;
}

.financial-progress .progress .progress-bar span {
    font-size: 20px;
}

.financial-progress .row {
    --bs-gutter-x: 150px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
/* end progress bar*/
/*video box*/
.video-box-con {
    position: relative;
}
.video-box-col {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #f7f7f7;
    margin: 15px auto;
}
.video-box-full {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 100%;
}
.video-box-img {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.video-box-img img {
    width: 100%;
    position: relative;
}
/*end-video-box*/

/*investor contact*/

.investor-contact .contact-details .row {
    --bs-gutter-x: 70px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.investor-contact h5 {
    font-weight: 500;
}
.investor-contact .contact-details a:hover{
    border-bottom: 1px solid var(--primaryColor);
    color: var(--primaryColor);
}

/*end investor conatct*/

/*disclosue table*/
.disclosure-section .info-table {
    width: 100%;
    font-size: var(--normalTextFont);
    background-color: #fff;
}

.disclosure-section .info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: top;
    color: var(--grayColor);
}

.disclosure-section .info-table a {
    color: var(--textColor);
    text-decoration: none;
}

.disclosure-section .info-table a:hover {
    border-bottom: 1px solid var(--primaryColor);
    color: var(--primaryColor);
}

.disclosure-section .info-table a:focus {
    border-bottom: 1px solid var(--primaryColor);
    color: var(--primaryColor);
}
/*end disclosue table*/

/*directors and commetee section*/

.directors-committees-section .borad-of-directors p {
    color: var(--darkGrayColor);
    font-size: 18px;
}

.directors-committees-section .borad-of-directors p strong {
    color: var(--textColor);
    font-size: var(--normalTextFont);
}
.directors-committees-section h4 strong {
    font-weight: 500;
}

.directors-committees-section .borad-of-directors .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.directors-committees-section .borad-of-directors .gray-section-bg {
    background: var(--lightGrayColor);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 50px;
}

.directors-committees-section .borad-of-directors .product-details-caption {
    margin-bottom: 35px;
}

/**/
.gray-box-con {
    background-color: var(--lightWhiteColor);
    padding: 30px;
    width: 100%;
}
.gray-box-col {
    margin: 15px auto;
    width: 100%;
    display: inline-block;
}
.gray-box-col h6 {
    font-weight: 500;
    margin-bottom: 8px;
}
.gray-box-col p {
    margin-bottom: 8px;
    position: relative;
}
/**/

/**/
.gallery-box-con {
    position: relative;
    width: 100%;
}
.gallery-box-col {
    margin: 15px auto;
    width: 100%;
    display: inline-block;
    position: relative;
}
.gallery-box-caption {
    position: relative;
}
.gallery-box-caption h6 {
    font-weight: 400;
    margin-bottom: 0px;
    font-size: 18px;
    color: #fff;
}
.gallery-box-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.gallery-box-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
}
.gallery-box-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 15px;
    background-image: repeating-linear-gradient(90deg, rgb(0 0 0 / 90%), rgb(0 0 0 / 0) 100%);
}
/**/

/*borad of director list page*/

.directors .team-wrap .team-member {
    margin: 25px auto;
    text-align: center;
}
.directors .team-wrap .team-member img {
    margin-bottom: 20px;
    width: 100%;
}
.directors .team-wrap .team-member-detail img {
    margin-bottom: 20px;
}
.directors h6 {
    font-weight: 500;
    margin-bottom: 2px;
}

.directors .team-wrap .team-member span {
    font-size: 18px;
    font-style: italic;
    color: var(--grayColor);
}

.directors .team-wrap p {
    text-align: justify;
}
.directors .team-wrap .page-head b {
    color: var(--grayColor);
}
.directors .team-wrap .page-head h1 {
    font-size: var(--lgHeadingFont);
    font-weight: 500;
}

/*end borad of director list page*/
/*formulation list*/
.formulation-list h5 {
    font-weight: 500;
}

.formulation-list .qc-ul ul {
    display: flex;
    flex-wrap: wrap;
}

.formulation-list .qc-ul ul li {
    width: 50%;
}

/*formulation list end*/

/*infrastructre slider */
.slider-overflow-wrapper {
    overflow-x: visible;
    position: relative;
}

.slider-container-wrapper {
    position: relative;
    width: 100vw;
    left: 25%; /* Negative of col-lg-4 (4/12 = 33.333%) */
    padding-left: 5px;
    padding-right: 0;
}

.infrastructure-img-slider {
    display: flex;
    gap: 20px;
    /* padding-bottom: 20px; */
    /* overflow-x: auto; */
}

.infrastructure-img-slide-col img {
    max-width: 250px;
    height: auto;
    display: block;
}

.infrastructure-li li {
    padding-bottom: 10px;
}
/* .infrastructure-img-slider {
    position: relative;
} */
.infrastructure-img-slider .infrastructure-img-slide-col {
    border: 1px solid transparent;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.infrastructure-img-slider .infrastructure-img-slide-col img {
    height: auto;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}
.infrastructure-thumb-slider {
    position: relative;
    padding: 12px 24px;
}

.infrastructure-img-slider .slick-dots {
    text-align: left;
}
/*end infrastructure slider*/

/**/
.about-us-vision .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
/**/
/*map*/
.map-con {
    margin-top: 30px;
}
.map-con iframe {
    height: 500px;
}
/*map end*/

.back-btn .btn {
    position: relative;
    width: auto;
    display: inline-block;
    min-width: auto;
    height: auto;
    background-color: var(--whiteColor);
    color: var(--grayColor);
    border-radius: 0;
    border: 1px solid #ccc;
    text-align: center;
    font-size: var(--normalTextFont);
    line-height: 1.5;
    font-weight: 3 00;
    font-family: var(--textFontFamily);
    padding: 10px 36px;
}
.back-btn .btn:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: var(--primaryColor);
}

.brochure-con .btn {
    position: relative;
    width: auto;
    display: inline-block;
    min-width: auto;
    height: auto;
    background-color: var(--whiteColor);
    color: var(--grayColor);
    border-radius: 0;
    border: 1px solid #ccc;
    text-align: center;
    font-size: var(--normalTextFont);
    line-height: 1.5;
    font-weight: 3 00;
    font-family: var(--textFontFamily);
    padding: 14px 20px;
}

.brochure-con .btn.border-blue-btn {
    background-color: transparent;
    color: var(--primaryColor);
    border-color: var(--primaryColor);
}
.brochure-con .btn:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: var(--primaryColor);
}

.brochore-btn .brochure-con .btn.border-blue-btn {
    background-color: transparent;
    color: var(--orangeColor);
    border-color: var(--orangeColor);
}
.brochore-btn .brochure-con .btn:hover {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    border-color: var(--orangeColor);
}

.brochure-main figure{
    width: 200px;
} 

.brochure-main .btn.btn-icon span {
    position: relative;
    padding-right: 25px;
    width: auto;
    display: inline-block;
}

.brochure-main .db-box-con.db-box-bg-img{ 
    width: 510px; 
    max-width: 100%;
}
/*gallery life at amanata*/
.puzzllerry-container {
    width: 100% !important;
    position: relative;
    margin: auto;
    clear: both;
}

.puzzllerry-item {
    height: 105px;
    width: 105px;
    overflow: hidden;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
}
.puzzllerry-item img {
    width: 100%;
}

.puzzllerry-item:not(.puzzllerry-mouse-down) {
    cursor: pointer;
}

.puzzllerry-item.puzzllerry-mouse-down,
.puzzllerry-dragging {
    cursor: move;
}

.puzzllerry-closebtn {
    color: #fff;
    float: right;
    margin: 10px;
    padding: 10px;
    text-align: center;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    display: none;
}

.puzzllerry-closebtn:hover {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.puzzllerry-opened {
    cursor: auto;
}
.puzzllerry-opened img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* optional: preserves aspect ratio and avoids stretching */
    max-width: 100vw;
    max-height: 100vh;
}

.puzzllerry-opened .puzzllerry-closebtn {
    display: inherit;
}

.puzzllerry-opened:hover .puzzllerry-closebtn {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* IE 8 */
    filter: alpha(opacity=100); /* IE 5-7 */
}

.puzzllerry-label {
    position: absolute;
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.65);
    bottom: 0;
    width: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    padding: 20px;
    box-sizing: border-box;
}

.puzzllerry-opened .puzzllerry-label,
.puzzllerry-opened .puzzllerry-fade {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* IE 8 */
    filter: alpha(opacity=100); /* IE 5-7 */
}

.puzzllerry-label,
.puzzllerry-closebtn,
.puzzllerry-fade {
    -webkit-transition: all 0.3s ease-in-out; /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: all 0.3s ease-in-out; /* Firefox 4-15 */
    -o-transition: all 0.3s ease-in-out; /* Opera 10.50–12.00 */
    transition: all 0.3s ease-in-out; /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}

.puzzllerry-fade {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
}

.puzzllerry-disabled {
    width: 100%;
}

.puzzllerry-disabled .puzzllerry-item {
    position: relative !important;
    width: 100%;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 10px;
}

.puzzllerry-disabled .puzzllerry-item .puzzllerry-label {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* IE 8 */
    filter: alpha(opacity=100); /* IE 5-7 */
}

.puzzllerry-rounded .puzzllerry-item {
    border-radius: 10px;
}

.puzzllerry-rounded .puzzllerry-closebtn {
    border-radius: 50px;
}

.puzzllerry-circles .puzzllerry-item {
    border-radius: 1000px;
}
/*end gallery life at amanata*/

/*steriport total faq page*/
.accordionFaq .accordion {
    position: relative;
}
.accordionFaq .accordion .accordion-item {
    margin: 10px auto;
    padding: 0;
    border: 0;
    width: 100%;
    display: inline-block;
}
.accordionFaq .accordion .accordion-item:first-child {
    margin-top: 0;
}
.accordionFaq .accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.accordionFaq .accordion .accordion-item .accordion-header.collapsed {
    /* position: relative; */
    /* width: 100%; */
    /* padding: 20px 60px 20px 30px; */
    background-color: var(--whiteColor);
    /* border: 0; */
    color: var(--secondaryColor);
    /* border: 0;
    font-size: var(--xsHeadingFont);
    line-height: normal;
    cursor: pointer; */
}
.accordionFaq .accordion .accordion-item:hover .accordion-header {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
}
.accordionFaq .accordion .accordion-item .accordion-header {
    position: relative;
    width: 100%;
    padding: 20px 60px 20px 30px;
    background-color: var(--secondaryColor);
    border: 0;
    color: var(--whiteColor);
    border: 0;
    font-size: var(--xsHeadingFont);
    line-height: normal;
    cursor: pointer;
}

.accordionFaq .accordion .accordion-item .accordion-header:after {
    content: "\f068";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 30px;
    top: 24px;
}
.accordionFaq .accordion .accordion-item .accordion-header.collapsed:after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
}
.accordionFaq .accordion .accordion-item .accordion-body {
    padding: 30px;
    border-top: 1px solid var(--lightGrayColor);
}
.accordionFaq .accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}
/*end steriport total faq page*/

/*testi-img-caption-con*/
.testi-img-caption-con {
    position: relative;
}
.testi-img-caption-box {
    padding-top: 30px;
}
.testi-img-caption-img {
    position: relative;
    text-align: center;
}
.testi-img-caption-img img {
    width: 360px;
    max-width: 100%;
}
.testi-img-caption-text {
    position: relative;
    padding: 0 0 60px 30px;
}
.testi-img-caption-top-icon {
    margin-bottom: 21px;
}
.testi-img-caption-top-icon img {
    width: 60px;
}
.testi-img-caption-text p {
    font-family: var(--textFontFamily);
    font-size: var(--mdTextFont);
}
.testi-img-caption-name-designation {
    margin-top: 8px;
    width: 100%;
    display: inline-block;
}
.testi-img-caption-name-designation h5 {
    font-family: var(--textFontFamily);
    font-size: var(--normalTextFont);
    color: var(--lightPurpleColor);
    font-style: italic;
    margin-bottom: 8px;
}
.testi-img-caption-name-designation h6 {
    font-family: var(--textFontFamily);
    font-size: 14px;
    font-style: italic;
    padding-left: 30px;
}
/*testi-img-caption-con*/
.tenRow {
    background: url(../img/wh-bg.gif) repeat-x left -120px #bccf03;
    padding: 0px 0 20px 0;
    margin-top: 50px;
}
.theraoeutic .hed {
    font-size: 45px;
    font-weight: normal;
    line-height: 50px;
}
.formul-hd {
    font-size: 28px;
    font-weight: 600;
    margin: 0px 0 30px 0;
    display: block;
    color: #111;
}
ul.formulation {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
ul.formulation li {
    font-size: 18px;
    color: #222;
    border-bottom: 1px solid #ccc;
    padding: 0px 0 8px 0px;
    margin: 0px 0 8px 0;
}
.stp-btl {
    float: none !important;
    margin: 0 auto;
    display: block;
}
.ther-right span {
    color: #ffd500;
    font-size: 26px;
    margin: 52px 0 30px 0;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff;
}
.parameter-tbl table th {
    font-weight: 600;
}
.parameter-tbl table th,
.parameter-tbl table td {
    text-align: center;
}
.parameter-tbl table th:first-child,
.parameter-tbl table td:first-child {
    position: sticky;
    left: 0px;
    text-align: left;
    background-color: transparent;
}
/*csr page*/

.box-img-slide-col {
    padding: 0;
}

.box-img-slider .slick-track {
    margin: 0;
}

/*end csr page*/

/**/
.infra-fixed-slider-con {
    position: relative;
    overflow: hidden;
}
.infra-fixed-slider-box {
    position: relative;
}
.infra-fixed-slider-box:before {
    content: "";
    background: #ffffff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    z-index: 99;
}
.infra-fixed-slider-box .slick-dots {
    text-align: left;
    bottom: -26px;
}
.infra-fixed-slider-box .slick-list {
    overflow: visible;
}
.infra-fixed-slide-col {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}
.infra-fixed-slide-col img {
    height: 350px;
    width: auto;
}
.bottom-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--primaryColor);
    background: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 400;
    line-height: 32px;
    padding: 0;
    text-align: center;
    margin: 0 4px;
    font-size: 16px;
}
.bottom-arrow:hover {
    border-color: var(--secondaryColor);
    background: var(--secondaryColor);
    color: var(--whiteColor);
}
.infra-fixed-slider-arrow {
    position: absolute;
    bottom: -30px;
    right: 8px;
}
.infra-fixed-slider-box .slick-dotted.slick-slider {
    padding-bottom: 25px;
}
/**/
.error-page-box-con{
    position: relative;
}
.error-page-box{
    padding: 30px; 
}
.page-not-found-img {
    margin-bottom: 20px;
    font-size: 10rem;
    line-height: 1;
    font-weight: 600;
    color: var(--textColor);
}
.page-not-found-img a{
    color: var(--textColor);
}
.page-not-found-img a:hover{
    color: var(--textColor);
}
.error-page-box-text{
    margin-bottom: 40px;
}
.steriport-total-banner .product-banner-img img {
    width: auto;
    height: 100%;
    max-height: 100%;
}

/* finacial result css start*/

.fy-container {
    grid-column-gap: 16px;
    grid-row-gap: 80px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.fy-row {
  display: grid;
  grid-template-columns: 180px 1fr; /* year + quarters block */
}
.fy-year{
    font-weight:bold;
}
.fy-quarters {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-top: .6px solid #00000026;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.fy-quarter {
  padding-top: 15px;

}

/* finacial result css end*/
.product-details-img-slider-con .slick-dots{
    left: -20px;
}
@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
@keyframes locationDotIn {
    0% {
        transform: translate(50%, 50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(50%, 50%) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translate(50%, 50%) scale(1.2);
        opacity: 0.8;
    }
}
@keyframes locationDotOut {
    0% {
        transform: translate(50%, 50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(50%, 50%) scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: translate(50%, 50%) scale(1.5);
        opacity: 0;
    }
}
/* @media only screen and (min-width:1401px) and (max-width:1699px){
    .container {
        max-width: 1670px;
        width: 100%;
        padding: 0 80px;
    }
} */
@media only screen and (min-width: 1200px) {
    .product-banner-con { 
        height: 100vh !important;  
        min-height: 650px;
    } 
}
@media only screen and (min-width: 1700px) {
    /* .container {
        max-width: 1670px;
    } */
     .container {
        max-width: 1670px;
        width: 100%;
    }
    .investor-details-section .report-width ul li {
        font-size: 18px;
    }
    .investor-contact .contact-details .row {
        --bs-gutter-x: 58px;
    }
    .directors p {
        font-size: var(--lgTextFont);
    }
    .product-banner-con .product-banner-caption h1 {
        font-size: calc(var(--XXlHeadingFont) + 15px);
    }
}

@media only screen and (max-width: 1699.98px) {
    .testi-img-caption-text p {
        font-size: calc(var(--mdTextFont) * 0.96);
    }
    .infra-fixed-slide-col img {
        height: 300px;
    }
    .brochure-con .btn{
        padding: 15px 9px;
    }
    .brands-card-full .brands-card-caption p {
        font-size: 18px;
    }
    .brands-card-col .brands-card-full .brands-card-caption { 
        padding: 0 0 0 15px;
    } 
    .brands-card-col .brands-card-full .brands-card-caption img.pe-4 {
         padding-right: 15px !important;
    }
    .brands-card-col .brands-card-full .brands-card-img{
        width: 120px;
    }
    .brands-card-col .brands-card-full .brands-card-caption{
        width: calc(100% - 120px);
    }
    .brands-card-col{
        padding: 50px 25px;
    }
 
}

@media only screen and (max-width: 1399.98px) {
    .new-event-con {
        position: relative;
    }
    .new-event-con .new-event-card-col {
        padding: 45px 27px;
    }
    .product-con .product-card-col {
        padding: 40px 30px;
    }
    .product-con .product-card-col .product-card-caption {
        padding-top: 40px;
    }
    .innovation-con {
        padding-top: 240px;
        min-height: 430px;
    }
    .innovation-con .innovation-caption .innovation-caption-col {
        padding: 80px 60px;
    }
    .brands-card-col {
        padding: 40px 25px;
        min-height: 300px;
    }
    .brands-card-col .brands-card-full .brands-card-img {
        width: 100px;
    }
    .brands-card-col .brands-card-full .brands-card-caption {
        width: calc(100% - 100px);
    }
    .innovations-img .brands-card-caption img {
        width: 170px;
    }
    .brands-card-full .brands-card-caption p {
        font-size: 17px;
    }
    .brands-card-col.brands-card-col-full-card .brands-card-img {
        width: 60% !important;
    }
    .brands-card-col .brands-card-full .brands-card-img img.pe-3{
        padding-right: 5px !important;
    }
    .social-ul ul li a {
        font-size: calc(var(--lgHeadingFont) * 0.95);
    }
    .network-con .network-caption .network-map {
        margin-top: 55px;
    }
    .brands-con .title-con {
        padding-bottom: 55px;
    }
    .about-con .about-caption {
        padding-left: 38%;
        padding-right: 11%;
    }
    .logo-list-con .logo-list-col {
        padding: 16px 0;
    }
    .question-box-con .question-box-caption {
        padding: 40px 60px;
    }
    .cir-ul ul li {
        margin: 11px 0;
        padding: 0 0 0 65px;
        font-size: 22px;
        line-height: 1.3;
        min-height: 50px;
    }
    .cir-ul ul li::before {
        font-size: 15px;
        padding: 15px;
        line-height: 20px;
        width: 50px;
        height: 50px;
    }
    .cir-ul.img-cir-ul ul li .cir-ul-img {
        line-height: 45px;
        width: 50px;
        height: 50px;
    }
    .db-box-con {
        padding: 30px 40px;
    }
    .db-box-con .db-box-col {
        padding: 10px 0;
    }
    .db-box-con .db-box-caption figure {
        margin-bottom: 22px;
    }
    .db-box-con .db-box-caption figure img {
        width: 220px;
    }
    .db-box-con.db-box-bg-img .db-box-caption {
        padding-bottom: 100px;
    }
    .db-box-con.db-box-bg-img .db-box-img {
        width: 90%;
    }
    .testimonials-slider-con {
        padding-right: 6%;
    }
    .testimonials-slider-con .testimonials-top-icon-con img {
        width: 55px;
    }
    .product-banner-con {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img {
        margin-bottom: 80px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img {
        width: 400px;
    }
    .product-banner-con .product-banner-caption h2 {
        margin-bottom: 25px;
    }
    .product-banner-con .product-banner-caption h3 img {
        height: 28px;
    }
    .product-banner-con.product-banner-bg-img-con {
        height: 80vh;
        min-height: 700px;
    }
    .product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
        width: 55%;
    }
    .accordion .accordion-item {
        margin: 9px auto;
    }
    .accordion .accordion-item .accordion-header {
        padding: 19px 55px 19px 28px;
        font-size: calc(var(--xsHeadingFont) * 0.95);
    }
    .accordion .accordion-item .accordion-header:after {
        right: 28px;
        top: 24px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 28px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.95);
    }
    .accordionFaq .accordion .accordion-item .accordion-header.collapsed {
        font-size: calc(var(--xsHeadingFont) * 0.95);
    }
    .dot-ul ul li {
        font-size: calc(var(--normalTextFont) * 0.98);
    }
    .product-detail-list ol li {
        font-size: calc(var(--xsTextFont) * 0.98);
    }
    .lr-text-list-con .lr-text-list-full {
        padding: 14px 0;
    }
    .lr-text-list-con .lr-text-list-full h6 {
        margin-bottom: 0;
    }
    .product-thumb-slider {
        padding: 11px 22px;
    }
    .product-thumb-slider .pro-thumb-slide-col {
        padding: 14px;
        margin: 7px;
    }
    .product-thumb-slider .pro-thumb-slide-col img {
        height: 70px;
    }
    .page-banner-con .page-banner-cat-icon img {
        width: 55px;
    }
    .breadcrumb-ul ul li {
        font-size: calc(var(--smTextFont) * 0.95);
    }
    .breadcrumb-ul ul li a::after {
        margin: 0 7px;
        font-size: calc(var(--xsTextFont) * 0.95);
    }
    .product-list-con .product-list-col .product-list-full .product-list-img a {
        padding: 28px;
        height: 250px;
    }
    .product-list-con .product-list-col .product-list-full .product-list-img img {
        max-width: 85%;
        max-width: 85%;
    }
    .product-con .product-card-col .product-card-icon img {
        width: 63px;
    }
    .career-details .accordion .accordion-item .accordion-header {
        font-size: 16px;
    }
    .career-details .accordion .accordion-item .accordion-header.collapsed {
        font-size: 16px;
    }
    .product-box-text.product-con .product-card-col {
        min-height: 230px;
    }
    .investor-details-section .report-width ul li {
        font-size: 14px;
    }
    .investor-contact .contact-details .row {
        --bs-gutter-x: 58px;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-0.5 * var(--bs-gutter-x));
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
    .video-box-col {
        padding: 27px;
    }
    .video-box-img {
        margin-bottom: 27px;
    }
    .gray-box-con {
        padding: 27px;
    }
    .gallery-box-img {
        height: 200px;
    }
    .about-con .about-caption p {
        font-size: 19px;
    }
    .map-con iframe {
        height: 450px;
    }
    .back-btn .btn {
        font-size: 20px;
        padding: 7px 30px;
    }
    .testi-img-caption-text p {
        font-size: calc(var(--mdTextFont) * 0.94);
    }
    .directors .team-wrap .team-member img {
        margin-bottom: 19px;
    }
    .directors .team-wrap .team-member-detail img {
        margin-bottom: 19px;
    }
    .directors .team-wrap .team-member {
        margin: 24px auto;
    }
    .directors .team-wrap .page-head h1 {
        font-size: calc(var(--lgHeadingFont) * 0.95);
    }
    .page-banner-con {
        padding-top: 170px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img p {
        font-size: calc(var(--normalTextFont) * 1.6);
    }
    .hot-spot {
        width: 18px;
        height: 18px;
    }
    .hot-spot:before {
        width: 24px;
        height: 24px;
        top: -17px;
        left: -17px;
    }
    .speech-bubble {
        font-size: 14px;
        padding: 8px 15px;
        margin-top: -28px;
    }
    .speech-bubble::before {
        width: 15px;
        height: 15px;
        bottom: -7px;
    }
    .infra-fixed-slide-col img {
        height: 250px;
    }
    .accordionFaq .accordion .accordion-item .accordion-body{
        padding: 27px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header{
        padding-left: 27px;
    }
    .mb-5 {
        margin-bottom: 2.5rem !important;
    } 
       .btn.btn-icon span::before{
        top: 4px;
    }
    .fy-container {
    grid-column-gap: 16px;
    grid-row-gap: 80px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    }
}
@media only screen and (max-width: 1199.98px) {
    .new-event-con .new-event-card-col {
        padding: 40px 25px;
    }
    .product-con .product-card-col {
        padding: 35px 30px;
    }
    .product-con .product-card-col .product-card-caption {
        padding-top: 35px;
    }
    .innovation-con {
        padding-top: 220px;
        min-height: 420px;
    }
    .innovation-con .innovation-caption .innovation-caption-col {
        padding: 70px 50px;
    }
    .brands-card-col {
        padding: 30px 24px;
        min-height: 280px;
    }
    .brands-card-col .brands-card-full .brands-card-img {
        width: 90px;
    }
    .brands-card-col .brands-card-full .brands-card-caption {
        width: calc(100% - 90px);
    }
    .brands-card-col.brands-card-col-full-card .brands-card-img {
        width: 60% !important;
    }
    .brands-card-full .brands-card-caption p {
        font-size: 16px;
    }
    .social-ul ul li a {
        font-size: calc(var(--lgHeadingFont) * 0.9);
    }
    .network-con .network-caption .network-map {
        margin-top: 50px;
    }
    .brands-con .title-con {
        padding-bottom: 50px;
    }
    .about-con .about-caption {
        padding-left: 36%;
        padding-right: 6%;
    }
    .logo-list-con .logo-list-col {
        padding: 14px 0;
    }
    .question-box-con .question-box-caption {
        padding: 30px 50px;
    }
    .cir-ul ul li {
        margin: 10px 0;
        padding: 0 0 0 70px;
        font-size: 22px;
        line-height: 1.3;
        min-height: 50px;
    }
    .cir-ul ul li::before {
        font-size: 14px;
        padding: 14px;
        line-height: 20px;
        width: 50px;
        height: 50px;
    }
    .cir-ul.img-cir-ul ul li .cir-ul-img {
        line-height: 45px;
        width: 50px;
        height: 50px;
    }
    .career-details .accordion .accordion-item .accordion-header.collapsed {
        font-size: 16px;
    }
    .career-details .accordion .accordion-item .accordion-header {
        font-size: 16px;
    }
    .db-box-con {
        padding: 30px 40px;
    }
    .db-box-con .db-box-col {
        padding: 9px 0;
    }
    .db-box-con .db-box-caption figure {
        margin-bottom: 20px;
    }
    .db-box-con .db-box-caption figure img {
        width: 200px;
    }
    .db-box-con.db-box-bg-img .db-box-caption {
        padding-bottom: 100px;
    }
    .db-box-con.db-box-bg-img .db-box-img {
        width: 80%;
    }
    .testimonials-slider-con {
        padding-right: 4%;
    }
    .testimonials-slider-con .testimonials-top-icon-con img {
        width: 50px;
    }
    .product-banner-con {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img {
        margin-bottom: 70px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img {
        width: 350px;
    }
     .product-banner-con .product-banner-caption .product-banner-caption-img img.aerovein-text-logo {
        width: 300px;
    } 
    .product-banner-con .product-banner-caption h2 {
        margin-bottom: 24px;
    }
    .product-banner-con .product-banner-caption h3 img {
        height: 26px;
    }
    .product-banner-con.product-banner-bg-img-con {
        height: 75vh;
        min-height: 600px;
    }
    .product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
        width: 55%;
    }
    .accordion .accordion-item {
        margin: 8px auto;
    }
    .accordion .accordion-item .accordion-header {
        padding: 18px 50px 18px 26px;
        font-size: calc(var(--xsHeadingFont) * 0.9);
    }
    .accordion .accordion-item .accordion-header:after {
        right: 26px;
        top: 23px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 26px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.9);
    }
    .accordionFaq .accordion .accordion-item .accordion-header.collapsed {
        font-size: calc(var(--xsHeadingFont) * 0.9);
    }
    .dot-ul ul li {
        font-size: calc(var(--normalTextFont) * 0.96);
    }
    .product-detail-list ol li {
        font-size: calc(var(--xsTextFont) * 0.96);
    }
    .lr-text-list-con .lr-text-list-full {
        padding: 13px 0;
    }
    .lr-text-list-con .lr-text-list-full h6 {
        margin-bottom: 0;
    }
    .product-thumb-slider {
        padding: 10px 20px;
    }
    .product-thumb-slider .pro-thumb-slide-col {
        padding: 13px;
        margin: 6px;
    }
    .product-thumb-slider .pro-thumb-slide-col img {
        height: 65px;
    }
    .page-banner-con .page-banner-cat-icon img {
        width: 45px;
    }
    .breadcrumb-ul ul li {
        font-size: calc(var(--smTextFont) * 0.9);
    }
    .breadcrumb-ul ul li a::after {
        margin: 0 7px;
        font-size: calc(var(--xsTextFont) * 0.9);
    }
    .product-list-con .product-list-col .product-list-full .product-list-img a {
        padding: 26px;
        height: 300px;
    }
    .product-con .product-card-col .product-card-icon img {
        width: 61px;
    }
    .career-details .accordion .accordion-item .accordion-header {
        font-size: 16px;
    }
    .product-box-text.product-con .product-card-col {
        min-height: 220px;
    }
    .investor-details-section .report-width ul li {
        font-size: 14px;
    }
    .investor-details-section ul li {
        width: 100%;
    }

    .disclosure-section .info-table {
        font-size: var(--mdTextFont);
    }

    .video-box-col {
        padding: 24px;
    }
    .video-box-img {
        margin-bottom: 24px;
    }
    .gray-box-con {
        padding: 24px;
    }

    .about-con .about-caption p {
        font-size: 18px;
    }
    .map-con iframe {
        height: 400px;
    }
    .back-btn .btn {
        font-size: 16px;
    }
    .slider-container-wrapper {
        left: 34%;
        padding-left: 5px;
    }
    .directors .team-wrap .team-member {
        margin: 22px auto;
    }
    .directors .team-wrap .team-member img {
        margin-bottom: 18px;
    }
    .directors .team-wrap .team-member-detail img {
        margin-bottom: 18px;
    }
    .directors .team-wrap .page-head h1 {
        font-size: calc(var(--lgHeadingFont) * 0.9);
    }
    .page-banner-con {
        padding-top: 160px;
    }
    .steriport-total-banner .product-banner-img img {
        width: 280px;
        height: auto;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img p {
        font-size: calc(var(--normalTextFont) * 1.4);
    }
    .hot-spot {
        width: 16px;
        height: 16px;
    }
    .hot-spot:before {
        width: 22px;
        height: 22px;
        top: -16px;
        left: -16px;
    }
    .speech-bubble {
        font-size: 13px;
        padding: 8px 14px;
        margin-top: -26px;
    }
    .speech-bubble::before {
        width: 13px;
        height: 13px;
        bottom: -6px;
    }
    .infra-fixed-slide-col img {
        height: 200px;
    }
    .accordionFaq .accordion .accordion-item .accordion-body{
        padding: 25px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header{
        padding-left: 25px;
    }
     .mb-5 {
        margin-bottom: 2rem !important;
    }
    .brochure-main figure{
         width: 220px;
    } 
    .brochure-con .btn{
        padding: 15px 9px;
    }
    .btn.btn-icon span::before{
        bottom: 2px;
    }
    .policies ul {
        grid-template-columns:1fr 1fr 1fr;
        padding-left: 0px;
    }
    
}

@media only screen and (max-width: 991.98px) {
    .map-con iframe {
        height: 350px;
    }
    .new-event-con .new-event-card-col {
        padding: 35px 24px;
    }
    .product-con .product-card-col {
        padding: 30px 30px;
    }
    .product-con .product-card-col .product-card-caption {
        padding-top: 30px;
    }
    .title-link-con {
        display: inline-block;
    }
    .video-full-con {
        height: auto;
        min-height: auto;
    }
    .innovation-con {
        padding-top: 200px;
        min-height: 400px;
    }
    .innovation-con .innovation-caption .innovation-caption-col {
        padding: 60px 40px;
    }
    .social-ul ul li a {
        font-size: calc(var(--lgHeadingFont) * 0.85);
    }
    .network-con .network-caption .network-map {
        margin-top: 45px;
    }
    .brands-con .title-con {
        padding-bottom: 45px;
    }
    .about-con .about-caption {
        padding-left: 35%;
        padding-right: 0%;
    }
    .logo-list-con .logo-list-col {
        padding: 12px 0;
    }
    .question-box-con .question-box-caption {
        padding: 50px;
    }
    .question-box-con .question-box-caption .question-caption p {
        font-size: calc(var(--xsHeadingFont) * 0.85);
    }
    .question-box-con .question-box-caption .btn-con.text-end {
        text-align: left !important;
        margin-top: 21px;
    }
    .cir-ul ul li {
        margin: 9px 0;
        padding: 0 0 0 60px;
        font-size: 20px;
        line-height: 1.3;
        min-height: 45px;
    }
    .cir-ul ul li::before {
        font-size: 13px;
        padding: 14px;
        line-height: 15px;
        width: 45px;
        height: 45px;
    }
    .cir-ul.img-cir-ul ul li .cir-ul-img {
        line-height: 38px;
        width: 45px;
        height: 45px;
    }
    .db-box-con {
        padding: 30px 40px;
    }
    .db-box-con .db-box-col {
        padding: 8px 0;
    }
    .db-box-con .db-box-caption figure {
        margin-bottom: 18px;
    }
    .db-box-con .db-box-caption figure img {
        width: 180px;
    }
    .db-box-con.db-box-bg-img .db-box-caption {
        padding-bottom: 90px;
    }
    .db-box-con.db-box-bg-img .db-box-img {
        width: 75%;
    }
    .testimonials-slider-con {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .testimonials-slider-con .testimonials-top-icon-con img {
        width: 45px;
    }
    .product-banner-con {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img {
        margin-bottom: 60px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img {
        width: 300px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img.aerovein-text-logo {
        width: 250px;
    } 
    .product-banner-con .product-banner-caption h2 {
        margin-bottom: 22px;
    }
    .product-banner-con .product-banner-caption h3 img {
        height: 24px;
    }
    .product-banner-con.product-banner-bg-img-con {
        height: 100%;
        min-height: auto;
    }
    .product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
        width: 65%;
        opacity: 0.7;
    }
    .accordion .accordion-item {
        margin: 7px auto;
    }
    .accordion .accordion-item .accordion-header {
        padding: 17px 45px 17px 24px;
        font-size: calc(var(--xsHeadingFont) * 0.85);
    }
    .accordion .accordion-item .accordion-header:after {
        right: 24px;
        top: 22px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 24px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.85);
    }
    .accordionFaq .accordion .accordion-item .accordion-header.collapsed {
        font-size: calc(var(--xsHeadingFont) * 0.85);
    }
    .dot-ul ul li {
        font-size: calc(var(--normalTextFont) * 0.94);
    }
    .product-detail-list ol li {
        font-size: calc(var(--xsTextFont) * 0.94);
    }
    .lr-text-list-con .lr-text-list-full {
        padding: 12px 0;
    }
    .lr-text-list-con .lr-text-list-full h6 {
        margin-bottom: 0;
    }
    .product-thumb-slider {
        padding: 9px 18px;
    }
    .product-thumb-slider .pro-thumb-slide-col {
        padding: 12px;
        margin: 5px;
    }
    .product-thumb-slider .pro-thumb-slide-col img {
        height: 60px;
    }
    .product-img-slider .pro-img-slide-col img {
        max-width: 60%;
    }
    .page-banner-con .page-banner-cat-icon img {
        width: 40px;
    }
    .breadcrumb-ul ul li {
        font-size: calc(var(--smTextFont) * 0.85);
    }
    .breadcrumb-ul ul li a::after {
        margin: 0 6px;
        font-size: calc(var(--xsTextFont) * 0.85);
    }
    .product-list-con .product-list-col .product-list-full .product-list-img a {
        padding: 24px;
        height: 340px;
    }
    .product-con .product-card-col .product-card-icon img {
        width: 59px;
    }
    .product-box-text.product-con .product-card-col {
        min-height: 210px;
    }
    .investor-details-section .report-width ul li {
        font-size: 14px;
    }
    .disclosure-section .info-table {
        font-size: var(--mdTextFont);
    }
    .video-box-col {
        padding: 21px;
    }
    .video-box-img {
        margin-bottom: 21px;
    }
    .gray-box-con {
        padding: 24px;
    }
    .home-slider-con {
        height: 60vh;
    }
    .about-con .about-caption p {
        font-size: 17px;
    }
    .product-con .product-card-col .product-card-caption h6 {
        font-weight: 500;
    }
    .back-btn .btn {
        font-size: 15px;
    }
    .dot-ul .li-50 li {
        width: 100%;
        padding-right: 0;
    }
    .testi-img-caption-text {
        padding: 0 0 40px 20px;
    }
    .slider-container-wrapper {
        left: 0%;
        padding-left: 5px;
    }
    .directors {
        padding-top: 0px;
    }
    .directors .team-wrap .team-member {
        margin: 20px auto;
    }
    .directors .team-wrap .team-member img {
        margin-bottom: 17px;
    }
    .directors .team-wrap .team-member-detail img {
        margin-bottom: 17px;
    }
    .directors .team-wrap .team-member span {
        font-size: 17px;
    }
    .directors .team-wrap .page-head h1 {
        font-size: calc(var(--lgHeadingFont) * 0.85);
    }
    .page-banner-con {
        padding-top: 150px;
    }
    .steriport-total-banner .product-banner-img img {
        width: 260px;
    }
    .hot-spot {
        width: 10px;
        height: 10px;
        border: 2px solid transparent;
    }
    .hot-spot:before {
        width: 18px;
        height: 18px;
        top: -15px;
        left: -15px;
    }
    .speech-bubble {
        font-size: 12px;
        padding: 7px 12px;
        margin-top: -24px;
    }
    .speech-bubble::before {
        width: 10px;
        height: 10px;
        bottom: -6px;
    }
    .theraoeutic-range img {
        width: 240px !important;
    }
    .infra-fixed-slide-col img {
        height: 180px;
    }
    .bottom-arrow {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 14px;
    }
    .infra-fixed-slider-box .slick-dotted.slick-slider {
        padding-bottom: 15px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img p {
        font-size: calc(var(--normalTextFont) * 1.2);
    }
    .accordionFaq .accordion .accordion-item .accordion-body{
        padding: 23px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header{
        padding-left: 23px;
    }
     .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    .page-not-found-img { 
        font-size: 8rem; 
    }
    .btn.btn-icon span::before{
        bottom: 2px;
    }
    
    .policies ul {
        grid-template-columns: 1fr 1fr;
        padding-left: 0;
    }
    .announcements ul {
        grid-template-columns:1fr 1fr;
        padding-left: 0px;
    }
}
@media only screen and (max-width: 767.98px) {
    .line-menu-ul.line-menu-col-two ul {
        margin: 0;
    }
    .line-menu-ul.line-menu-col-two ul li {
        padding-left: 0;
        padding-right: 5px;
        float: left;
    }

    /*    .line-menu-ul.line-menu-col-two ul li:nth-child(2) {
            padding-top: 15px;
       }*/
    .line-menu-ul ul li {
        width: 50%;
        float: left;
    }
    .new-event-con .new-event-card-col {
        padding: 30px 25px;
    }
    .product-con .product-card-col {
        padding: 30px 30px;
    }
    .product-con .product-card-col .product-card-caption {
        padding-top: 25px;
    }

    .innovation-con {
        padding-top: 180px;
        min-height: 380px;
    }
    .innovation-con .innovation-caption .innovation-caption-col {
        padding: 50px 40px;
    }
    .social-ul ul li a {
        font-size: calc(var(--lgHeadingFont) * 0.8);
    }
    .network-con .network-caption .network-map {
        margin-top: 40px;
    }
    .brands-con .title-con {
        padding-bottom: 40px;
    }
    .about-con:after {
        background-position: right center;
        background-size: cover;
        width: 100%;
        opacity: 0.3;
    }
    .about-con .about-caption {
        padding-left: 0;
        padding-right: 0;
    }
    .brands-card-col.brands-card-col-full-card .brands-card-caption {
        width: 80% !important;
    }
    .logo-list-con .logo-list-col {
        padding: 10px 0;
    }
    .question-box-con .question-box-caption {
        padding: 40px;
    }
    .question-box-con .question-box-caption .question-caption p {
        font-size: calc(var(--xsHeadingFont) * 0.8);
    }
    .cir-ul ul li {
        margin: 8px 0;
        padding: 0 0 0 50px;
        font-size: 18px;
        line-height: 1.3;
        min-height: 40px;
    }
    .cir-ul ul li::before {
        font-size: 12px;
        padding: 12px;
        line-height: 15px;
        width: 40px;
        height: 40px;
    }
    .cir-ul.img-cir-ul ul li .cir-ul-img {
        line-height: 34px;
        width: 40px;
        height: 40px;
    }
    .db-box-con {
        padding: 30px 40px;
    }
    .db-box-con .db-box-col {
        padding: 8px 0;
    }
    .db-box-con .db-box-caption figure {
        margin-bottom: 16px;
    }
    .db-box-con .db-box-caption figure img {
        width: 160px;
    }
    .db-box-con.db-box-bg-img .db-box-caption {
        padding-bottom: 80px;
    }
    .db-box-con.db-box-bg-img .db-box-img {
        width: 85%;
    }
    .testimonials-slider-con {
        padding-right: 0;
    }
    .testimonials-slider-con .testimonials-top-icon-con img {
        width: 40px;
    }
    .product-banner-con {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img {
        margin-bottom: 50px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img {
        width: 250px;
    }
    .product-banner-con .product-banner-caption h2 {
        margin-bottom: 21px;
    }
    .product-banner-con .product-banner-caption h3 img {
        height: 22px;
    }
    .product-banner-con.product-banner-bg-img-con {
        height: 100%;
        min-height: auto;
        padding-bottom: 0 !important;
    }
    .product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
        position: relative;
        width: 100%;
    }
    .accordion .accordion-item {
        margin: 6px auto;
    }
    .accordion .accordion-item .accordion-header {
        padding: 16px 50px 16px 22px;
        font-size: calc(var(--xsHeadingFont) * 0.8);
    }
    .accordion .accordion-item .accordion-header:after {
        right: 22px;
        top: 21px;
    }
    .accordion .accordion-item .accordion-body {
        padding: 22px;
    }

    .accordionFaq .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.8);
    }
    .accordionFaq .accordion .accordion-item .accordion-header.collapsed {
        font-size: calc(var(--xsHeadingFont) * 0.8);
    }
    .dot-ul ul li {
        font-size: calc(var(--normalTextFont) * 0.92);
    }
    .lr-text-list-con .lr-text-list-full {
        padding: 11px 0;
    }
    .lr-text-list-con .lr-text-list-full h6 {
        margin-bottom: 15px;
    }
    .product-thumb-slider {
        padding: 4px 16px;
    }
    .product-thumb-slider .pro-thumb-slide-col {
        padding: 11px;
        margin: 4px;
    }
    .product-thumb-slider .pro-thumb-slide-col img {
        height: 55px;
    }
    .page-banner-con .page-banner-cat-icon {
        margin-top: 15px;
    }
    .page-banner-con .page-banner-cat-icon img {
        width: 35px;
    }
    .breadcrumb-ul ul li {
        font-size: calc(var(--smTextFont) * 0.8);
    }
    .breadcrumb-ul ul li a::after {
        margin: 0 5px;
        font-size: calc(var(--xsTextFont) * 0.8);
    }
    .product-list-con .product-list-col .product-list-full .product-list-img a {
        padding: 22px;
        height: 260px;
    }
    .product-con .product-card-col .product-card-icon img {
        width: 57px;
    }
    /* .table-box table,
    .table-box thead,
    .table-box tbody,
    .table-box th,
    .table-box td,
    .table-box tr {
        display: block;
    }
    .table-box thead tr {
        display: none;
    }
    .table-box tr {
        margin-bottom: 15px;
        border: 1px solid var(--grayColor);
        padding: 5px;
    }
    .table-box td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .table-box td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    } */
    /* .table-box td[data-label="No."] {
        background-color: var(--secondaryColor);
        color: var(--whiteColor);
    } */
    .product-box-text.product-con .product-card-col {
        min-height: 200px;
    }
    .investor-details-section ul {
        display: block;
    }
    .investor-details-section .report-width ul li {
        width: 100%;
    }
    .investor-details-section ul li {
        width: 100%;
    }
    .disclosure-section .info-table {
        font-size: var(--smTextFont);
    }
    .video-box-col {
        padding: 18px;
    }
    .video-box-img {
        margin-bottom: 18px;
    }
    .home-slider-con {
        height: 550px;
    }
    .video-full-con .full-video-caption h2 br {
        display: none;
    }
    .about-con .about-caption p {
        font-size: 16px;
    }
    .map-con iframe {
        height: 300px;
    }
    .brands-card-col .brands-card-full .brands-card-img {
        width: 110px;
    }
    .brands-card-col .brands-card-full .brands-card-caption {
        width: calc(100% - 110px);
    }
    .brands-card-col .brands-card-full .brands-card-caption img {
        width: 180px;
        max-width: 100%;
    }
    .brands-card-col .brands-card-full .brands-card-caption img.pe-4 { 
        width: 220px;
    }
    .formulation-list .qc-ul ul {
        display: block;
    }

    .formulation-list .qc-ul ul li {
        width: 100%;
    }
    .back-btn .btn {
        font-size: 14px;
        line-height: 23px;
    }
    .testi-img-caption-text {
        padding: 30px 0;
    }
    .parameter-tbl table th:first-child,
    .parameter-tbl table td:first-child {
        background-color: #c1c1c1;
    }
    .product-img-slider .pro-img-slide-col img {
        max-width: 100%;
    }
    .directors .team-wrap .team-member {
        margin: 18px auto;
    }
    .directors .team-wrap .team-member img {
        margin-bottom: 16px;
    }
    .directors .team-wrap .team-member-detail img {
        margin-bottom: 16px;
    }
    .directors .team-wrap .team-member span {
        font-size: 16px;
    }
    .directors .team-wrap .page-head h1 {
        font-size: calc(var(--lgHeadingFont) * 0.8);
    }
    .page-banner-con {
        padding-top: 140px;
    }
    .steriport-total-banner .product-banner-img img {
        width: 240px;
    }
    .hot-spot {
        width: 8px;
        height: 8px;
        border: 2px solid transparent;
    }
    .hot-spot:before {
        width: 16px;
        height: 16px;
        top: -14px;
        left: -14px;
    }
    .speech-bubble {
        font-size: 10px;
        padding: 6px 10px;
        margin-top: -20px;
    }
    .speech-bubble::before {
        width: 8px;
        height: 8px;
        bottom: -5px;
    }

    .theraoeutic-range img {
        width: 200px !important;
    }
    .infra-fixed-slide-col img {
        height: 160px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img p {
        font-size: calc(var(--normalTextFont) * 1);
    }
    .accordionFaq .accordion .accordion-item .accordion-body{
        padding: 21px;
    }
    .accordionFaq .accordion .accordion-item .accordion-header{
        padding-left: 21px;
    }
     .mb-5 {
        margin-bottom: 1rem !important;
    }
    .brochure-con .btn {
        padding: 10px 4px;
    }
    .page-not-found-img { 
        font-size: 6rem; 
    }
     .brochure-main .brochure-thumb img{
        display: none;
    }
    .btn.btn-icon span::before{
        bottom: 3px;
    }
        .policies ul {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
      .announcements ul {
        grid-template-columns:1fr;
        padding-left: 0px;
    }
}
@media only screen and (max-width: 575.98px) {
    .new-event-con .new-event-card-col {
        padding: 30px 25px;
    }
    .innovation-con {
        padding-top: 160px;
        min-height: 360px;
    }
    .innovation-con .innovation-caption .innovation-caption-col {
        padding: 40px 30px;
    }
    .brands-card-col {
        padding: 21px;
        min-height: 260px;
    }
    .brands-card-col .brands-card-full .brands-card-img {
        width: 110px;
    }
    .brands-card-col .brands-card-full .brands-card-caption {
        width: calc(100% - 110px);
    }
    .brands-card-col.brands-card-col-full-card .brands-card-img {
        width: 50% !important;
    }
    .social-ul ul li a {
        font-size: calc(var(--lgHeadingFont) * 0.75);
    }
    .network-con .network-caption .network-map {
        margin-top: 35px;
    }
    .brands-con .title-con {
        padding-bottom: 35px;
    }
    .product-con .product-card-col-title-box {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .logo-list-con .logo-list-col {
        padding: 8px 0;
    }
    .question-box-con .question-box-caption {
        padding: 30px;
    }
    .question-box-con .question-box-caption .question-caption p {
        font-size: calc(var(--xsHeadingFont) * 0.75);
    }
    .db-box-con {
        padding: 21px;
    }
    .db-box-con .db-box-col {
        padding: 8px 0;
    }
    .db-box-con .db-box-caption figure {
        margin-bottom: 15px;
    }
    .db-box-con .db-box-caption figure img {
        width: 150px;
    }
    .db-box-con.db-box-bg-img .db-box-caption {
        padding-bottom: 70px;
    }
    .db-box-con.db-box-bg-img .db-box-img {
        width: 100%;
    }
    .product-banner-con {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img {
        margin-bottom: 40px;
    }
    .product-banner-con .product-banner-caption .product-banner-caption-img img {
        width: 200px;
    }
    .product-banner-con .product-banner-caption h2 {
        margin-bottom: 18px;
    }
    .product-banner-con .product-banner-caption h3 img {
        height: 20px;
    }
    .product-banner-con.product-banner-bg-img-con {
        height: 100%;
        min-height: auto;
    }
    .product-banner-con.product-banner-bg-img-con .product-banner-bg-img {
        width: 100%;
    }
    .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.75);
    }
    .accordionFaq .accordion .accordion-item .accordion-header {
        font-size: calc(var(--xsHeadingFont) * 0.75);
    }
    .accordionFaq .accordion .accordion-item .accordion-header.collapsed {
        font-size: calc(var(--xsHeadingFont) * 0.75);
    }
    .lr-text-list-con .lr-text-list-full {
        padding: 10px 0;
    }
    .lr-text-list-con .lr-text-list-full h6 {
        margin-bottom: 8px;
    }
    .page-banner-con .page-banner-cat-icon img {
        width: 30px;
    }
    .breadcrumb-ul ul li {
        font-size: calc(var(--smTextFont) * 0.75);
    }
    .breadcrumb-ul ul li a::after {
        margin: 0 5px;
        font-size: calc(var(--xsTextFont) * 0.75);
    }
    .product-list-con .product-list-col .product-list-full .product-list-img a {
        padding: 20px;
        height: 240px;
    }
    .product-con .product-card-col .product-card-icon img {
        width: 55px;
    }
    .product-box-text.product-con .product-card-col {
        min-height: 190px;
    }
    .disclosure-section .info-table {
        font-size: var(--smTextFont);
    }
    .brands-card-col .brands-card-full .brands-card-caption img {
        width: 150px;
    }
    .formulation-list .qc-ul ul {
        display: block;
    }

    .formulation-list .qc-ul ul li {
        width: 100%;
    }
    .back-btn .btn {
        font-size: calc(var(--normalTextFont) * 0.92);
    }
    .product-detail-list ol li .row > div:first-child {
        padding-bottom: 8px;
    }
    .directors .team-wrap .team-member {
        margin: 16px auto;
    }
    .directors .team-wrap .team-member img {
        margin-bottom: 15px;
    }
    .directors .team-wrap .team-member-detail img {
        margin-bottom: 15px;
    }
    .directors .team-wrap .page-head h1 {
        font-size: calc(var(--lgHeadingFont) * 0.75);
    }
    .steriport-total-banner .product-banner-img img {
        width: 240px;
    }
    .product-img-slider .pro-img-slide-col img {
        max-width: 100%;
    }
    .hot-spot {
        width: 4px;
        height: 4px;
        border: 1px solid transparent;
    }

    .hot-spot:before {
        width: 11px;
        height: 11px;
        top: -10px;
        left: -10px;
    }
    .speech-bubble {
        font-size: 9px;
        padding: 4px 8px;
        margin-top: -16px;
    }
    .speech-bubble::before {
        width: 5px;
        height: 5px;
        bottom: -4px;
    }

    .theraoeutic-range img {
        width: 200px !important;
    }

    ul.formulation li {
        font-size: 16px;
    }
    .brochure-main .db-box-con.db-box-bg-img {
        width: 540px;
        max-width: 100%;
    }
    .brochure-con .btn{
        padding: 17px 6px;
    }
        .brochure-main figure
    {
        width: 180px;
    }
    .brochure-main .brochure-thumb img{
        display: none;
    }
}
