@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

/* font-family: 'Roboto', sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
:root {
  scroll-behavior: smooth;
  --bodyFont: "Nunito Sans", sans-serif;
  --headingFont: "Gabarito", sans-serif;

  --white: #fff;
  --black: #000;
  --bodyTxt: #5c5c5c;
  --themeBlue: #0f3d7c;
  --themeSky: #009dcd;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: -0.02em;
  color: var(--bodyTxt);
  background-color: var(--white);
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--themeBlue);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: var(--headingFont);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 500;
  font-size: 85px;
  line-height: 1.12;
}

h2,
.h2-title {
  font-weight: 500;
  font-size: 50px;
  line-height: 1.07;
}

h3,
.h3-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.25;
}

h4,
.h4-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

h1 .change-font,
h2 .change-font,
h3 .change-font,
h4 .change-font h5 .change-font,
h6 .change-font {
  font-weight: 700 !important;
}

a,
button {
  touch-action: manipulation;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--themeSky);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--themeBlue);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  height: 60px;
  cursor: pointer;
  border: none;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--themeSky);
  color: var(--white);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  padding: 16px 30px;
  border-radius: 50px;
  transition: all 0.5s ease;
  background-image: url(images/white-top-arrw.svg);
  background-repeat: no-repeat !important;
  background-position: right 30px center !important;
  background-size: 10px !important;
  padding-right: 50px !important;
  transition: background-color 0.3s ease-in-out !important;
}

input[type="submit"]:hover {
  background-color: var(--themeBlue);
  color: var(--white);
  background-image: url(images/white-rotate-arrw.png);
  background-size: 18px !important;
  background-position: right 26px top 23px !important;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: var(--white);
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: var(--white);
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/
.main-head {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: var(--white);
  padding: 11.5px 0;
}

.main-head.fixed {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 104px;
  display: inline-block;
}

.navbar-brand img {
  max-width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 20px;
  padding: 0;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  font-family: var(--headingFont);
  color: var(--themeBlue);
  font-size: 18px;
  line-height: 1.56;
  position: relative;
  font-weight: 500;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3b61dc;
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: var(--themeSky);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  width: 100%;
  background: var(--themeSky);
}

.menu-item-has-children>a {
  padding-right: 18px !important;
}

.menu-item-has-children>a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url(images/rt-arrow-wh.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
}

.menu-item-has-children:hover>a::after,
.menu-item-has-children.current-menu-item>a::after {
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1652%) hue-rotate(164deg) brightness(96%) contrast(102%);
  /* This matches --themeSky */
}

/* Remove the previous ::before if it was there */
.menu-item-has-children>a::before {
  display: none;
}

/* navbar submenu*/

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  padding-top: 35px;
}

.sub-menu-innr {
  background: var(--themeSky);
  border: none;
  border-radius: 10px;
  width: 242px;
  padding: 13px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--themeSky);
}

.sub-menu-innr>li {
  width: 100%;
  display: block;
  padding: 0 16px;
}

.sub-menu-innr>li>a {
  color: var(--white);
  display: block;
  width: 100%;
  padding: 12px 0px;
  font-size: 18px;
  line-height: 1;
  font-family: var(--bodyFont);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sub-menu-innr>li:last-child a {
  border-bottom: none;
}

.navbar-nav .menu-item-has-children .menu-item-has-children .clickD {
  right: 16px;
}

.sub-menu-innr>li>a:hover,
.sub-menu-innr>li.menu-item-has-children:hover>a,
.sub-menu-innr>li.current-menu-item>a {
  opacity: 0.7;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  padding-left: 0;
  top: -13px;
  padding-top: 0;
}

.navbar-nav>li>.sub-menu .sub-menu::before {
  display: none;
}

.sub-menu .sub-menu .sub-menu-innr {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
}

.sub-menu .sub-menu .sub-menu-innr>li {}

.sub-menu .sub-menu .sub-menu-innr>li>a {
  color: var(--themeBlue);
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.sub-menu .sub-menu .sub-menu-innr>li>a:hover,
.sub-menu .sub-menu .sub-menu-innr>li.current-menu-item>a {
  background: var(--themeBlue);
  color: var(--white);
  padding-left: 10px;
  opacity: 1;
}

.sub-menu .sub-menu .sub-menu-innr>li:last-child a {
  border-bottom: none;
}

/* Side arrow for level 1 nested items */
.sub-menu-innr .menu-item-has-children>a {
  position: relative;
}

.sub-menu-innr .menu-item-has-children>a::after {
  display: none;
}

.sub-menu-innr .menu-item-has-children>.clickD {
  filter: brightness(0) invert(1);
  transform: rotate(-90deg) translate(55%);
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  border-radius: 0;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 50px;
}

.cmn-btn {
  position: relative;
  background: var(--themeSky);
  color: var(--white);
  font-family: var(--headingFont);
  font-weight: 500;
  line-height: 1.56;
  padding: 16px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.5s ease;
}

.cmn-btn i {
  display: flex;
  align-items: center;
  width: 12px;
  transition: all 0.3s ease;
}

.cmn-btn i img {
  width: 100%;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  display: block;
}

.cmn-btn:hover {
  background: var(--themeBlue);
  color: var(--white);
}

.cmn-btn:hover i {
  transform: rotate(45deg) translate(1px, 1px);
}

.cmn-btn.down i img {
  transform: rotate(140deg);
}

.cmn-btn.down:hover i img {
  transform: rotate(0deg);
}

.globe-icon {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.globe-icon img {
  width: 28px;
  display: block;
  transition: all 0.3s ease;
}

.globe-icon:hover img {
  filter: brightness(0);
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.navbar-nav .clickD {
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url(images/rt-arrow-wh.svg) center center no-repeat;
  display: block;
  background-size: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-nav>li:hover>.clickD {
  background: url(images/light-blue-arrw.svg) center center no-repeat;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  -o-transform: rotate(180deg) translateY(50%);
  -moz-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

/* Banner Section Start */
.main-banner {
  min-height: 797px;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: 100px;
  padding-bottom: 78px;
  z-index: 1;
}

.bnnr-img-wrppr {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.bnnr-img-wrppr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.main-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 19, 42, 0) 30%, #02132a 100%);
  z-index: 1;
}

.main-banner .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  color: var(--white) !important;
}

.banner-right-content {
  padding-bottom: 10px;
}

.banner-right-content p {
  color: var(--white);
  margin-bottom: 30px;
}

.bnnr-content-main {
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner-content .row {
  align-items: flex-end;
}

/* Banner Section End */

/* Common Utility Start */
.cmn-gap {
  padding: 100px 0;
}

.custm-align-cntr {
  align-items: center;
}

.custm-justfy-cntr {
  justify-content: center;
}

/* Common Utility End */

/* About Section Start */
.sec-head {
  margin-bottom: 40px;
}

.abut-sec-head {
  max-width: 1164px;
}

.abut-sec-head h2 {
  /* font-size: 48px; */
  font-size: 46px;
  line-height: 1.2;
}

.about-section .h2-title {
  max-width: 900px;
}

.about-img {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  position: absolute;
  top: 0;
  left: 0;
}

.about-content {
  padding: 33px 0 33px 33px;
}

.about-stats {
  margin: 52px 0 41px;
  max-width: 720px;
  width: 100%;
}

.stat-item h3 {
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  color: var(--themeSky);
  margin-bottom: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
}

.stat-item p {
  line-height: 1.2;
  margin: 0;
}

.about-stats .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.about-content .cmn-btn {
  background-color: rgba(0, 157, 205, 0.3);
  color: var(--themeBlue);
}

.about-content .cmn-btn img {
  filter: none;
}

.about-content .cmn-btn:hover {
  color: var(--white);
  background-color: var(--themeBlue);
}

.about-content .cmn-btn:hover img {
  filter: brightness(0) invert(1);
}

/* About Section End */

/* Infrastructure Section Start */

.infra-section {
  overflow: hidden;
}

.sec-head.infra-sec-head {
  max-width: 988px;
  margin-left: auto;
  margin-right: auto;
}

.sec-head p {
  margin-top: 15px;
}

.infra-main-wrapper {
  position: relative;
}

.infra-main-rw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.infra-card-col {
  width: 33.33%;
  flex: 0 0 auto;
}

.infra-card-col:first-child {
  width: 100%;
  margin-bottom: 80px;
}

.infra-card-col:first-child .infra-card {
  margin: 0 auto;
}

.infra-bg {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 851px;
  z-index: 1;
}

.infra-bg img {
  width: 100%;
  animation: rotateClockwise 100s linear infinite;
  transform-origin: center;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.infra-bg .mobile-icon,
.only-logo {
  display: none;
}

.infra-card {
  display: block;
  padding: 30px;
  width: 100%;
  max-width: 513px;
  z-index: 5;
  transition: all 0.4s ease;
  background: var(--white);
  border: 1px solid var(--themeBlue);
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.15);
  border-radius: 20px;
}

.infra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 157, 205, 0.15);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  padding-right: 55px;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: #edfbff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-head h3 {
  color: var(--themeBlue);
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 0;
}

.card-arrw {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 157, 205, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  z-index: 1;
}

.infra-card:hover .card-arrw {
  background: var(--themeSky);
  border-color: var(--themeSky);
  transform: translateY(-50%) rotate(45deg);
}

.infra-card:hover .card-arrw img {
  filter: brightness(0) invert(1);
}

.card-arrw img {
  width: 12px;
}

.infra-card p {
  color: var(--bodyTxt);
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.infra-center-logo {
  width: 272px;
  height: 272px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: linear-gradient(180deg,
      var(--white) 0%,
      #b7ecff 94.34%,
      #8ae0ff 100%);
  box-shadow: 0 11px 36px 0px rgba(6, 85, 170, 0.15);
  margin: 0 auto;
}

.logo-inner {
  text-align: center;
}

.logo-inner img {
  width: 120px;
  display: block;
  margin: 0 auto;
}

.one-step-better {
  font-size: 14px;
  color: var(--themeSky);
  font-weight: 700;
  font-family: var(--headingFont);
  display: block;
}

/* Infrastructure Section End */

/* start of excellence section */
.excellence-section {
  background-color: #f6faff;
}

.sec-head.head-text-center {
  text-align: center;
}

.excellence-sec-head {
  max-width: 935px;
  margin-left: auto;
  margin-right: auto;
}

.excellence-sec-head h2 {
  margin-bottom: 20px;
}

.excellence-sec-head p {
  line-height: 1.6;
  margin: 0;
}

.excellence-section .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
}

.excellence-card {
  display: block;
  background-color: var(--white);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.05);
  border-radius: 20px;
}

/* .excellence-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.excellence-card:hover h3 {
    color: var(--themeSky);
} */

.excellence-img {
  height: 380px;
  width: 100%;
}

.excellence-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excellence-content {
  padding: 20px 53px 30px 30px;
}

.excellence-content h3 {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.excellence-content p {
  color: var(--bodyTxt);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.02em;
}

.excellence-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.excellence-btn-wrap .cmn-btn {
  background-color: rgba(0, 157, 205, 0.3);
  color: var(--themeBlue);
}

.excellence-btn-wrap .cmn-btn img {
  filter: none;
}

.excellence-btn-wrap .cmn-btn:hover {
  color: var(--white);
  background-color: var(--themeBlue);
}

.excellence-btn-wrap .cmn-btn:hover img {
  filter: brightness(0) invert(1);
}

/* end of excellence section */

/* start of journey section */
.journey-section {
  background-color: var(--white);
  overflow: hidden;
}

.journey-sec-head {
  margin-bottom: 60px;
}

.journey-sec-head h2 {
  margin-bottom: 10px;
}

.journey-sec-head p {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--headingFont);
  margin: 0;
}

.journey-timeline-slider {
  position: relative;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 13px;
  margin-top: -13px;
}

.journey-timeline-slider::-webkit-scrollbar {
  display: none;
}

.journey-timeline-slider::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  /* width: max(100%, 1040px); */
  width: var(--timeline-width, 0px);
  height: 6px;
  background: url(images/repeated-dot.png) repeat-x left center;
  z-index: 1;
}

.journey-year {
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  outline: none !important;
  flex: 0 0 auto;
  min-width: 60px;
  font-family: var(--headingFont);
  font-style: normal;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  color: #bdcbdc;
}

.journey-year:focus {
  outline: none !important;
}

.journey-year::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 15px;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  outline: 3px solid var(--white);
  background: #bdcbdc;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.29);
  border-radius: 100%;
  transition: 0.3s all;
}

.journey-year span {
  transition: 0.3s all;
}

.journey-timeline-slider .journey-year.active::before {
  background: var(--themeSky);
}

.journey-timeline-slider .journey-year.active span {
  color: var(--themeSky);
  font-weight: 700;
}

.journey-slider-wrap {
  position: relative;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.journey-content-slider .slick-prev,
.journey-content-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: none;
  background: rgb(0 157 205 / 20%);
  color: var(--themeSky);
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.journey-content-slider .slick-prev {
  left: -80px;
}

.journey-content-slider .slick-next {
  right: -80px;
}

.journey-content-slider .slick-arrow:hover {
  background: var(--themeSky);
  color: var(--white);
}

.journey-content-slider .slick-arrow:hover img {
  filter: brightness(0) invert(1);
}

.journey-content-slider button:focus {
  outline: none;
}

.journey-slider-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0px 31.63px 50px rgba(6, 84, 170, 0.07);
}

.journey-card {
  padding: 30px 30px 30px 0;
  height: 100%;
  min-height: 430px;
}

.journey-card .row {
  align-items: stretch;
  height: 100%;
}

.journey-text {
  padding: 20px 30px 20px 60px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-text::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -10px;
  bottom: -10px;
  width: 4px;
  background: #644290;
  border-radius: 2px;
  display: none;
}

.journey-text h3 {
  font-size: 46px;
  color: var(--themeBlue);
  margin-bottom: 18px;
  line-height: 1;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--bodyTxt);
}

.journey-list li i.fa-circle-check {
  position: absolute;
  left: 0;
  top: 5px;
  color: #2ab5d9;
}

.journey-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.journey-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.journey-card .col-md-7 {
  width: 55%;
}

.journey-card .col-md-5 {
  width: 45%;
}

/* end of journey section */

/* start of product portfolio section */
.product-portfolio-section {
  background: #f6faff;
  padding: 80px 0;
}

.product-portfolio-section .sec-head {
  max-width: 1060px;
  margin: 0 auto;
}

.product-portfolio-section .sec-head h2 {
  color: var(--themeBlue);
  margin-bottom: 15px;
}

.product-portfolio-section .sec-head p {
  color: #6c7a87;
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-slider-wrap {
  position: relative;
}

.product-slider .slick-track {
  display: flex !important;
}

.product-item {
  padding: 30px 15px;
  height: inherit !important;
}

.product-slider {
  margin: -30px -15px;
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0px 6px 25px rgba(6, 84, 170, 0.05);
}

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

.product-img {
  position: relative;
  padding-top: 136%;
  /* aspect ratio using padding */
  overflow: hidden;
  flex: 0 0 auto;
}

.product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title {
  flex-grow: 1;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-title h3 {
  color: var(--themeBlue);
  margin: 0;
  font-weight: 600;
  padding-right: 10px;
}

.plus-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--themeSky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeSky);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.product-card:hover .plus-btn {
  background: var(--themeSky);
  color: var(--white);
}

.product-card:hover .plus-btn img {
  filter: brightness(0) invert(1);
}

.campaign-slider {
  margin: -30px -15px;
}

.product-slider-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-progress {
  flex: 1;
  height: 8px;
  background: rgba(0, 157, 205, 0.1);
  border-radius: 4px;
  position: relative;
  margin-right: 60px;
  overflow: hidden;
  cursor: pointer;
}

.slider-progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--themeSky);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.product-nav-arrows {
  display: flex;
  gap: 15px;
}

.product-nav-arrows .slick-prev,
.product-nav-arrows .slick-next,
.hme-team-arrw-wrppr .slick-arrow {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hme-team-arrw-wrppr .slick-prev {
  margin-right: 15px;
}

.product-nav-arrows .slick-arrow,
.hme-team-arrw-wrppr .slick-arrow {
  background: #d3ebf5;
  color: var(--themeSky);
}

.product-nav-arrows .slick-arrow:hover,
.hme-team-arrw-wrppr .slick-arrow:hover {
  background: var(--themeSky);
  color: var(--white);
}

.product-nav-arrows .slick-arrow img,
.hme-team-arrw-wrppr .slick-arrow img {
  filter: none;
}

.product-nav-arrows .slick-arrow *,
.hme-team-arrw-wrppr .slick-arrow * {
  pointer-events: none;
}

.product-nav-arrows .slick-arrow:hover img,
.hme-team-arrw-wrppr .slick-arrow:hover img {
  /* Ensures SVGs invert properly according to hover states */
  filter: brightness(0) invert(1);
}

/* end of product portfolio section */

/* start of meet our team section */
.team-section {
  background: #f6faff;
  padding: 80px 0;
}

.team-section .sec-head {
  max-width: 799px;
  margin: 0 auto;
}

.team-section .sec-head h2 {
  color: var(--themeBlue);
  margin-bottom: 15px;
}

.team-section .sec-head p {
  margin-bottom: 15px;
}

.team-tabs .nav-tabs {
  border-bottom: 1px solid #e4e8ed;
  border-radius: 0;
  gap: 30px;
  margin: 0 auto 40px;
  max-width: fit-content;
}

.team-tabs .nav-link {
  border: none;
  background: transparent;
  color: rgba(17, 17, 17, 0.3);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  padding: 18px 11px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  letter-spacing: -0.02em;
  position: relative;
  outline: none !important;
  font-family: var(--headingFont);
}

.team-tabs .nav-link:hover {
  color: var(--themeBlue);
}

.team-tabs .nav-link.active {
  border-bottom: 2px solid var(--themeSky);
  background-color: transparent;
  color: #111111;
}

.team-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0px 20px 20px rgba(6, 84, 170, 0.07);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

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

.team-img {
  position: relative;
  padding-top: 120%;
  flex: 0 0 auto;
}

.team-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-title {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.team-text h3 {
  font-weight: 500;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  text-underline-offset: 6px;
}

.team-text h3:hover {
  color: var(--themeSky);
  text-decoration: underline;
}

.team-text p {
  margin: 0;
}

.team-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--themeSky);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-btn:hover {
  background: var(--themeSky);
  transform: rotate(51deg);
}

.team-btn:hover img {
  filter: brightness(0) invert(1);
}

/* end of meet our team section */

/* start of latest news section */
.latest-news-section {
  padding: 80px 0;
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.news-header h2 {
  color: var(--themeBlue);
  margin: 0;
}

.cmn-btn.bg-sky {
  background: var(--themeSky);
  color: var(--white);
  border-color: var(--themeSky);
  box-shadow: 0px 20px 50px #c3dae4;
}

.cmn-btn.bg-sky i img {
  filter: brightness(0) invert(1);
}

.cmn-btn.bg-sky:hover {
  background: var(--themeBlue);
  color: var(--white);
  border-color: var(--themeBlue);
}

.news-card {
  background: var(--white);
  color: var(--bodyTxt);
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  box-shadow: 0px 10px 45px rgba(6, 85, 170, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  color: var(--bodyTxt);
  border-color: var(--themeSky);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.06);
}

.news-img {
  width: 32%;
  flex-shrink: 0;
  position: relative;
  padding-top: 16.7%;
  border-radius: 10px;
  overflow: hidden;
}

.news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-title {
  flex: 1;
  padding: 0 25px 0 48px;
}

.news-title h3 {
  margin: 0;
  font-weight: 500;
}

.news-text {
  flex: 0 0 auto;
  width: 35%;
  padding-right: 15px;
}

.news-text p {
  max-width: 369px;
}

.news-text p {
  margin: 0;
}

.news-action {
  flex-shrink: 0;
}

.news-card .team-btn {
  width: 63px;
  height: 63px;
  border-width: 2px;
}

.news-card:hover .team-btn {
  background: var(--themeSky);
  transform: rotate(50deg);
}

.news-card:hover .team-btn img {
  filter: brightness(0) invert(1);
}

/* News Listing Section Start */
.news-listing-sec {
  background-color: var(--white);
}

.news-row {
  --bs-gutter-x: 30px;
}

.news-grid-row .row {
  --bs-gutter-y: 40px;
}

.news-listing-sec .news-card {
  display: block;
  cursor: default;
  transition: all 0.3s ease;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.news-card-img {
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.news-listing-sec .news-card:hover {
  transform: translateY(-5px);
}

.news-listing-sec .news-card:hover .news-card-img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.news-listing-sec .news-card:hover .news-card-img img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 20px 30px 0;
}

.news-card-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 500;
}

.news-card-title a {
  color: var(--themeBlue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-title a:hover {
  color: var(--themeSky);
}

.news-card-content p {
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  color: var(--themeSky);
  font-weight: 600;
  text-decoration: underline !important;
}

.read-more-btn:hover {
  color: var(--themeBlue);
}

.sidebar .widget {
  margin-bottom: 30px;
}

.widget.categories-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  color: var(--themeBlue);
}

.search-form {
  position: relative;
}

.categories-widget .widget-title {
  font-size: 24px;
  font-weight: 400;
}

.search-form input {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  padding: 0 70px 0 24px;
  border: 1px solid rgba(6, 73, 116, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--themeBlue);
  font-family: var(--headingFont);
  font-size: 18px;
}

.search-form input::placeholder {
  color: var(--themeBlue);
  opacity: 1;
  font-weight: 600;
}

.search-form input::-webkit-input-placeholder {
  color: var(--themeBlue);
  opacity: 1;
  font-weight: 600;
}

.search-form input::-ms-input-placeholder {
  color: var(--themeBlue);
  opacity: 1;
  font-weight: 600;
}

.search-form input::-moz-placeholder {
  color: var(--themeBlue);
  opacity: 1;
  font-weight: 600;
}

.search-form button {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--themeSky);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-form button:hover {
  background: var(--themeBlue);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.categories-widget ul li a {
  color: var(--bodyTxt);
  display: block;
  transition: all 0.3s ease;
}

.categories-widget ul li a:hover {
  color: var(--themeSky);
  padding-left: 8px;
}

.recent-post-item {
  display: flex;
  margin-bottom: 20px;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-img {
  width: 219px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-top: 38%;
  line-height: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.recent-post-content {
  padding-left: 22px;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.recent-post-content h5 {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 500;
}

.recent-post-content h5 a {
  color: var(--themeBlue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-content h5 a:hover {
  color: var(--themeSky);
}

.read-more-link {
  font-size: 18px;
  color: var(--themeSky);
  font-weight: 600;
  margin-top: auto;
  text-decoration: underline !important;
}

.read-more-link:hover {
  color: var(--themeBlue);
}

/* Pagination */
.pagination-wrap {
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 0;
  align-items: center;
}

.pagination li {
  list-style: none;
}

.pagination li a {
  color: #79797a;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li a i {
  color: #4e4e4e;
}

.pagination li a:hover i {
  color: var(--themeSky);
}

.pagination li.active a {
  width: 32px;
  height: 32px;
  background: var(--themeBlue);
  color: var(--white);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(6, 73, 116, 0.2);
}

.pagination li a:hover {
  color: var(--themeBlue);
}

.pagination li.active a:hover {
  color: var(--white);
}

/* Careers Openings Section Start */
.job-card {
  background: var(--white);
  border: 1px solid var(--themeBlue);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.job-card:hover {
  border-color: var(--themeSky);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.job-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--themeBlue);
}

.show-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.job-desc {
  margin-bottom: 15px;
}

.profile-head {
  font-weight: 700;
  font-family: var(--bodyFont);
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
  text-decoration: underline;
}

.candidate-profile {
  width: 100%;
}

.candidate-profile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  width: 100%;
}

.candidate-profile ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.candidate-profile ul li i {
  color: var(--themeSky);
  font-size: 18px;
  margin-top: 4px;
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.job-card-btn-wrap {
  width: 100%;
  margin-top: auto;
}

.show-more-btn {
  background: var(--themeSky);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: var(--themeBlue);
  color: var(--white);
}

.contact-cta-section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.cta-shape-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-shape-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-shape-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 35, 83, 0.75);
}

.contact-cta-outtr {
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 659px;
  margin: 0 auto;
  text-align: center;
}

.cta-content .bg-sky {
  box-shadow: none;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--white);
  margin-bottom: 24px;
}

.job_row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.cta-content-center {
  text-align: center;
}

.navbar-nav-right {
  margin-left: auto;
}

.form-submit-center {
  text-align: center;
}

.careers-form-sec {
  background-color: #f6faff;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.file-label {
  display: block;
  width: 100%;
  padding: 30px;
  border: 1px dashed #d1d1d1;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.file-label:hover,
.file-upload-wrapper .file-input:hover+.file-label,
.file-upload-wrapper.is-dragging .file-label {
  border-color: var(--themeSky);
  background: #f8fcfd;
}

.file-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--themeBlue);
  color: var(--themeBlue);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
}

.file-text {
  font-size: 14px;
  color: #666;
}

.file-info {
  margin-top: 10px;
  font-size: 12px;
  display: block;
  letter-spacing: -0.02em;
  color: #45699a;
  opacity: 0.5;
  font-weight: 400;
}

/* reCAPTCHA Mock Styles */
.g-recaptcha-mock {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  width: fit-content;
  gap: 15px;
  margin-bottom: 30px;
}

.recaptcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  background: var(--white);
  border-radius: 2px;
}

.g-recaptcha-mock span {
  font-size: 14px;
  color: #555;
  font-family: Arial, sans-serif;
}

.recaptcha-logo {
  width: 30px;
  height: auto;
}

/* end of contact cta section */

/* Footer Styles */
.main-footer {
  background-color: #f6faff;
  padding: 100px 0 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-col {
  padding: 0 15px;
}

.col-info {
  width: 18%;
}

.col-links {
  width: 34%;
}

.col-products {
  width: 18%;
}

.col-contact {
  width: 30%;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 180px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  padding-left: 40px;
}

.social-links a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s;
}

.social-links a:hover img {
  transform: translateY(-5px);
}

.footer-title {
  color: var(--themeBlue);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-ul li {
  margin-bottom: 15px;
}

.footer-ul li a {
  color: #5c5c5c;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-ul li a:hover,
.footer-ul li.current-menu-item a {
  color: var(--themeBlue);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-list li i {
  display: inline-block;
  width: 24px;
  flex-shrink: 0;
}

.contact-list li i img {
  height: auto;
  width: 100%;
}

.contact-list li span,
.contact-list li a {
  color: #5c5c5c;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-flex p,
.footer-bottom-flex a {
  color: #5c5c5c;
  margin: 0;
}

.footer-bottom-flex a:hover {
  color: var(--themeBlue);
}

.bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.bottom-links a,
.bottom-links span {
  color: #5c5c5c;
  text-decoration: none;
}

.bottom-links a:hover {
  color: var(--themeBlue);
}

.col-links .footer-ul {
  column-count: 2;
}

.cmn-gap.half-top-gap {
  padding-top: 50px;
}

/*--about page--*/
.main-banner.inner-banner {
  min-height: 475px;
}

.breadcrumb-sec {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  font-family: var(--headingFont);
  font-size: 18px;
  color: var(--bodyTxt);
}

.breadcrumb-list li a {
  color: var(--bodyTxt);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
  color: var(--themeSky);
}

.breadcrumb-list li:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 6px;
  font-size: 14px;
  color: var(--bodyTxt);
}

.breadcrumb-list li:last-child:after {
  display: none;
}

.breadcrumb-list li.active {
  color: var(--themeBlue);
}

/* Innovation Center Section */

.innovation-jets .h2-title {
  color: var(--themeBlue);
  margin-bottom: 15px;
}

.jets-sub-title {
  margin-top: 30px;
}

.jets-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.jets-cat-item {
  background: #edfbff;
  border-radius: 20px;
  padding: 30px 30px;
  transition: all 0.3s ease;
}

.jets-cat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.jets-cat-inner {
  display: flex;
  align-items: center;
}

.jets-cat-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.jets-cat-icon img {
  width: 100%;
  max-width: 38px;
}

.jets-cat-text h3 {
  font-size: 24px;
  color: var(--themeBlue);
  margin: 0;
  line-height: 1.2;
}

.jets-cat-text h3 span {
  display: block;
}

.jets-main-card {
  padding: 20px;
  background: var(--white);
  margin-top: 50px;
  border: 2px solid #addef0;
  box-shadow: 0px 31.63px 50px rgba(6, 84, 170, 0.07);
  border-radius: 50px;
}

.jets-card-row {
  /* align-items: center; */
  --bs-gutter-x: 40px;
}

.jets-card-img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.jets-card-content {
  padding: 20px 30px 20px 0;
}

.jets-card-left {
  width: 51%;
}

.jets-card-right {
  width: 49%;
}

.jets-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jets-card-content p {
  line-height: 1.6;
}

.jets-card-content p+p {
  margin-top: 30px;
}

.txt-sky {
  color: var(--themeSky);
  font-weight: 700;
}

/* Our Presence Section */
.our-presence-sec {
  background-color: #f6faff;
  padding: 80px 0;
}

.presence-stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.presence-stat-item {
  text-align: center;
  min-width: 250px;
}

.stat-number {
  font-size: 40px;
  color: var(--themeSky);
  margin-bottom: 20px;
  font-weight: 500;
}

.stat-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.map-box {
  margin-top: 40px;
  position: relative;
}

.map-box svg {
  position: absolute;
  top: 0;
  left: 0;
}

.map_list {
  display: none;
}

.map-box svg g[data-index] {
  cursor: pointer;
}

.map-box svg g[data-index] path {
  transition: fill 0.3s ease;
}

.map-box svg g[data-index]:hover path {
  fill: var(--themeSky) !important;
}

.map_popup {
  position: absolute;
  background: linear-gradient(208.72deg, #009dcd 15.82%, #71cde5 80.42%);
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.05);
  border-radius: 20px;
  padding: 16px 23px;
  z-index: 999;
  pointer-events: none;
  display: none;
  /* width: 375px; */
  transform: translate(-50%, -100%);
  margin-top: -22px;
  color: var(--white);
  text-align: center;
}

.map_popup:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  width: 0;
  height: 0;
  border-top: 10px solid #70cce5;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.map_popup.active {
  display: block;
  pointer-events: all;
}

.map_popup.top {
  transform: translate(-50%, -100%);
}

.map_popup.bottom {
  transform: translate(-50%, 45px);
}

.map_popup.left {
  transform: translate(calc(-100% - 15px), -45%);
}

.map_popup.right {
  transform: translate(20px, -45%);
}

.map_popup.bottom:after {
  top: -7px;
  border-top: none;
  border-bottom: 10px solid #06a0ce;
}

.map_popup.left::after {
  top: 50%;
  left: 100%;
  transform: translateX(calc(-50% + 3px)) translateY(-2px) rotate(-90deg);
  border-top: 10px solid #1ea9d4;
}

.map_popup h4 {
  color: inherit;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0;
}

.map_popup p {
  margin: 15px 0 0 0;
  line-height: 1.6;
}

.map_popup p:last-child {
  margin-top: 0;
}

.map_popup a {
  color: var(--white);
  text-decoration: underline !important;
}

.map_popup a:hover {
  color: var(--themeBlue);
}

/* Contact Us Page */

.contact-intro-row {
  align-items: center;
  --bs-gutter-x: 34px;
}

.contact-intro-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-intro-img img {
  width: 100%;
  display: block;
}

.contact-head {
  margin-bottom: 20px;
}

.reporting-box p {
  font-size: 18px;
  line-height: 1.6;
}

.reporting-box a {
  color: var(--themeSky);
  text-decoration: none;
  font-weight: 600;
}

.address-cards-row {
  margin-top: 100px;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.address-card {
  border: 1px solid rgba(0, 157, 205, 0.34);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 31px 50px rgba(6, 85, 170, 0.04);
}

.address-card:hover {
  transform: translateY(-10px);
  border-color: var(--themeSky);
  box-shadow: 0 15px 30px rgba(0, 157, 205, 0.1);
}

.card-title {
  color: var(--themeBlue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.company-name {
  color: #111111;
  margin-bottom: 16px;
}

.card-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.card-contact-list li:last-child {
  margin-bottom: 0;
}

.card-contact-list i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
}

.card-contact-list i img {
  width: 100%;
  height: auto;
}

.card-contact-list span,
.card-contact-list a {
  color: var(--bodyTxt);
  text-decoration: none;
  transition: color 0.3s;
}

.card-contact-list a:hover {
  color: var(--themeSky);
}

.contact-info-sec {
  padding-bottom: 0 !important;
}

.sec-head.contact-head:last-child {
  margin-bottom: 0;
}

.sec-head.contact-head a:hover,
.card-contact-list a:hover {
  color: var(--themeSky);
}

.sec-head.contact-head h2,
.sec-head.contact-head .h2-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.sec-head.contact-head a {
  color: var(--bodyTxt);
}

.contact-intro-content {
  max-width: 90%;
}

.form-card-wrapper {
  background: var(--white);
  border-radius: 15px;
  padding: 45px 40px;
  box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.04);
  max-width: 1056px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 20px;
  font-family: var(--headingFont);
  font-weight: 500;
  color: #111111;
  margin-bottom: 5px;
}

.required {
  color: #ff3b30;
  margin-left: 3px;
}

.contact-form-main .form-control,
.contact-form-main .form-select {
  border: 1px solid #cecece;
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 16px;
  color: var(--bodyTxt);
  height: auto;
  transition: all 0.3s ease;
}

.contact-form-main .form-select {
  cursor: pointer;
}

.contact-form-main .form-control::placeholder {
  color: var(--bodyTxt);
  opacity: 0.5;
}

.contact-form-main .form-control:focus,
.contact-form-main .form-select:focus {
  box-shadow: 0 4px 15px rgba(0, 157, 205, 0.15);
  outline: none;
}

.contact-form-main textarea.form-control {
  border-radius: 20px;
  resize: none;
  height: 130px;
}

.captcha-wrapper {
  max-width: 328px;
}

.form-submit-wrapper {
  margin-top: 50px;
}

.cmn-btn.cyan-btn {
  background: var(--themeSky);
  border-color: var(--themeSky);
  padding: 15px 45px;
}

.cyan-btn:hover {
  background: var(--themeBlue);
  border-color: var(--themeBlue);
}

/* Our Values Section Start */
.value-intro-wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 740px;
  display: flex;
  align-items: flex-end;
}

.value-intro-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.value-intro-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.8) 100%);
}

.value-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-title-no-mb {
  margin-bottom: 0;
}

.value-intro-card {
  position: relative;
  margin: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  z-index: 2;
  width: 100%;
}

.value-card-flex {
  display: flex;
  gap: 81px;
}

.value-card-left {
  flex: 0 0 auto;
}

.value-card-right {
  flex: 1;
}

.value-card-right p {
  line-height: 1.6;
  margin-bottom: 0;
}

.value-intro-sec {
  padding-top: 50px;
}

/* Our Values Section End */

/* Core Values Section Start */
.core-values-sec {
  background-color: #f6faff;
  padding: 80px 0;
}

.core-values-rw {
  --bs-gutter-y: 40px;
  --bs-gutter-x: 30px;
}

.core-value-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 41px 45px rgba(6, 85, 170, 0.07);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.core-value-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  flex: 0 0 auto;
}

.core-value-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-value-content {
  padding: 20px 15px 34px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.core-value-content h3 {
  color: var(--themeBlue);
  margin-bottom: 15px;
  line-height: 1;
  font-weight: 500;
  flex: 0 0 auto;
}

.core-value-content p {
  margin-top: auto;
}

/* Core Values Section End */

/* Mission & Vision Section Start */
.mission-vision-card {
  background: #eef4fc;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.mission-vision-img {
  position: relative;
  padding-top: 55%;
  overflow: hidden;
}

.mission-vision-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision-content {
  padding: 32px;
}

.mission-vision-content .h2-title {
  color: #002d6b;
  margin-bottom: 15px;
}

.mission-vision-content p {
  margin-bottom: 15px;
}

.mission-vision-content p:last-child {
  margin-bottom: 0;
}

/* Mission & Vision Section End */

/*---event page start--*/
.awareness-sec-head.sec-head {
  max-width: 1342px;
  margin-left: auto;
  margin-right: auto;
}

.camp-img {
  position: relative;
  padding-top: 67%;
  overflow: hidden;
}

.camp-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature-box {
  margin-top: 70px;
}

.video-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.video-thumbnail {
  position: relative;
  padding-top: 39.5%;
}

.video_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  animation: ripple 3s infinite;
  pointer-events: none;
}

.play-btn::after {
  animation-delay: 1.5s;
}

.play-btn img {
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
  transform: translateX(3px);
}

.play-btn:hover {
  background: var(--themeSky);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--themeSky);
}

.play-btn:hover img {
  filter: brightness(0) invert(1);
}

.awareness-sec2 {
  background-color: #f6faff;
}

/*---event page end--*/

.row.patient-safety-row,
.row.medicine-safety-row {
  /* align-items: center; */
  --bs-gutter-x: 42px;
  --bs-gutter-y: 30px;
}

.patient-safety-img,
.medicine-safety-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.patient-safety-img img,
.medicine-safety-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.medicine-safety-content .content-title {
  color: var(--themeBlue);
  margin-bottom: 25px;
  font-size: 24px;
}

.safety-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-check-list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.safety-check-list li:last-child {
  margin-bottom: 0;
}

.safety-check-list li i {
  margin-top: 4px;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.safety-check-list li i img {
  width: 20px;
  height: 20px;
  display: block;
}

.safety-check-list li span {
  /* font-size: 16px; */
  line-height: 1.5;
  color: var(--bodyTxt);
}

.medicine-safety-sec {
  background-color: #f6faff;
}

.medicine-safety-sec .sec-head {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.report-pv-sec .sec-head {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.data-protection-sec .sec-head {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.report-pv-row {
  flex-direction: row-reverse;
}

.data-protection-info {
  margin-top: 30px;
}

.data-protection-info p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.data-protection-info a,
.data-protection-info p {
  display: inline-block;
  color: var(--bodyTxt);
}

.data-protection-info a:hover {
  color: var(--themeSky);
}

.hotline-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hotline-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--bodyTxt);
  display: flex;
  align-items: center;
}

.hotline-list li:last-child {
  margin-bottom: 0;
}

.hotline-list li strong {
  color: var(--themeBlue);
  font-weight: 700;
  flex: 0 0 auto;
  margin-right: 10px;
}

.report-adverse-card-wrap {
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.report-adverse-card-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.report-adverse-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: right center; */
}

.report-adverse-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  max-width: 765px;
  position: relative;
  z-index: 2;
}

.report-adverse-card .content-title {
  color: var(--themeBlue);
  margin-bottom: 15px;
}

.report-adverse-card .company-name {
  color: var(--themeBlue);
  font-size: 24px;
  margin-bottom: 5px;
}

.report-adverse-card .address {
  margin-bottom: 10px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.contact-info-list li strong {
  color: var(--themeBlue);
  font-weight: 700;
  margin-right: 10px;
  flex: 0 0 auto;
}

.contact-info-list li a,
.contact-info-list li p {
  display: inline-block;
  color: var(--bodyTxt);
  text-decoration: none;
}

.contact-info-list li p {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info-list li p>*:not(:last-child) {
  margin-right: 5px;
}

.contact-info-list li a:hover {
  color: var(--themeSky);
}

.form-tabs-wrapper {
  text-align: center;
}

.form-tabs {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 1px;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.form-tabs .nav-link {
  border: none;
  font-size: 24px;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.3);
  padding: 0 0 10px;
  position: relative;
  background: none;
  transition: all 0.3s ease;
  margin-top: -1px;
  font-family: var(--headingFont);
  letter-spacing: -0.02em;
}

.form-tabs .nav-link:hover {
  color: var(--themeSky);
}

.form-tabs .nav-link.active {
  color: var(--black);
  background: none;
}

.form-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--themeSky);
}

.form-submit-center {
  display: flex;
  justify-content: center;
}

.pharmacovigilance-form-sec {
  background-color: #f6faff;
}

/* CSR Page Styles */
.csr-intro-card {
  background: var(--white);
  padding: 36px 45px;
  border-radius: 20px;
  box-shadow: 0 31px 45px rgba(6, 85, 170, 0.07);
  text-align: left;
  position: relative;
  font-size: 24px;
}

.quote-icon {
  margin-bottom: 15px;
  opacity: 0.2;
}

.quote-icon img {
  width: 80px;
  height: auto;
}

.csr-intro-card p {
  line-height: 1.6;
  margin: 0;
}

.csr-objective-banner {
  border-radius: 20px;
  overflow: hidden;
  padding: 50px;
  min-height: 485px;
  display: flex;
  align-items: center;
  position: relative;
}

.csr-objective-img-wrppr {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.csr-objective-img-wrppr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-objective-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.csr-objective-card .h2-title {
  font-size: 32px;
  margin-bottom: 25px;
}

.objective-item {
  margin-bottom: 30px;
}

.objective-item:last-child {
  margin-bottom: 0;
}

.obj-title {
  font-size: 24px;
  color: var(--themeBlue);
  margin-bottom: 10px;
}

.csr-stats-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.stats-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
  /* align-items: center; */
  justify-content: center;
}

.stats-col {
  width: 20%;
  text-align: center;
  position: relative;
}

.stats-num {
  font-size: 56px;
  font-weight: 500;
  color: var(--themeBlue);
  margin-bottom: 10px;
}

.stats-text {
  font-size: 24px;
  color: var(--themeBlue);
  margin: 0;
  line-height: 1.2;
}

.stats-col:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 1px;
  height: 128px;
  background: rgba(0, 0, 0, 0.1);
}

.stats-col:last-child:after {
  content: none;
}

.csr-objective-sec.cmn-gap {
  padding-top: 25px;
}

/* CSR Key Areas */
.csr-key-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  color: var(--bodyTxt);
}

.csr-key-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  color: var(--bodyTxt);
}

.row.csr-key-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.csr-key-img {
  padding-top: 75%;
  overflow: hidden;
  position: relative;
}

.csr-key-img a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.csr-key-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s all;
}

.csr-key-img a:hover img {
  transform: scale(1.05);
}

.csr-key-content {
  padding: 20px 30px;
}

.csr-key-content h3 {
  margin-bottom: 15px;
}

.csr-key-content h3 a {
  color: var(--themeBlue);
}

.csr-key-content h3 a:hover {
  color: var(--themeSky);
}

.csr-key-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.load-more-wrap {
  margin-top: 50px;
}

.load-more-wrap.center {
  text-align: center;
}

.csr-key-areas-sec {
  background-color: #f6faff;
}

/* CSR Fancybox Popup */
.csr-popup-wrapper.fancybox__content {
  display: none;
  max-width: 1600px;
  padding: 65px 60px;
  border-radius: 20px;
  overflow: visible !important;
  background-color: #d9d9d9;
  max-height: 80dvh;
  color: var(--bodyTxt);
  font-size: 18px;
}

.csr-popup-grid {
  overflow-y: auto;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.csr-popup-img {
  width: 48.5%;
  height: auto;
}

.csr-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.csr-popup-content {
  width: 51.5%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.csr-popup-title {
  font-size: 56px;
  color: var(--themeBlue);
  margin-bottom: 10px;
}

.csr-popup-content p {
  line-height: 1.6;
  margin-bottom: 0;
}

.fancybox__content>.carousel__button.is-close {
  top: -15px;
  right: -15px;
  background: var(--white);
  color: var(--themeBlue);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.csr-popup-wrapper [data-fancybox-close] {
  opacity: 1 !important;
  visibility: visible !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -30px !important;
  right: -30px !important;
  z-index: 999 !important;
  background-color: #d9d9d9;
  color: var(--themeBlue);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.csr-popup-wrapper [data-fancybox-close]:hover {
  background-color: red;
  color: var(--white);
}

.csr-popup-wrapper [data-fancybox-close] path {
  stroke-width: 3px;
}

html.with-fancybox .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.91);
}

/* start of infrastructure page */
.page-banner {
  background-color: #f6faff;
  padding: 80px 0;
  text-align: center;
}

.page-title {
  font-size: 56px;
  margin-bottom: 10px;
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #bdcbdc;
}

.breadcrumb-item a {
  color: var(--themeSky);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #bdcbdc;
}

.innovation-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.1);
}

.innovation-img-col {
  width: 37.6%;
  padding: 0 15px;
}

.innovation-content-col {
  width: 62.4%;
  padding: 0 18px;
}

.innovation-inner-row {
  margin-top: 30px;
}

.sub-title {
  font-size: 32px;
  color: var(--themeBlue);
  margin-bottom: 15px;
}

.innovation-content p {
  margin-bottom: 30px;
}

.innovation-content p strong {
  color: var(--themeBlue);
}

.innovation-content p:last-child {
  margin-bottom: 0;
}

.side-img {
  max-width: 378px;
  height: 100%;
}

.side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.bg-light-blue1,
.bg-light-blue {
  background-color: #f6faff;
}

.innovation-img-main {
  width: 100%;
  height: 100%;
}

.capacities-wrap {
  margin-top: 50px;
}

.capacity-title {
  font-size: 48px;
  margin-bottom: 15px;
  text-align: center;
}

.capacities-wrap .sec-head {
  margin-bottom: 30px;
}

.capacities-wrap .sec-head p {
  margin-top: 0;
}

.capacity-tabs .nav-tabs {
  border-bottom: 1px solid #e4e8ed;
  border-radius: 0;
  gap: 30px;
  margin: 0 auto 40px;
  justify-content: center;
  max-width: fit-content;
}

.capacity-tabs .nav-link {
  border: none;
  background: transparent;
  color: rgba(17, 17, 17, 0.3);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  padding: 18px 11px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  letter-spacing: -0.02em;
  position: relative;
  outline: none !important;
  font-family: var(--headingFont);
  transition: all 0.3s ease;
}

.capacity-tabs .nav-link:hover {
  color: var(--themeBlue);
}

.capacity-tabs .nav-link.active {
  border-bottom: 2px solid var(--themeSky);
  background-color: transparent;
  color: #111111;
}

.capacity-tabs .tab-content {
  margin-top: 30px;

  background: var(--white);
  border-radius: 15px;
  padding: 20px;
}

.table-responsive {
  border: 1px solid #009dcd;
  border-radius: 20px;
}

.capacity-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
  background-color: #d9d9d9;
}

.capacity-table thead th {
  color: var(--themeBlue);
  font-size: 32px;
  padding: 20px 40px;
  border-bottom: 1px dashed #009dcd;
  font-family: var(--headingFont);
  font-weight: 600;
  width: 50%;
}

.capacity-table tbody td {
  padding: 20px 40px;
  border-bottom: 1px dashed #009dcd;
  vertical-align: middle;
  color: var(--bodyTxt);
  font-size: 18px;
  width: 50%;
}

.capacity-table th:first-child,
.capacity-table td:first-child {
  border-right: 1px dashed #009dcd;
}

.capacity-table tbody tr:last-child td {
  border-bottom: none;
}

.theme-blue {
  color: var(--themeBlue);
}

/* end of infrastructure page */

/* business focus page start */
.business-focus-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-focus-content {
  padding-left: 37px;
}

.business-focus-content h2 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.business-focus-content p {
  margin-bottom: 20px;
}

.business-focus-content p:last-child {
  margin-bottom: 0;
}

.bg-light-blue {
  background-color: #f1faff;
}

.therapeutic-section .sec-head {
  margin-bottom: 30px;
}

.therapeutic-section .sec-head h3 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500;
}

.therapeutic-card {
  background: rgba(237, 251, 255, 0.8);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 157, 205, 0.1);
  backdrop-filter: blur(5px);
}

.therapeutic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 157, 205, 0.15);
  background: var(--white);
  border-color: var(--themeSky);
}

.therapeutic-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.therapeutic-card:hover .therapeutic-icon {
  transform: rotate(10deg) scale(1.1);
  background: #f1fcff;
}

.therapeutic-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.therapeutic-text h4 {
  color: var(--themeBlue);
  margin-bottom: 0;
}

.operations-table-wrap {
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
}

/* operations section start */
.business-overview-table {
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  width: 100%;
  background-color: var(--white);
  transform: translateY(-1px);
}

.business-overview-table thead th {
  background-color: #009dcd;
  color: var(--white);
  font-size: 32px;
  padding: 20px 40px;
  text-align: left;
  border-bottom: 1px solid #009dcd;
  font-family: var(--headingFont);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.business-overview-table tbody td {
  padding: 20px 40px;
  border-bottom: 1px dashed #009dcd;
  vertical-align: middle;
  color: var(--bodyTxt);
}

.business-overview-table td:first-child {
  width: 30%;
  font-weight: 400;
  color: var(--themeBlue);
  border-right: 1px dashed #009dcd;
}

.business-overview-table td:last-child {
  width: 70%;
}

.business-overview-table tbody tr {
  transition: all 0.3s ease;
}

.business-overview-table tbody tr:hover {
  background-color: rgba(0, 157, 205, 0.03);
}

.business-overview-table tbody tr:last-child td {
  border-bottom: none;
}

/* business focus page end */

/* journey page start */
.regulatory-section {
  background-color: #eef4fc;
}

.regulatory-grid {
  margin-top: 50px;
}

.regulatory-grid .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.regulatory-card {
  background: var(--white);
  border-radius: 10px;
  padding: 25px 10px;
  height: 231px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 157, 205, 0.05);
}

.regulatory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 157, 205, 0.1);
  border-color: var(--themeSky);
}

.regulatory-logo {
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
}

.regulatory-logo img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.regulatory-card:hover .regulatory-logo img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* journey page end */

.sec-head.infra-sec-head2 {
  max-width: 1478px;
  margin: 0 auto 30px;
}

.therapeutic-section {
  padding-top: 50px;
}

.business-focus-rw {
  align-items: center;
}

.therapeutic-row {
  --bs-gutter-y: 30px;
  --bs-gutter-x: 30px;
}

/* Team Page Custom Styles */
.team-page-body .sec-head {
  max-width: 799px;
  margin: 0 auto 50px;
}

.team-sub-heading {
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
}

.team-group {
  margin-bottom: 100px;
}

.team-group .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.team-group:last-child,
.team-group:last-child .row>div:last-child {
  margin-bottom: 0;
}

.group-head {
  margin-bottom: 30px;
}

.team-sub-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--themeBlue);
}

.career-cta-sec {
  background-color: #f6faff;
}

.career-cta-content p a {
  text-decoration: underline !important;
  color: var(--themeSky);
}

.career-cta-content p a:hover {
  color: var(--themeBlue);
}

.career-cta-img {
  border-radius: 20px;
  overflow: hidden;
}

.career-cta-img img {
  width: 100%;
}

.career-cta-row {
  align-items: center;
}

.career-cta-box .row {
  --bs-gutter-y: 30px;
}

.text-blue {
  color: var(--themeBlue);
}

/* Product Page Custom Styles Start */
/* Dedicated Team Section Styles */
.dedicated-team-box {
  border: 1px solid #addef0;
  border-radius: 50px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0px 31.63px 50px rgba(6, 84, 170, 0.07);
}

.dedicated-team-box .row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 30px;
}

.team-box-img {
  height: 100%;
}

.team-box-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-box-content {
  padding-left: 20px;
}

.team-box-content h2 {
  color: var(--themeBlue);
  margin-bottom: 20px;
}

.team-box-content p {
  line-height: 1.6;
}

.team-box-content p strong {
  color: var(--themeBlue);
}

/* Commitment Section Styles */
.commitment-sec.cmn-gap {
  padding-top: 0;
}

.commitment-sec .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.commitment-sec .sec-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 900px;
}

.commitment-card {
  background: var(--white);
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.15);
  border-radius: 40px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.commitment-img {
  margin-bottom: 25px;
  position: relative;
  padding-top: 58.69%;
  overflow: hidden;
  border-radius: 20px;
}

.commitment-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-text p {
  line-height: 1.6;
}

.text-sky {
  color: var(--themeSky);
}

.commitment-sec .h3-title {
  font-weight: 500;
}

/* Portfolio Section Styles */
.portfolio-sec {
  background-color: #f6faff;
}

.portfolio-sec .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
}

.portfolio-card {
  height: 100%;
  background: var(--white);
  box-shadow: 0px 41.6316px 45.8797px rgba(6, 84, 170, 0.07);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.portfolio-img {
  aspect-ratio: 1.25;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.portfolio-title-flex h3 {
  font-weight: 500;
  color: var(--themeBlue);
  margin: 0;
}

.portfolio-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #71cde5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-btn img {
  width: 12px;
}

.portfolio-btn:hover {
  background: var(--themeBlue);
  border-color: var(--themeBlue);
}

.portfolio-btn:hover img {
  filter: brightness(0) invert(1);
}

.portfolio-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Innovation CTA Section Styles */
.innovation-cta-sec {
  text-align: center;
}

.innovation-content {
  max-width: 1000px;
  margin: 0 auto;
}

.innovation-content h2 {
  margin-bottom: 25px;
}

.innovation-text-wrap p {
  line-height: 1.8;
  color: #0f3d7c;
}

.innovation-cta-sec .innovation-content {
  max-width: 1110px;
}

.innovation-text-wrap {
  margin-bottom: 30px;
}

.innovation-btn-wrap {
  display: flex;
  justify-content: center;
}

.portfolio-card .portfolio-btn:hover {
  background-color: var(--themeSky);
}

.portfolio-card:hover .portfolio-btn {
  background: var(--themeSky);
  border-color: var(--themeSky);
  transform: rotate(50deg);
}

.portfolio-card:hover .portfolio-btn img {
  filter: brightness(0) invert(1);
}

/* Product Page Custom Styles End */

/* Cephalosporin Page Custom Styles Start */
.ceph-about-sec .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

/* .ceph-about-row {
    align-items: center;
} */

.product-list-head {
  margin-bottom: 3rem;
}

.product-list-sec {
  background-color: #f6faff;
  padding: 85px 0;
}

.ceph-about-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.ceph-about-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceph-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.41;
  border-radius: 30px;
  pointer-events: none;
}

.ceph-about-content h2 {
  margin-bottom: 25px;
}

.ceph-text-wrap p {
  margin-bottom: 20px;
}

.ceph-text-wrap p:last-child {
  margin-bottom: 0;
}

.product-table-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.15);
  border-radius: 25px;
}

.sno-col {
  border: 1px solid #71cde5;
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
}

.content-col {
  overflow: hidden;
  background: var(--white);
}

.sno-col {
  width: 270px;
  flex-shrink: 0;
}

.content-col {
  flex-grow: 1;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  padding: 22px 50px;
  text-align: left;
  border-bottom: 1px dashed #71cde5;
}

.product-table th {
  font-family: "Gabarito";
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0f3d7c;
}

.product-table td {
  vertical-align: middle;
}

.sno-col .product-table th,
.sno-col .product-table td {
  padding-left: 10px !important;
  padding-right: 10px !important;
  text-align: center;
}

.content-col .product-table th,
.content-col .product-table td {
  border-right: 1px dashed #71cde5;
}

.content-col .product-table th:last-child,
.content-col .product-table td:last-child {
  border-right: none;
}

.product-table tr:last-child td {
  border-bottom: none;
}

/* Cephalosporin Page Custom Styles End */

/* Oligonucleotides Page Custom Styles Start */
/* .oligo-about-row {
    align-items: center;
} */

.oligo-about-sec .row {
  --bs-gutter-x: 50px;
}

.oligo-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.oligo-about-content h2 {
  margin-bottom: 30px;
}

.oligo-feature-list {
  margin-bottom: 35px;
}

.oligo-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.oligo-feature-item:last-child {
  margin-bottom: 0;
}

.oligo-icon {
  width: 64px;
  height: 64px;
  background-color: var(--themeSky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oligo-icon img {
  width: 35px;
}

.oligo-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--themeBlue);
  margin-bottom: 6px;
}

.oligo-text p {
  margin-bottom: 0;
}

.oligo-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oligo-tag {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--themeSky);
  color: var(--white);
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--headingFont);
}

/* Oligonucleotides Page Custom Styles End */

/* Biosimilars Page Custom Styles Start */
.biosimilars-top-row {
  margin-bottom: 50px;
}

.biosimilars-top-text {
  margin-bottom: 0;
}

.biosimilars-top-text a {
  color: var(--themeSky);
}

.biosimilars-top-text a:hover {
  color: var(--themeBlue);
}

.innovation-inner-row.biosimilars-inner-row {
  margin-top: 0;
  margin-bottom: 40px;
}

.biosimilars-main .side-img {
  max-width: 282px;
  margin-left: auto;
}

.biosimilars-main .innovation-img-col {
  width: 41.3%;
  padding-right: 40px;
}

.biosimilars-main .innovation-content-col {
  width: 58.7%;
}

/* Biotech Facility Section */
.biotech-facility-section {
  background-color: #f6faff;
  overflow: hidden;
}

.biotech-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.biotech-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.biotech-list li:last-child {
  margin-bottom: 0;
}

.biotech-list li::before,
.safety-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 17px;
  height: 17px;
  background-image: url("images/check-blue.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.biotech-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.biotech-img-wrap img {
  width: 100%;
}

/* R&D Info Sections */
.rd-info-section {
  background-color: #f8fbff;
}

.rd-info-row {
  --bs-gutter-x: 56px;
}

.biotech-facility-rw-outtr>.row {
  --bs-gutter-y: 25px;
}

.biotech-facility-rw-outtr>.row:not(:last-child) {
  margin-bottom: 100px;
}

.rd-info-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
}

.rd-info-content h4 {
  margin-top: 25px;
  margin-bottom: 18px;
  font-size: 18px;
  color: var(--themeBlue);
  font-weight: 500;
  line-height: 1.4;
}

.rd-info-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.rd-info-list li {
  margin-bottom: 8px;
}

.table-outer {
  padding: 10px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.equipment-table,
.capabilities-list {
  border: 1px solid #009dcd;
  overflow: hidden;
  background: var(--white);
  border-radius: 21px;
  line-height: 1.2;
}

.equipment-table table {
  width: 100%;
  margin-bottom: 0;
}

.equipment-table td {
  padding: 20px 24px;
  border-bottom: 1px dashed rgba(0, 157, 205, 0.4);
  font-size: 18px;
  width: 50%;
  vertical-align: middle;
}

.equipment-table td:first-child {
  border-right: 1px dashed rgba(0, 157, 205, 0.4);
}

.equipment-table tr:last-child td {
  border-bottom: none;
}

.capabilities-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capabilities-list li {
  padding: 15px 24px;
  border-bottom: 1px dashed rgba(0, 157, 205, 0.4);
  line-height: 1.5;
}

.capabilities-list li:last-child {
  border-bottom: none;
}

.rd-info-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* .rd-info-row-last {
    align-items: center;
} */

/* Pipeline Section */
.pipeline-intro {
  max-width: 1161px;
  margin: 0 auto 27px;
}

.pipeline-intro p {
  line-height: 1.6;
}

.pipeline-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.pipeline-pill {
  background: var(--white);
  border: 1px solid #eeeeee;
  padding: 10px 17px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.pipeline-pill i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-image: url("images/check-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
}

.mfg-box {
  background: #f8fbff;
  padding: 47px 18px 47px 40px;
  border-radius: 20px;
  height: 100%;
}

.mfg-box h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

/* Biosimilars utility replacements */
/* .biotech-info-row {
    align-items: center;
} */

.rd-info-img {
  width: 100%;
  height: 100%;
}

.rd-initiatives-title {
  margin-bottom: 1.5rem;
  /* Equivalent to mb-4 */
}

.rd-info-row-last {
  margin-bottom: 0;
}

.mfg-col {
  margin-bottom: 1.5rem;
  /* Equivalent to mb-4 */
}

/* Biosimilars Page Custom Styles End */

.business-focus-section {
  padding-bottom: 0 !important;
}

.news-btn-mobile-wrap {
  display: none;
}

.navbar-nav>li.current-menu-item .clickD {
  background: url(images/light-blue-arrw.svg) center center no-repeat;
}

.jets-sub-title {
  font-family: var(--headingFont);
}

.jets-sub-title strong {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.innovation-inner-para-col {
  padding-bottom: 60px;
}

.business-overview-table.business-focus-table td:first-child {
  color: var(--bodyTxt);
}

.table-responsive.product-table table th:first-child,
.table-responsive.product-table table td:first-child {
  display: none;
  text-align: center;
}

.journey-content-slider .slick-track {
  display: flex !important;
}

.journey-item {
  height: inherit !important;
}

.hme-team-slide {
  padding: 45px 15px;
  height: auto !important;
}

.hme-team-slider {
  margin: -45px -15px;
  overflow: hidden;
}

.hme-team-slider .slick-track {
  display: flex !important;
}

.table-responsive.product-table table tr th:nth-child(2) {
  width: 30%;
}

.table-responsive.product-table table tr th:last-child {
  width: 35%;
}

.each-item-wrppr:not(:last-child) {
  margin-bottom: 80px;
}

.table-responsive.product-table.extra table th:first-child,
.table-responsive.product-table.extra table td:first-child {
  display: table-cell !important;
  text-align: center;
}

.footer-ul.contact-list li:first-child i {
  padding: 0px 3px;
}

.change-font {
  font-family: var(--bodyFont);
  display: inline !important;
  font-weight: 600;
}

.for-mobile-only {
  display: none !important;
}

/* sp starts */

.all-inr-table-wrap>*:not(:last-child) {
  margin-bottom: 19px;
}

.all-inr-table-wrap .business-overview-table tbody>*:first-child td {
  font-size: 32px;
  color: var(--themeBlue);
  font-weight: 600;
  font-family: var(--headingFont);
}

.all-inr-table-wrap .business-overview-table tbody td {
  width: 50%;
}

.capacity-tabs .innr-tabs .nav-link {
  border: none;
  color: var(--white);
  background-color: #b2b4b8;
  border-radius: 26px;
  min-width: 200px;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
}

.capacity-tabs .innr-tabs .nav-link:hover,
.capacity-tabs .innr-tabs .nav-link.active {
  background-color: var(--themeSky);
}

.capacity-tabs .innr-tabs .nav-tabs {
  border: none;
  gap: 10px;
  margin-bottom: 20px;
}

.capacity-tabs .tab-content {
  margin: 0;
  background: none;
  border-radius: 0;
  padding: 0;
}

.innr-tabs .tab-content,
.all-inr-table-outer {
  margin-top: 30px;
  background: var(--white);
  border-radius: 25px;
  padding: 20px;
}

.pop-slider-outer {
  position: relative;
  width: 100%;
  height: 100%;
}

.pop-slider .slick-track {
  display: flex !important;
}

.pop-slider .pop-slider-each {
  height: inherit !important;
}

.pop-slider .pop-slider-each-inr {
  width: 100%;
  height: 100%;
}

.pop-slider {
  height: 100%;
}

/* sp ends */

.for-mobi {
  display: none;
}

.map-box svg {
  width: 100%;
  height: 100%;
}

.data-protection-info .hotline-list p {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.data-protection-info .hotline-list p>*:not(:last-child) {
  margin-right: 5px;
}

.data-protection-info p a {
  color: var(--themeSky);
}

.data-protection-info p a:hover {
  color: var(--themeBlue);
}

/* TEAM POPUP START */

.csr-popup-wrapper.cmn-team-popup.fancybox__content {
  max-width: 800px;
  padding: 40px 0 40px 40px;
  background-color: var(--white);
}

.csr-popup-wrapper.cmn-team-popup [data-fancybox-close] {
  background-color: var(--white);
  transition: 0.5s all;
}

.csr-popup-wrapper.cmn-team-popup [data-fancybox-close]:hover {
  background-color: red;
}

.cmn-team-popup-innr {
  overflow: auto;
  height: 100%;
  padding-right: 40px;
}

.cmn-team-popup-innr::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
  background-color: #f2f4f8;
}

.cmn-team-popup-innr::-webkit-scrollbar-thumb {
  background-color: var(--themeSky);
  border-radius: 0;
}

.team-popup-img-wrppr {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.team-popup-img-wrppr img {
  width: 100%;
}

.team-popup-content-wrppr {
  text-align: center;
}

.team-popup-content-wrppr h3 {
  line-height: 1;
  margin-bottom: 10px;
}

.team-popup-content-wrppr h4 {
  font-family: var(--bodyFont);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEAM POPUP END */

.csr-stats-sec-modified {
  padding-top: 0;
}

.campaign-slider .slick-track {
  display: flex !important;
}

.oligo-about-img {
  width: 100%;
  height: 100%;
}

.patient-safety-content,
.medicine-safety-content {
  padding: 30px 0;
}

.data-protection-info .hotline-list.gray p a {
  color: var(--bodyTxt);
}

.data-protection-info .hotline-list.gray p a:hover {
  color: var(--themeSky);
}

.main-banner.event .bnnr-img-wrppr img {
  object-position: center top;
}

/* .csr-popup-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
}

.csr-popup-wrapper.active {
    opacity: 1;
    pointer-events: auto;
}

.cmn-team-popup-innr {
    height: auto;
    display: flex;
    align-items: center;
    max-width: 550px;
    padding: 40px 0 40px 40px;
    background-color: var(--white);
    max-height: 80vh;
    color: var(--bodyTxt);
    font-size: 18px;
    border-radius: 20px;
    overflow: visible !important;
}
.team-popup-content-wrppr {
    padding-right: 40px;
}

body.scroll-hidden{
    overflow:hidden;
} */

.journey-text h4 {
  margin-bottom: 10px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 40px;
  display: block;
  transition: 0.5s all;
}

.play-icon>img {
  width: 100%;
  position: static;
}

.camp-img:hover .play-icon {
  opacity: 0.5;
}

.modifiy-banner {
  padding: 0;
  min-height: inherit !important;
  flex-direction: column;
}

.modifiy-banner .bnnr-img-wrppr {
  position: relative;
  z-index: 1;
}

.modifiy-banner.main-banner::before {
  z-index: 2;
}

.modifiy-banner .bnnr-content-main {
  z-index: 3;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-top: 100px;
  padding-bottom: 78px;
}

.nowrap-text {
  white-space: nowrap;
}

.innovation-img-wrppr {
  width: 100%;
  height: 100%;
}

.resp-mob-img-wrppr {
  display: none;
}

/* .tablet-img, */
.mobile-img {
  display: none !important;
}

.rc-anchor-light {
  background: #ffffff !important;
}

.rc-anchor {
  border-radius: 13px !important;
}

.recent-post-img:hover img {
  transform: scale(1.05);
}

.small-screen-para {
  display: none;
}

.breadcrumb-sec.single-page {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.csr-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  padding-top: 48%;
  margin-bottom: 40px;
}

.csr-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-content-wrppr {
  padding: 45px;
  background: var(--white);
  box-shadow: 0px 31.63px 50px rgba(6, 84, 170, 0.07);
  border-radius: 20px;
}

.gallery-slider-controls {
  margin-top: 30px;
  justify-content: center;
}

.sec-head.gallery-head {
  margin-bottom: 40px;
}

.gallery-slider {
  margin: -30px -15px;
}

.ceph-about-sec .row.csr-detail {
  --bs-gutter-x: 36px;
}

.row.csr-detail .innovation-inner-para-col {
  padding-bottom: 0;
}

.row.csr-detail .innovation-inner-row {
  margin-top: 0;
}

.row.csr-detail .innovation-content p {
  margin-bottom: 10px;
}

.csr-gallery-rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.csr-gallery-img-col {
  width: 33.33%;
}

.csr-gallery-img-col .camp-img {
  padding-top: 87.7%;
}

.csr-gallery-img-col:nth-child(5n + 5),
.csr-gallery-img-col:nth-child(5n + 4) {
  width: 50%;
}

.csr-gallery-img-col:nth-child(5n + 5) .camp-img,
.csr-gallery-img-col:nth-child(5n + 4) .camp-img {
  padding-top: 57.4%;
}

.article-content p .cmn-btn {
  display: none;
}

.single-post .article-content p .cmn-btn {
  display: inline-flex;
}

.biotech-list.extra li {
  margin-bottom: 10px;
}

.mobile-close {
  display: none;
}

.card-contact-list-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.table-responsive-innr {
  border-radius: 20px;
  overflow: hidden;
}

.nowrap-text.block-elm {
  white-space: nowrap;
}

.media-table#product-data-table tr>* {
  width: auto;
}

.media-table#product-data-table tr>*:nth-child(2) {
  width: 300px;
}

.media-table#product-data-table tr>*:nth-child(3) {
  width: 300px;
}

.map-popup-content-innr {
  max-width: 300px;
  margin: 0 auto;
}

html.with-fancybox .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.hme-team-arrw-wrppr {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 30px;
}

.hme-team-arrw-wrppr.not-slide {
  display: none;
}

.bnnr-img-wrppr .for-bnnr-mobile {
  display: none;
}

.thank-you-sec {
  background: #f7fbff;
  position: relative;
  border-bottom: 1px solid #eee;
}

.thank-you-panel {
  background: #fff;
  border: 1px solid rgba(0, 128, 198, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(12, 50, 84, 0.08);
  margin: 0 auto;
  max-width: 820px;
  padding: 56px 48px;
  text-align: center;
}

.thank-you-icon {
  align-items: center;
  background: #eaf8f5;
  border: 1px solid rgba(0, 166, 136, 0.22);
  border-radius: 50%;
  color: #009b7d;
  display: inline-flex;
  font-size: 38px;
  height: 86px;
  justify-content: center;
  margin-bottom: 24px;
  width: 86px;
}

.thank-you-panel h2 {
  color: #10385b;
  margin-bottom: 14px;
}

.thank-you-panel p {
  color: #516579;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 640px;
}

.thank-you-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.error-404-sec {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.error-404-sec .banner-title {
  color: var(--themeBlue) !important;
  max-width: 100%;
  margin-bottom: 10px;
}

.social-media-only-mobi {
  display: none;
}

.form-submit-innr {
  position: relative;
}

.form-submit-innr input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.form-submit-innr input[type="submit"]:hover+.cmn-btn.bg-sky {
  background: var(--themeBlue);
  color: var(--white);
  border-color: var(--themeBlue);
}

.form-submit-innr input[type="submit"]:hover+.cmn-btn i {
  transform: rotate(45deg) translate(1px, 1px);
}

.team-text {
  padding-right: 15px;
}

/* 24-08-2026 start KM */
/* .dgt-img-text::after {
  content: "";
  display: block;
  clear: both;
}

.dgt-img-text .side-img {
    float: right;
    margin-left: 15px;
    margin-top: 15px;
    max-width: 50%;
} */
/* 24-08-2026 end KM */

/* 25-08-2026 start KM */
.half-top-gap.new-mod .innovation-content {
  max-width: 1300px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.half-top-gap.new-mod .innovation-img-wrppr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.1);
}

.exist-row-new {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.exist-row-new-lft-col,
.exist-row-new-rgt-col {
  padding: 15px;
}

.exist-row-new-lft-col {
  width: 34%;
}

.exist-row-new-rgt-col {
  width: 66%;
}

.half-top-gap.new-mod .innovation-img-wrppr {
  width: 100%;
  height: 100%;
  position: relative;
}

.exist-row-new-rgt-col .innovation-img-wrppr img {
  position: absolute;
}

.exist-row-new-wrapper {
  max-width: 1400px;
}

.innovation-content-responsive {
  display: none;
}

.sec-head.infra-sec-head2.mfc-content {
  max-width: 1200px;
}

.regulatory-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-img img.positions-top-right {
  object-position: top right;
}

/* 25-08-2026 end KM */

/* 02.09.26 start */

.each-announcement-itm {
  padding: 20px 0;
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
}

.announcement-innr {
  border-top: 1px solid rgba(92, 92, 92, 0.2);
}

.each-announcement-itm:last-child {
  border-bottom: none;
}

.each-announcement-itm h5 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.each-announcement-itm h5 a {
  color: var(--bodyTxt);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.each-announcement-itm h5 a:hover {
  color: var(--themeSky);
}

.home .widget.recent-posts-widget {
  display: none;
}

/* 02.09.26 end */






/*---------- RESPONSIVE CSS START ----------*/
@media screen and (min-width: 992px) {
  .csr-popup-wrapper.fancybox__content {
    max-width: 900px;
  }

  .mfg-col {
    margin-bottom: 0;
    /* Equivalent to mb-lg-0 */
  }
}

@media screen and (min-width: 1200px) {
  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }

  .container {
    max-width: 1170px;
  }

  .csr-popup-wrapper.fancybox__content {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1350px;
  }

  .csr-popup-wrapper.fancybox__content {
    max-width: 1320px;
  }
}

@media screen and (min-width: 1800px) {
  .container {
    max-width: 1630px;
  }

  .csr-popup-wrapper.fancybox__content {
    max-width: 1600px;
  }

  .new-mod .about-img {
    min-height: 468px;
  }
}

@media screen and (max-width: 1799.98px) {
  .footer-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  h1,
  .h1-title {
    font-size: 58px;
  }

  h2,
  .h2-title {
    font-size: 46px;
  }

  h3,
  .h3-title {
    font-size: 26px;
  }

  body {
    font-size: 16px;
  }

  .abut-sec-head h2 {
    font-size: 40px;
  }

  /* product portfolio section start */
  .product-title h3 {
    font-size: 24px;
  }

  .product-title {
    padding: 30px 25px;
  }

  .plus-btn {
    width: 35px;
    height: 35px;
  }

  /* product portfolio section end */

  .news-text {
    width: 32%;
  }

  .banner-title {
    max-width: 660px;
  }

  /* journey page start */
  .regulatory-card {
    padding: 20px;
  }

  .regulatory-logo img {
    max-height: 153px;
  }

  .regulatory-card {
    height: 180px;
  }

  /* journey page end */

  /* Cephalosporin Page Custom Styles Start */
  .product-table th {
    font-size: 24px;
  }

  .product-table td {
    font-size: 16px;
  }

  /* Cephalosporin Page Custom Styles End */
  /* business focus page start */
  .therapeutic-text h4 {
    font-size: 20px;
  }

  .therapeutic-card {
    padding: 20px;
  }

  .therapeutic-icon {
    width: 70px;
    height: 70px;
  }

  /* business focus page end */

  .business-focus-rw {
    align-items: inherit;
  }

  .business-focus-img {
    width: 100%;
    height: 100%;
  }

  .business-focus-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .jets-cat-text h3 {
    font-size: 20px;
  }

  .jets-cat-item {
    padding: 18px;
  }

  .capacity-table thead th {
    font-size: 28px;
    padding: 15px 40px;
  }

  .sub-title {
    font-size: 28px;
  }

  .news-card-title {
    font-size: 26px;
  }

  .recent-post-content h5 {
    font-size: 20px;
  }

  .news-card-content {
    padding: 15px 20px 0;
  }

  .job-title {
    font-size: 22px;
  }

  .csr-popup-grid {
    align-items: inherit;
  }

  /* Oligonucleotides page start */
  .safety-check-list li {
    margin-bottom: 12px;
  }

  .report-pv-sec .sec-head h2 {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-text {
    font-size: 19px;
  }

  /* Oligonucleotides page end */

  .innovation-inner-para-col {
    padding-bottom: 0;
  }

  .sno-col {
    width: 130px;
  }

  /* sp starts */

  .all-inr-table-wrap .business-overview-table tbody>*:first-child td {
    font-size: 26px;
  }

  /* sp ends */

  .header-right {
    gap: 25px;
    margin-left: 25px;
  }

  .navbar-nav>li>a {
    font-size: 16px;
  }

  .navbar-nav>li {
    margin: 0 15px;
  }

  .capacity-title {
    font-size: 42px;
  }

  .contact-list li i {
    width: 20px;
  }

  .footer-ul li {
    margin-bottom: 10px;
  }

  .social-links a img {
    width: 22px;
    height: 22px;
  }

  .social-links {
    gap: 12px;
    margin-top: 15px;
    padding-left: 35px;
  }

  .stats-num {
    font-size: 50px;
  }

  .media-table#product-data-table tr>*:nth-child(2),
  .media-table#product-data-table tr>*:nth-child(3) {
    width: 250px;
  }

  .map-popup-content-innr {
    max-width: 260px;
  }

  .journey-text h3 {
    font-size: 40px;
  }

  .biotech-list li::before,
  .safety-check-list li::before {
    top: 4px;
  }

  .col-info {
    width: 19%;
  }

  .col-links {
    width: 32%;
  }

  .col-products {
    width: 17%;
  }

  .col-contact {
    width: 32%;
  }

  .col-links .footer-ul {
    column-gap: 40px;
  }
}

@media screen and (max-width: 1599.98px) {

  h1,
  .h1-title {
    font-size: 55px;
  }

  .banner-title {
    max-width: 570px;
  }

  .team-box-content {
    padding-left: 0;
  }

  .dedicated-team-box .row {
    --bs-gutter-x: 30px;
  }

  .journey-content-slider .slick-prev {
    left: -50px;
  }

  .journey-content-slider .slick-next {
    right: -50px;
  }

  .report-adverse-card {
    max-width: 680px;
  }

  .capacity-title {
    font-size: 40px;
  }

  .capacities-wrap {
    margin-top: 35px;
  }

  .form-group label {
    font-size: 18px;
  }

  .journey-text h3 {
    font-size: 38px;
  }

  .csr-objective-card {
    max-width: 650px;
  }
}

@media screen and (max-width: 1439.98px) {

  h1,
  .h1-title {
    font-size: 48px;
  }

  h2,
  .h2-title {
    font-size: 40px;
  }

  h3,
  .h3-title {
    font-size: 22px;
  }

  .navbar-brand {
    width: 80px;
  }

  .navbar-nav>li>a {
    font-size: 15px;
  }

  .navbar-nav>li {
    margin: 0 11px;
  }

  /* Main Banner Responsive */
  .main-banner {
    min-height: 650px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 400px;
  }

  /*--- Inner Banner Responsive End ---*/

  /* About Section Responsive */
  .abut-sec-head h2 {
    font-size: 38px;
  }

  /* Infrastructure Section Responsive */
  .infra-center-logo {
    width: 230px;
    height: 230px;
  }

  .logo-inner img {
    width: 100px;
  }

  .infra-bg {
    max-width: 790px;
  }

  .footer-title {
    font-size: 20px;
  }

  .news-card .team-btn {
    width: 50px;
    height: 50px;
  }

  .news-title h3 {
    font-size: 26px;
  }

  .news-text p {
    font-size: 16px;
  }

  .journey-content-slider .slick-prev {
    left: -40px;
  }

  .journey-content-slider .slick-next {
    right: -40px;
  }

  .product-title {
    padding: 20px 15px;
  }

  .plus-btn {
    width: 30px;
    height: 30px;
  }

  .product-item {
    padding: 30px 12px;
  }

  .product-slider {
    margin: -30px -12px;
  }

  /* .jets-category-grid {
        grid-template-columns: repeat(3, 1fr);
    } */
  .jets-cat-text h3 {
    font-size: 18px;
  }

  .jets-cat-icon {
    width: 60px;
    height: 60px;
  }

  .jets-cat-item {
    padding: 18px 10px;
  }

  .address-cards-row {
    margin-top: 80px;
  }

  .address-card {
    padding: 30px;
  }

  .value-intro-wrap {
    min-height: 640px;
  }

  .news-card-title {
    font-size: 22px;
  }

  .recent-post-img {
    width: 120px;
    padding-top: 28%;
  }

  .recent-post-content {
    padding-bottom: 0;
  }

  .job-title {
    font-size: 20px;
  }

  .news-card-content {
    padding: 15px 12px 0;
  }

  .recent-post-content h5 {
    font-size: 18px;
    line-height: 1.2;
  }

  .csr-intro-card {
    padding: 26px 30px;
    font-size: 20px;
  }

  .csr-popup-title {
    font-size: 42px;
  }

  .dedicated-team-box .row {
    --bs-gutter-x: 30px;
  }

  .product-table th {
    font-size: 22px;
  }

  .product-table th,
  .product-table td {
    padding: 18px 20px;
  }

  .biotech-facility-rw-outtr>.row:not(:last-child) {
    margin-bottom: 80px;
  }

  /* Oligonucleotides page start */
  .report-pv-sec .sec-head h2 {
    max-width: 770px;
  }

  .stats-text {
    font-size: 16px;
  }

  /* Oligonucleotides page end */

  .innovation-content br {
    display: none;
  }

  /* sp starts */

  .all-inr-table-wrap .business-overview-table tbody>*:first-child td {
    font-size: 24px;
  }

  /* sp ends */

  .cmn-btn {
    padding: 10px 24px;
  }

  .sub-menu {
    padding-top: 26px;
  }

  .sub-menu::before {
    top: 19px;
  }

  .jets-card-left,
  .jets-card-right {
    width: 100%;
  }

  .jets-main-card {
    border-radius: 30px;
  }

  .innovation-img-col,
  .innovation-content-col,
  .biosimilars-main .innovation-img-col,
  .biosimilars-main .innovation-content-col {
    width: 100%;
  }

  .biosimilars-main .innovation-img-col {
    padding-right: 15px;
  }

  .innovation-img-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .innovation-img-wrppr {
    width: 49%;
    height: inherit;
  }

  .resp-mob-img-wrppr,
  .biosimilars-main .side-img {
    height: inherit;
    display: block;
    width: 49%;
    max-width: 100%;
  }

  .innovation-img-col {
    margin-bottom: 30px;
  }

  .innovation-content {
    max-width: 100%;
  }

  .innovation-inner-image-col {
    display: none;
  }

  .innovation-inner-row>* {
    width: 100%;
  }

  .innovation-content p {
    margin-bottom: 15px;
  }

  .innovation-inner-row {
    margin-top: 0;
  }

  .business-focus-content {
    padding-left: 10px;
  }

  .biosimilars-top-row,
  .innovation-inner-row.biosimilars-inner-row {
    margin-bottom: 30px;
  }

  .small-screen-para {
    display: block;
  }

  .jets-card-img {
    height: auto;
  }

  .large-screen-para {
    display: none;
  }

  .jets-card-content p+p {
    margin-top: 0;
  }

  .capacity-title {
    font-size: 34px;
  }

  .sub-title {
    font-size: 26px;
  }

  .capacity-tabs .nav-link {
    font-size: 20px;
    padding: 12px 10px;
  }

  .capacity-tabs .nav-tabs {
    gap: 20px;
    margin: 0 auto 30px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  .portfolio-content {
    padding: 18px;
  }

  .main-footer {
    padding: 80px 0 0;
    font-size: 15px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .col-info {
    width: 18%;
  }

  .col-links {
    width: 30%;
  }

  .col-products {
    width: 17%;
  }

  .col-contact {
    width: 35%;
  }

  .stats-num {
    font-size: 44px;
  }

  .csr-key-content {
    padding: 20px;
  }

  .obj-title {
    font-size: 20px;
  }

  .about-stats {
    margin: 0 0 30px;
  }

  .stat-item h3 {
    font-size: 34px;
    padding-bottom: 20px;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-submit-wrapper {
    margin-top: 30px;
  }

  .gallery-slider {
    margin: -30px -12px;
  }

  .csr-detail .innovation-img-col {
    margin-bottom: 0;
  }

  .row.csr-detail .innovation-inner-row {
    --bs-gutter-y: 0;
  }

  .news-title h3 br {
    display: none;
  }

  .news-img {
    width: 27%;
  }

  .news-title {
    flex: 1;
    padding: 0 25px 0 35px;
  }

  .our-presence-sec,
  .core-values-sec,
  .product-list-sec {
    padding: 65px 0;
  }

  .media-table#product-data-table tr>*:nth-child(2),
  .media-table#product-data-table tr>*:nth-child(3) {
    width: 180px;
  }

  .journey-text h3 {
    font-size: 34px;
  }

  .resp-mob-img-wrppr.last-feed {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }

  .resp-mob-img-wrppr.last-feed img {
    max-height: 500px;
    object-fit: cover;
  }

  .innovation-img-col.last-feed {
    width: 38%;
    margin-bottom: 0;
  }

  .innovation-content-col.last-feed {
    width: 62%;
  }

  .innovation-img-col.last-feed .innovation-img-wrppr {
    width: 100%;
  }

  .dgt-img-text .side-img {
    display: none;
  }
}

@media screen and (max-width: 1199.98px) {
  /* navbar*/

  .sub-menu.show {
    display: block;
  }

  .globe-icon img {
    width: 24px;
  }

  /* navbar end*/

  /* navbar*/
  .navbar-toggler {
    background-color: transparent;
    order: 1;
    position: relative;
    width: 30px;
    margin-left: 20px;
    height: 25px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 10px;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--themeSky);
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.3s;
    border-radius: 5px;
  }

  .stick {
    transition: all 0.3s;
  }

  .stick:before {
    content: "";
    top: -8px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 8px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
    transition: none;
    pointer-events: none;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(38px, -29px);
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(40px, 27px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 1px;
    right: 0;
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .menu-item-has-children .menu-item-has-children .clickD {
    right: 4px;
    width: 33px;
    height: 41px;
    transform: translate(0);
    top: 1px;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    font-size: 16px;
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--themeBlue);
  }

  .navbar-nav>li.current-menu-item>a,
  .sub-menu-innr>li.current-menu-item>a {
    background-color: var(--themeBlue);
    color: var(--white);
    border-color: var(--white);
    opacity: 1;
  }

  .navbar-nav>li>a:hover,
  .navbar-nav>li.menu-item-has-children:not(.current-menu-item):hover>a,
  .sub-menu-innr>li>a:hover,
  .sub-menu-innr>li.menu-item-has-children:hover>a,
  .sub-menu .sub-menu .sub-menu-innr>li>a:hover {
    background-color: transparent;
    color: var(--themeBlue);
    border-color: var(--themeBlue);
    opacity: 1;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    display: none;
  }

  /* push nav */
  .navbar-collapse {
    background: var(--white);
    position: fixed;
    top: 0;
    height: 100% !important;
    max-width: 290px;
    width: 100%;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 10px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 35, 83, 0.75);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    /* height: 100%; */
    overflow: hidden;
  }

  /* push nav end */

  .col-info {
    width: 100%;
    text-align: center;
  }

  .col-links {
    width: 38%;
    margin-bottom: 25px;
  }

  .col-products {
    width: 20%;
    margin-bottom: 25px;
  }

  .col-contact {
    width: 42%;
    margin-bottom: 25px;
  }

  /* Footer Section Responsive */
  .footer-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  h1,
  .h1-title {
    font-size: 44px;
  }

  h2,
  .h2-title {
    font-size: 34px;
  }

  .abut-sec-head h2 {
    font-size: 34px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  /* Header Responsive */
  .navbar-nav>li {
    margin: 0;
  }

  .header-right {
    margin-left: auto;
    gap: 20px;
  }

  .cmn-btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .sub-menu::before {
    display: none;
  }

  .sub-menu-innr {
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .sub-menu-innr>li>a {
    color: var(--themeBlue);
    font-family: var(--headingFont);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px 8px 30px;
    display: inline-block;
    width: 100%;
    line-height: 1.56;
    border-bottom: 1px solid var(--themeBlue);
  }

  .sub-menu-innr .menu-item-has-children>.clickD {
    filter: none;
    top: 0;
  }

  .navbar-nav>li>.sub-menu .sub-menu {
    padding: 0;
    border-bottom: 1px solid var(--themeBlue);
  }

  .sub-menu .sub-menu .sub-menu-innr {
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .sub-menu .sub-menu .sub-menu-innr>li>a {
    padding: 8px 15px 8px 40px !important;
    font-size: 16px;
    line-height: 1.56;
    border-color: var(--themeBlue);
  }

  .main-head {
    padding: 10px 0;
  }

  /* Main Banner Responsive */
  .main-banner {
    min-height: 550px;
    padding-top: 80px;
    padding-bottom: 50px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 380px;
  }

  /*--- Inner Banner Responsive End ---*/

  .banner-right-content {
    padding-bottom: 0;
    margin-top: 20px;
  }

  /*--- Innovation Center Responsive Added ---*/
  .jets-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .jets-card-left,
  .jets-card-right {
    width: 100%;
  }

  .jets-card-content {
    padding: 0;
    margin-top: 30px;
  }

  .jets-main-card {
    border-radius: 30px;
    padding: 30px;
  }

  /*--- Innovation Center Responsive End ---*/

  /* About Section Responsive */
  .abut-sec-head h2 {
    font-size: 36px;
  }

  .about-content {
    padding-left: 20px;
  }

  .stat-item h3 {
    font-size: 32px;
  }

  /* Infrastructure Section Responsive */
  .infra-center-logo {
    width: 200px;
    height: 200px;
  }

  .logo-inner img {
    width: 80px;
  }

  .infra-card {
    padding: 20px;
  }

  .infra-card-col:first-child {
    margin-bottom: 25px;
  }

  /*--- Our Presence Responsive Added ---*/
  .presence-stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .presence-stat-item {
    min-width: 200px;
  }

  /*--- Our Presence Responsive End ---*/

  .infra-bg {
    max-width: 680px;
    top: -40px;
  }

  .card-icon {
    width: 65px;
    height: 65px;
  }

  .card-head h3 {
    font-size: 24px;
  }

  .footer-ul li {
    margin-bottom: 6px;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .col-products .footer-ul {
    column-count: 1;
  }

  /* excellence section start */
  .excellence-img {
    height: 240px;
  }

  .excellence-content {
    padding: 20px 30px 25px;
  }

  /* excellence section end */

  /* journey section start */
  .journey-content-slider .slick-prev {
    left: -20px;
  }

  .journey-content-slider .slick-next {
    right: -20px;
  }

  .journey-text h3 {
    font-size: 34px;
  }

  .journey-text {
    padding: 30px 20px 30px 40px;
  }

  /* journey section end */

  /* product portfolio section start */
  .product-title {
    padding: 30px 20px;
  }

  .product-nav-arrows .slick-prev,
  .product-nav-arrows .slick-next,
  .hme-team-arrw-wrppr .slick-arrow {
    width: 50px;
    height: 50px;
  }

  .product-slider-controls {
    margin-top: 40px;
  }

  /* product portfolio section end */

  /* team section start */
  .team-tabs .nav-link {
    font-size: 20px;
    padding: 15px 10px;
  }

  .team-title {
    padding: 20px;
  }

  .team-btn {
    width: 50px;
    height: 50px;
  }

  /* team section end */

  /* latest news section start */
  .news-title {
    padding: 0 15px 0 25px;
  }

  .news-title h3 {
    font-size: 26px;
  }

  .news-text p {
    font-size: 16px;
  }

  /* latest news section end */

  .news-title h3 {
    font-size: 23px;
  }

  .team-text h3 {
    font-size: 20px;
  }

  /* Our Values Section Start */
  .value-intro-wrap {
    min-height: 500px;
  }

  .value-intro-card {
    padding: 30px 35px;
    margin: 20px;
  }

  .value-card-flex {
    gap: 30px;
  }

  .value-card-left {
    flex: 0 0 220px;
  }

  /* Our Values Section End */

  .navbar-nav>li:hover>.clickD {
    background: url(images/rt-arrow-wh.svg) center center no-repeat;
    -webkit-transform: inherit;
    transform: inherit;
  }

  .sub-menu-innr .menu-item-has-children>.clickD.toggled {
    top: 0;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 11px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  /* journey section start */
  .journey-content-slider .slick-prev {
    left: -20px;
  }

  .journey-content-slider .slick-next {
    right: -20px;
  }

  .journey-text {
    padding: 30px 20px 30px 40px;
  }

  /* journey section end */

  /* team section start */
  .team-tabs .nav-link {
    font-size: 20px;
    padding: 15px 10px;
  }

  .team-title {
    padding: 20px;
  }

  .team-btn {
    width: 50px;
    height: 50px;
  }

  /* team section end */

  /* latest news section start */
  .news-title {
    padding: 0 15px 0 25px;
  }

  .news-title h3 {
    font-size: 26px;
  }

  .news-text p {
    font-size: 16px;
  }

  /* operations section end */

  /* business focus page end */
  .therapeutic-card {
    padding: 25px 20px;
  }

  .therapeutic-icon {
    width: 60px;
    height: 60px;
  }

  .therapeutic-icon img {
    width: 30px;
    height: 30px;
  }

  /* business focus page end */

  .address-cards-row {
    margin-top: 40px;
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }

  .address-card {
    padding: 20px;
  }

  /*--- Innovation Center & Manufacturing Responsive Added ---*/
  .capacity-table thead th,
  .capacity-table tbody td {
    padding: 15px 25px;
  }

  .capacity-title {
    font-size: 30px;
  }

  .business-overview-table thead th {
    font-size: 26px;
    padding: 15px 40px;
  }

  .sec-head.infra-sec-head2 {
    max-width: 100%;
  }

  /*--- Innovation Center & Manufacturing Responsive End ---*/

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-card {
    height: 200px;
  }

  /*--- Regulatory Approvals Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/
  .value-intro-wrap {
    min-height: 600px;
  }

  .value-card-flex {
    gap: 40px;
  }

  .mission-vision-content {
    padding: 25px;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Awareness Section Responsive Added ---*/
  .video-feature-box {
    margin-top: 50px;
  }

  /*--- Awareness Section Responsive End ---*/

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-card {
    padding: 25px;
  }

  .job-title {
    font-size: 22px;
  }

  .profile-head {
    font-size: 18px;
  }

  .candidate-profile ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .file-label {
    padding: 20px;
  }

  /*--- Careers & Careers Form Responsive End ---*/

  .sub-title,
  .capacity-table thead th {
    font-size: 24px;
  }

  .job_row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }

  .news-card-content {
    padding: 15px 15px 0;
  }

  .recent-post-content h5 {
    font-size: 17px;
  }

  /* biosimilars page start */
  .biosimilars-main .innovation-img-col,
  .biosimilars-main .innovation-content-col {
    width: 100%;
  }

  .biosimilars-top-row {
    margin-bottom: 30px;
  }

  .rd-info-row .col-lg-6 {
    width: 100%;
  }

  .rd-info-row.flex-row-reverse .rd-info-img {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .rd-info-row {
    --bs-gutter-y: 30px;
  }

  .rd-info-section {
    overflow: hidden;
  }

  /* biosimilars page end */

  .csr-intro-card {
    padding: 22px 20px;
    font-size: 18px;
  }

  .quote-icon img {
    width: 60px;
  }

  .csr-objective-sec.cmn-gap {
    padding-top: 0;
  }

  .csr-objective-banner {
    padding: 30px;
    min-height: auto;
  }

  .csr-objective-card {
    padding: 20px;
    max-width: 500px;
  }

  .stats-num {
    font-size: 40px;
    margin-bottom: 4px;
  }

  .stats-text {
    font-size: 18px;
  }

  .stats-col {
    width: 33.33%;
  }

  .stats-row .stats-col:nth-child(3):after {
    content: none;
  }

  .csr-key-content p:last-child {
    margin-bottom: 0px;
  }

  .csr-popup-wrapper.fancybox__content {
    padding: 45px 40px;
  }

  .csr-popup-wrapper [data-fancybox-close] {
    width: 40px !important;
    height: 40px !important;
    top: -20px !important;
    right: -20px !important;
  }

  .csr-popup-title {
    font-size: 32px;
  }

  .row.patient-safety-row,
  .row.medicine-safety-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 20px;
  }

  .report-adverse-card-wrap {
    padding: 0;
    border-radius: 0;
  }

  .report-adverse-card-img {
    position: static;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
  }

  .report-adverse-card {
    padding: 0;
  }

  .form-tabs .nav-link {
    font-size: 18px;
  }

  .form-tabs {
    margin-bottom: 30px;
    gap: 20px;
  }

  .form-group label {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .team-group {
    margin-bottom: 70px;
  }

  .sno-col {
    /* width: 90px; */
    display: none;
  }

  .table-responsive.product-table table th:first-child,
  .table-responsive.product-table table td:first-child {
    display: table-cell;
  }

  .biotech-facility-rw-outtr>.row:not(:last-child) {
    margin-bottom: 60px;
  }

  .biotech-facility-rw-outtr>.row:nth-child(2) {
    flex-direction: column-reverse;
  }

  /* Oligonucleotides page start */
  .oligo-about-col {
    width: 100%;
  }

  .oligo-about-sec .row {
    --bs-gutter-y: 30px;
  }

  .oligo-about-img {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Oligonucleotides page end */

  .menu-item-has-children.current-menu-item>.clickD {
    filter: brightness(0) invert(1);
  }

  .navbar-nav>li.menu-item-has-children:hover .clickD {
    filter: inherit;
  }

  .sub-menu-innr>li {
    border-bottom: none;
    padding: 0;
  }

  .sub-menu-innr {
    border-bottom: 1px solid var(--themeBlue);
  }

  .sub-menu .sub-menu .sub-menu-innr>li.current-menu-item>a {
    color: var(--white);
    background-color: var(--themeBlue);
  }

  .navbar-nav>li.current-menu-item .clickD {
    background: url(images/rt-arrow-wh.svg) center center no-repeat;
  }

  .innovation-img-col h2 {
    margin-bottom: 0px;
  }

  .biosimilars-main .innovation-img-col {
    padding-right: 15px;
  }

  .innovation-inner-row.biosimilars-inner-row {
    margin-bottom: 25px;
  }

  .innovation-img-main {
    height: inherit;
    /* margin-bottom: 25px; */
  }

  .oligo-about-content .h2-title br {
    display: none;
  }

  .each-item-wrppr:not(:last-child) {
    margin-bottom: 60px;
  }

  .sub-menu {
    padding-top: 0;
    background: #efefef;
  }

  .sub-menu .sub-menu {
    background-color: #ecf9ff;
  }

  .sub-menu .sub-menu .sub-menu-innr>li {
    border: none;
  }

  .journey-content-slider .slick-prev,
  .journey-content-slider .slick-next {
    width: 50px;
    height: 50px;
    font-size: 16px;
    top: auto;
    bottom: -110px;
  }

  .journey-content-slider {
    margin-bottom: 85px;
  }

  .journey-content-slider .slick-prev {
    left: calc((50% - 50px) - 7px);
  }

  .journey-content-slider .slick-next {
    right: calc((50% - 50px) - 7px);
  }

  .journey-card {
    min-height: 330px;
  }

  .modifiy-banner {
    padding: 0 !important;
  }

  .modifiy-banner .bnnr-content-main {
    padding: 30px 0;
  }

  .business-focus-content {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .business-focus-rw {
    flex-direction: column-reverse;
  }

  .patient-safety-content {
    padding: 0;
  }

  .report-adverse-card-img .desktop-img {
    display: none;
  }

  .report-adverse-card-img .mobile-img {
    display: block !important;
  }

  .report-adverse-card-wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .business-overview-table tbody td {
    padding: 12px 40px;
  }

  .csr-content-wrppr {
    padding: 25px;
  }

  .gallery-slider-controls {
    margin-top: 20px;
  }

  .business-table-two tr>*:first-child {
    min-width: 250px;
  }

  .business-table-two tr td {
    width: auto;
  }

  .patient-safety-content,
  .medicine-safety-content {
    padding: 0 0 10px;
  }

  .main-footer {
    padding: 40px 0 0;
  }

  .biotech-list li::before,
  .safety-check-list li::before {
    top: 3px;
  }

  .navbar-nav>li.menu-item-has-children.current-menu-item:hover>a,
  .sub-menu-innr>li.menu-item-has-children.current-menu-item:hover>a,
  .sub-menu-innr>li.current-menu-item>a:hover,
  .navbar-nav>li.current-menu-item>a:hover {
    color: var(--white);
    background-color: var(--themeBlue);
    border-color: var(--white);
  }

  .navbar-nav li.menu-item-has-children.current-menu-item>span.clickD {
    filter: brightness(0) invert(1);
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .social-media-only-desktop {
    display: none;
  }

  .social-media-only-mobi {
    display: flex;
    margin-top: 0;
  }

  .col-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .biotech-facility-section .sec-head.head-text-center {
    text-align: left;
  }

  .social-links a img {
    width: 32px;
    height: 32px;
  }

  .innovation-img-col.last-feed,
  .innovation-content-col.last-feed {
    width: 50%;
    margin-bottom: 0;
  }

  .innovation-img-col.last-feed .innovation-img-main {
    height: 100%;
  }

  .innovation-img-col.last-feed .innovation-img-main img {
    object-position: left;
  }
}

@media screen and (max-width: 1024.98px) {
  .focus-card-img {
    height: 250px;
  }

  .focus-card-content {
    padding: 25px 20px;
  }

  .focus-card-content h3 {
    font-size: 24px;
  }

  .journey-slider-container {
    padding: 0;
  }

  .journey-card {
    padding: 30px 20px;
  }

  /*--- Innovation Center Responsive Added ---*/
  .jets-cat-text h3 {
    font-size: 20px;
  }

  .jets-cat-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .jets-cat-icon img {
    max-width: 30px;
  }

  .jets-cat-item {
    padding: 20px;
  }

  /*--- Innovation Center Responsive End ---*/

  .journey-timeline {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .timeline-years {
    min-width: inherit;
  }

  .journey-arr {
    display: none;
  }

  /* Main Banner Responsive */
  .main-banner {
    min-height: 500px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 350px;
  }

  /*--- Inner Banner Responsive End ---*/

  /* About Section Responsive */
  .stat-item h3 {
    font-size: 28px;
  }

  /* journey section start */
  .journey-card {
    padding: 30px 20px;
  }

  .journey-timeline-slider {
    padding-bottom: 20px;
  }

  .journey-year {
    min-width: inherit;
  }

  /* journey section end */

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-card {
    height: 180px;
    padding: 20px;
  }

  /*--- Regulatory Approvals Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/
  .value-intro-wrap {
    min-height: 500px;
  }

  .value-intro-card {
    padding: 30px;
    margin: 20px;
  }

  .value-card-flex {
    gap: 30px;
  }

  .core-values-rw {
    --bs-gutter-y: 30px;
  }

  .mission-vision-img {
    padding-top: 50%;
  }

  .mission-vision-content {
    padding: 20px;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Awareness Section Responsive Added ---*/
  .video-wrap {
    border-radius: 20px;
  }

  .video-thumbnail {
    padding-top: 45%;
  }

  /*--- Awareness Section Responsive End ---*/

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 20px;
  }

  .profile-head {
    font-size: 17px;
  }

  .candidate-profile ul li {
    font-size: 15px;
  }

  .file-label {
    padding: 15px;
  }

  /*--- Careers & Careers Form Responsive End ---*/

  .contact-form-main .form-control,
  .contact-form-main .form-select {
    border-radius: 30px;
    padding: 10px 30px 10px 20px;
    font-size: 14px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  /* Oligonucleotides page start */
  /* .oligo-about-col{
        width: 100%;
    }
    .oligo-about-sec .row{
        --bs-gutter-y: 30px;
    }
    .oligo-about-img{
        max-width: 600px;
    } */
  .medicine-safety-row {
    flex-direction: column-reverse;
  }

  .medicine-safety-row [class*="col"] {
    width: 100%;
  }

  .medicine-safety-img {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Oligonucleotides page end */
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .oligo-about-col.img {
    display: none;
  }

  .oligo-about-col.txt {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .report-adverse-card-img {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  body {
    font-size: 16px;
  }

  h1,
  .h1-title {
    font-size: 40px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  .abut-sec-head h2 {
    font-size: 28px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  /* Main Banner Responsive */
  .main-banner {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 320px;
  }

  /*--- Inner Banner Responsive End ---*/

  /*--- Map Box Responsive Added ---*/
  .map_popup {
    max-width: 300px;
    width: max-content;
    padding: 20px;
  }

  .map_popup h4 {
    font-size: 24px;
  }

  /*--- Map Box Responsive End ---*/

  /*--- Breadcrumb Responsive Added ---*/
  .breadcrumb-sec {
    padding: 15px 0;
  }

  .breadcrumb-list li {
    font-size: 16px;
  }

  /*--- Breadcrumb Responsive End ---*/

  /* About Section Responsive */
  .about-content {
    padding: 0;
    margin-top: 25px;
  }

  .about-stats {
    margin: 40px 0;
  }

  /*--- Our Presence Responsive Added ---*/
  .presence-stats-row {
    align-items: center;
    gap: 30px;
  }

  .presence-stat-item {
    min-width: calc(50% - 15px);
  }

  .stat-number {
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  /*--- Our Presence Responsive End ---*/

  /*--- Contact CTA Responsive Added ---*/
  .contact-cta-section {
    padding: 60px 0;
  }

  /*--- Contact CTA Responsive End ---*/

  .stat-item h3 {
    padding-bottom: 15px;
  }

  /* Infrastructure Section Responsive */
  .infra-main-rw {
    margin: -10px;
  }

  .infra-card-col {
    width: 50%;
    padding: 10px;
  }

  .infra-card-col:first-child {
    margin-bottom: 0;
  }

  .infra-bg {
    top: -20px;
  }

  .only-logo {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .only-logo img {
    animation: none;
  }

  .infra-center-logo {
    width: 180px;
    height: 180px;
  }

  .logo-inner img {
    width: 70px;
  }

  .about-img img {
    position: static;
  }

  .infra-card-col.logo {
    display: none;
  }

  /* Footer Section Responsive */
  .footer-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .main-footer {
    padding: 40px 0 0;
  }

  .col-links .footer-ul {
    column-count: 2;
    column-gap: 0;
  }

  .col-links {
    width: 36%;
    margin-bottom: 15px;
  }

  .col-products {
    width: 24%;
    margin-bottom: 15px;
  }

  .col-contact {
    width: 40%;
    margin-bottom: 15px;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .contact-list li {
    margin-bottom: 15px;
  }

  /* excellence section start */
  .excellence-section .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 30px;
  }

  .excellence-content p {
    font-size: 16px;
  }

  /* excellence section end */

  /* journey section start */
  .journey-sec-head {
    margin-bottom: 40px;
  }

  .journey-sec-head p {
    font-size: 20px;
  }

  .journey-img {
    height: 100%;
  }

  .journey-text h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .journey-text h4 {
    margin-bottom: 5px;
    font-size: 22px;
  }

  .journey-text {
    padding: 20px 15px 20px 0px;
  }

  .journey-text::before {
    display: none;
  }

  .journey-card {
    padding: 20px;
  }

  .journey-timeline-slider {
    padding-bottom: 0;
    margin-bottom: 10px;
  }

  /* journey section end */

  /* product portfolio section start */
  .product-portfolio-section {
    padding: 60px 0;
  }

  .product-portfolio-section .sec-head {
    margin-bottom: 30px;
  }

  .product-title h3 {
    font-size: 24px;
  }

  .product-title {
    padding: 20px 15px;
  }

  /* product portfolio section end */

  /* team section start */
  .team-section {
    padding: 60px 0;
  }

  .team-tabs .nav-tabs {
    gap: 15px;
    margin-bottom: 30px;
  }

  .team-tabs .nav-link {
    font-size: 18px;
    padding: 12px 10px;
  }

  .team-text h3 {
    font-size: 22px;
  }

  /* Our Values Section End */

  /* team section end */

  /* latest news section start */
  .latest-news-section {
    padding: 60px 0;
  }

  .news-header {
    margin-bottom: 30px;
  }

  .news-card {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .news-img {
    width: 100%;
    padding-top: 50%;
    margin-bottom: 20px;
  }

  .news-title {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 15px;
  }

  .news-title h3 {
    font-size: 24px;
  }

  .news-title h3 br {
    display: none;
  }

  .news-text {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 15px;
  }

  .news-text p {
    max-width: 100%;
  }

  .news-action {
    width: 100%;
  }

  /* latest news section end */

  .infra-main-wrapper {
    padding-bottom: 29%;
  }

  .infra-bg {
    top: auto;
    bottom: -48%;
  }

  /* Our Values Section Start */

  .value-card-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .value-card-left {
    flex: 0 0 auto;
  }

  /* Our Values Section End */

  /* infrastructure page start */
  .sub-title {
    font-size: 20px;
  }

  .capacity-title {
    font-size: 26px;
  }

  .innovation-img-main {
    height: auto;
  }

  .innovation-content p {
    margin-bottom: 14px;
  }

  .innovation-img-col,
  .innovation-content-col {
    width: 100%;
  }

  /* infrastructure page end */

  /* business focus page start */

  .business-focus-content h2 {
    font-size: 36px;
  }

  .business-overview-table thead th {
    font-size: 20px;
    padding: 15px 25px;
  }

  .business-overview-table tbody td {
    padding: 15px 25px;
    font-size: 15px;
  }

  /* business focus page start */

  /* journey page start */
  .regulatory-logo img {
    max-height: 65px;
  }

  /* journey page end */

  /*--- Contact Info & Contact Form Responsive Added ---*/
  .contact-intro-row {
    margin-bottom: 40px;
  }

  .address-cards-row {
    margin-top: 60px;
  }

  .address-card {
    padding: 30px;
  }

  .form-card-wrapper {
    padding: 40px;
  }

  /*--- Contact Info & Contact Form Responsive End ---*/

  .contact-intro-row {
    --bs-gutter-y: 30px;
    margin-bottom: 0;
  }

  .contact-intro-content {
    max-width: 100%;
  }

  .sec-head.contact-head {
    margin-bottom: 30px;
  }

  .sec-head.contact-head:last-child {
    margin-bottom: 0;
  }

  .address-cards-row {
    margin-top: 10px;
  }

  .sec-head.contact-head h2,
  .sec-head.contact-head .h2-title {
    font-size: 30px;
  }

  /*--- Innovation Center & Manufacturing Responsive Added ---*/
  .innovation-img-col,
  .innovation-content-col {
    width: 100%;
  }

  .capacity-tabs .nav-link {
    font-size: 18px;
    padding: 10px 10px;
  }

  .capacities-wrap {
    margin-top: 25px;
  }

  /*--- Innovation Center & Manufacturing Responsive End ---*/

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-card {
    height: 120px;
    padding: 15px;
  }

  .regulatory-logo {
    padding: 0;
  }

  /*--- Regulatory Approvals Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/
  .value-card-flex {
    flex-direction: column;
    gap: 15px;
  }

  .core-values-rw {
    --bs-gutter-x: 20px;
  }

  .core-value-content {
    padding: 20px 15px 25px 20px;
  }

  .mission-vision-card {
    height: auto;
  }

  .mission-vision-sec .row {
    --bs-gutter-y: 25px;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Awareness Section Responsive Added ---*/
  .video-thumbnail {
    padding-top: 56.25%;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn img {
    width: 20px;
    height: 20px;
  }

  /*--- Awareness Section Responsive End ---*/

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-card {
    padding: 25px 20px;
  }

  .job-title {
    font-size: 22px;
  }

  .profile-head {
    font-size: 18px;
  }

  .candidate-profile ul li {
    font-size: 16px;
  }

  .file-label {
    padding: 25px 15px;
  }

  .form-card-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }

  /*--- Careers & Careers Form Responsive End ---*/

  .recent-post-img {
    width: 170px;
    padding-top: 15%;
  }

  .recent-post-content {
    padding-bottom: 0;
  }

  .recent-post-item {
    align-items: center;
  }

  /* product page start */
  .team-box-content {
    padding-left: 0;
  }

  .portfolio-card {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .innovation-content {
    padding: 0px;
  }

  .innovation-content h2 {
    font-size: 28px;
  }

  .dedicated-team-box {
    padding: 15px 15px 25px;
  }

  .commitment-img {
    border-radius: 10px;
  }

  .commitment-card,
  .dedicated-team-box,
  .team-box-img img {
    border-radius: 12px;
  }

  /* product page end */

  /* Cephalosporin page start */
  .ceph-about-img {
    margin-bottom: 30px;
  }

  .product-table-wrapper {
    padding: 10px;
  }

  .product-table th {
    font-size: 18px;
    padding: 12px;
    width: 33.33%;
  }

  .product-table td {
    font-size: 14px;
    padding: 10px;
  }

  .ceph-about-img img,
  .ceph-overlay {
    border-radius: 15px;
  }

  .sno-col {
    display: none;
  }

  /* Cephalosporin page end */

  /* Biosimilars page start */
  .biosimilars-main .innovation-img-col,
  .biosimilars-main .innovation-content-col {
    width: 100%;
  }

  .biosimilars-main .side-img {
    max-width: 100%;
    /* margin-bottom: 30px; */
  }

  .rd-info-img img {
    border-radius: 10px;
  }

  .biotech-img-wrap {
    /* margin-top: 30px; */
    border-radius: 8px;
  }

  .rd-info-img {
    margin-top: 30px;
  }

  .rd-info-row.flex-row-reverse .rd-info-img {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .pipeline-pills {
    gap: 15px;
  }

  .pipeline-pill {
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 25px;
  }

  .table-outer {
    border-radius: 12px;
  }

  .equipment-table,
  .capabilities-list {
    border-radius: 9px;
  }

  .equipment-table td,
  .capabilities-list li {
    padding: 15px;
    font-size: 16px;
  }

  .side-img img,
  .innovation-img-main img {
    border-radius: 15px;
  }

  /* Biosimilars page end */

  /* Oligonucleotides page start */
  .oligo-about-sec {
    overflow: hidden;
  }

  .oligo-icon {
    width: 50px;
    height: 50px;
  }

  .oligo-icon img {
    width: 28px;
  }

  .oligo-text h3 {
    font-size: 20px;
  }

  .oligo-tag {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 15px;
  }

  /* Oligonucleotides page end */

  .csr-objective-card .h2-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .obj-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .csr-stats-card {
    padding: 20px;
  }

  .stats-col:after {
    height: 85px;
  }

  .csr-key-content {
    padding: 15px 20px;
  }

  .csr-popup-wrapper.fancybox__content {
    max-width: 85%;
  }

  .csr-popup-wrapper.fancybox__content {
    font-size: 16px;
  }

  .csr-popup-img,
  .csr-popup-content {
    width: 100%;
  }

  .csr-popup-wrapper.fancybox__content {
    padding: 35px 20px;
  }

  .report-adverse-card .company-name {
    font-size: 18px;
  }

  .safety-check-list li {
    margin-bottom: 12px;
  }

  .team-group {
    margin-bottom: 60px;
  }

  .table-responsive table th:first-child,
  .table-responsive table td:first-child {
    display: table-cell;
    width: 60px;
    /* Give it a small width on mobile */
  }

  .medicine-safety-content .content-title {
    font-size: 18px;
  }

  .table-responsive.product-table table th:first-child,
  .table-responsive.product-table table td:first-child {
    display: table-cell;
  }

  .news-action .team-btn {
    display: none;
  }

  .for-mobi {
    display: inline-block;
    color: var(--themeSky);
    font-weight: 500;
  }

  /* TEAM POPUP START */

  .csr-popup-wrapper.cmn-team-popup.fancybox__content {
    padding: 30px 0 30px 30px;
    max-width: 680px;
  }

  .cmn-team-popup-innr {
    padding-right: 30px;
  }

  /* TEAM POPUP END */

  .medicine-safety-content {
    padding: 0;
  }

  .journey-content-slider .slick-prev,
  .journey-content-slider .slick-next {
    bottom: -100px;
  }

  /* .journey-content-slider .slick-prev {
    left: calc((50% - 40px) - 7px);
  }

  .journey-content-slider .slick-next {
    right: calc((50% - 40px) - 7px);
  } */

  .journey-content-slider {
    margin-bottom: 75px;
  }

  /* .modifiy-banner .bnnr-img-wrppr img {
        min-height: 520px;
    }

    .inner-banner.modifiy-banner .bnnr-img-wrppr img {
        min-height: 400px;
    } */

  /* .tablet-img {
        display: block !important;
    }
    .desktop-img {
        display: none !important;
    } */

  .excellence-img {
    height: 350px;
  }

  .navbar-brand {
    width: 70px;
  }

  .report-adverse-card-wrap {
    padding: 0;
  }

  .single-rw {
    --bs-gutter-y: 35px;
  }

  .journey-card {
    min-height: 310px;
  }

  .banner-title {
    max-width: 100%;
  }

  .all-inr-table-wrap .business-overview-table tbody>*:first-child td {
    font-size: 18px;
  }

  .csr-objective-banner {
    display: block;
    border-radius: 0;
    padding: 0;
  }

  .csr-objective-img-wrppr {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    padding-top: 50%;
    position: relative;
  }

  .csr-objective-img-wrppr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
  }

  .csr-objective-card {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .for-mobile-only {
    display: block !important;
  }

  .header-right .cmn-btn {
    display: none;
  }

  .csr-gallery-img-col {
    width: 50%;
  }

  .csr-gallery-img-col .camp-img,
  .csr-gallery-img-col:nth-child(5n + 5) .camp-img,
  .csr-gallery-img-col:nth-child(5n + 4) .camp-img {
    padding-top: 87.7%;
  }

  .ceph-about-content h2 {
    margin-bottom: 15px;
  }

  .ceph-text-wrap p {
    margin-bottom: 15px;
  }

  .business-table-two tr>*:first-child {
    min-width: 200px;
  }

  .all-inr-table-wrap table.ampoules-table-two tr>*:first-child {
    width: 150px;
  }

  .all-inr-table-wrap table.ampoules-table-two td {
    width: auto;
  }

  .critical-care-table {
    min-width: 720px;
  }

  .oncology-table tr td {
    width: auto;
  }

  .oncology-table tr>*:nth-child(3) {
    width: 100px;
  }

  .media-table tr>*:nth-child(3) {
    width: 80px;
  }

  .map-box>img,
  .map-box svg {
    transform: scale(1.05);
  }

  .our-presence-sec,
  .core-values-sec,
  .product-list-sec {
    padding: 50px 0;
  }

  .journey-year::before {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .media-table#product-data-table tr>*:nth-child(2),
  .media-table#product-data-table tr>*:nth-child(3) {
    width: 140px;
  }

  .modifiy-banner .bnnr-content-main {
    position: static;
    padding: 30px 0 40px;
    background-color: var(--themeBlue);
  }

  .modifiy-banner.main-banner::before {
    display: none;
  }

  .inner-banner.modifiy-banner .bnnr-content-main {
    padding: 15px 0;
    position: absolute;
    background-color: transparent;
  }

  .modifiy-banner.main-banner.inner-banner::before {
    display: block;
  }

  .value-intro-wrap {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(20, 20, 20, 0.04);
  }

  .value-intro-img {
    position: relative;
  }

  .value-intro-card {
    width: 100%;
    position: relative;
    margin: 0;
    border-radius: 0 0 20px 20px;
    padding: 25px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .stat-divider {
    /* margin-bottom: 6px; */
    display: none;
  }

  .footer-ul li {
    padding-bottom: 6px;
    margin-bottom: 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }

  .table-responsive-innr {
    border-radius: 8px;
  }

  .banner-content .cmn-btn:hover {
    background-color: var(--white);
    color: var(--themeBlue);
  }

  .banner-content .cmn-btn:hover i img {
    filter: none;
  }

  .form-submit-wrapper {
    margin-top: 20px;
  }

  .form-submit-innr .cmn-btn.bg-sky {
    box-shadow: none;
  }

  .innovation-img-col.last-feed,
  .innovation-content-col.last-feed {
    width: 100%;
    margin-bottom: 30px;
  }

  .resp-mob-img-wrppr.last-feed {
    margin-top: 0;
  }

  /* 25-08-2026 start KM */
  .half-top-gap.new-mod .innovation-img-wrppr img {
    border-radius: 15px;
  }

  .journey-card .col-md-7,
  .journey-card .col-md-5 {
    width: 100%;
  }

  .journey-img {
    padding-top: 50%;
    border-radius: 10px;
  }

  .journey-text {
    padding: 0;
    margin-bottom: 0px;
  }

  .journey-text {
    padding: 0;
    margin-bottom: 0px;
  }

  .journey-card .col-md-7 {
    flex-grow: 1;
    padding-top: 15px;
  }

  .journey-card .row {
    align-items: flex-start;
    flex-direction: column;
  }

  /* 25-08-2026 end KM */
}

@media screen and (max-width: 767.98px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .col-info,
  .col-links,
  .col-products,
  .col-contact {
    width: 100%;
    margin-bottom: 25px;
  }

  .footer-bottom-flex {
    flex-direction: column-reverse;
    gap: 10px;
    text-align: center;
  }

  h1,
  .h1-title {
    font-size: 36px;
  }

  /* Main Banner Responsive */
  .main-banner {
    padding-top: 90px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 280px;
    text-align: center;
  }

  /*--- Inner Banner Responsive End ---*/

  /*--- Map Box Responsive Added ---*/
  .map_popup {
    /* width: 280px; */
    padding: 15px;
  }

  .map_popup h4 {
    font-size: 20px;
  }

  .map_popup p {
    font-size: 14px;
  }

  /*--- Map Box Responsive End ---*/

  /*--- Breadcrumb Responsive Added ---*/
  .breadcrumb-list {
    justify-content: center;
    text-align: center;
  }

  .breadcrumb-list li {
    font-size: 15px;
  }

  /*--- Breadcrumb Responsive End ---*/

  .main-banner::before {
    background: linear-gradient(180deg, rgba(2, 19, 42, 0) 0%, #02132a 100%);
    opacity: 0.85;
  }

  /*--- Innovation Center Responsive Added ---*/
  .jets-category-grid {
    gap: 15px;
    margin-top: 15px;
  }

  .jets-main-card {
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(6, 84, 170, 0.07);
    border-radius: 20px;
    margin-top: 30px;
  }

  .jets-card-content p {
    font-size: 16px;
  }

  .jets-card-content p+p {
    margin-top: 20px;
  }

  /*--- Innovation Center Responsive End ---*/

  /*--- Our Presence Responsive Added ---*/
  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 14px;
  }

  /*--- Our Presence Responsive End ---*/

  /*--- Contact CTA Responsive Added ---*/
  .contact-cta-section {
    padding: 50px 0;
  }

  /*--- Contact CTA Responsive End ---*/

  .sec-head {
    margin-bottom: 25px;
  }

  /* About Section Responsive */
  .abut-sec-head h2 {
    font-size: 24px;
  }

  /* Infrastructure Section Responsive */
  .infra-card-col {
    width: 100%;
  }

  .infra-card {
    max-width: 100%;
  }

  .card-head h3 br {
    display: none;
  }

  .infra-bg {
    bottom: -29%;
  }

  .col-products .footer-ul {
    column-count: 3;
    max-width: 100%;
    column-gap: 0;
  }

  .col-links .footer-ul {
    column-count: 3;
    max-width: 100%;
    margin-bottom: -6px;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  /* excellence section start */
  .excellence-img {
    height: 260px;
  }

  /* excellence section end */

  /* journey section start */
  .journey-card .col-md-7,
  .journey-card .col-md-5 {
    width: 100%;
  }

  .journey-card {
    padding: 20px;
    min-height: inherit;
  }

  .journey-text {
    padding: 0;
    margin-bottom: 0px;
  }

  .journey-text::before {
    left: 0;
  }

  .journey-img {
    padding-top: 50%;
    border-radius: 10px;
  }

  .about-stats .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .journey-year {
    min-width: 92px;
    /* min-width: 75px; */
    font-size: 14px;
  }

  .journey-year::before {
    width: 12px;
    height: 12px;
    margin-bottom: 10px;
  }

  /* journey section end */

  /* product portfolio section start */
  .product-img {
    padding-top: 120%;
  }

  .slider-progress {
    margin-right: 30px;
  }

  .product-slider-controls {
    margin-top: 25px;
  }

  /* product portfolio section end */

  /* team section start */
  .team-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .team-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .team-tabs .nav-link {
    padding: 10px 15px;
  }

  .team-btn {
    width: 35px;
    height: 35px;
  }

  /* team section end */

  /* latest news section start */
  .news-title h3 {
    font-size: 22px;
  }

  /* latest news section end */

  .team-text h3 {
    font-size: 18px;
  }

  /* Our Values Section Start */
  .value-intro-wrap {
    border-radius: 20px;
  }

  .value-intro-card {
    padding: 25px;
  }

  /* Our Values Section End */

  /* infrastructure page start */
  .capacity-title {
    font-size: 24px;
  }

  .capacity-tabs .nav-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .capacity-tabs .nav-link {
    width: 100%;
    padding: 12px 15px;
    border-bottom: 1px solid #e4e8ed !important;
  }

  .capacity-tabs .nav-link.active {
    border-bottom: 2px solid var(--themeSky) !important;
  }

  .capacity-table thead th {
    font-size: 20px;
    padding: 15px 20px;
  }

  .capacity-table tbody td {
    padding: 12px 20px;
    font-size: 14px;
  }

  .capacity-table th:first-child,
  .capacity-table td:first-child {
    padding-right: 10px;
  }

  .side-img {
    margin-top: 30px;
  }

  /* infrastructure page end */

  /* business focus page start */
  .business-focus-content h2 {
    font-size: 28px;
  }

  .therapeutic-section .sec-head h3 {
    font-size: 22px;
  }

  .business-overview-table td:first-child {
    width: 40%;
  }

  .business-overview-table td:last-child {
    width: 60%;
  }

  .therapeutic-text h4 br {
    display: none;
  }

  /* business focus page end */

  /* journey page start */
  .regulatory-card {
    padding: 15px;
  }

  .regulatory-logo img {
    max-height: 55px;
  }

  /* journey page end */

  .jets-cat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  /*--- Contact Info & Contact Form Responsive Added ---*/
  /* .contact-intro-img {
    margin-bottom: 30px;
  } */

  .contact-intro-content {
    max-width: 100%;
  }

  .address-cards-row {
    margin-top: 40px;
  }

  .form-group label {
    font-size: 18px;
  }

  /*--- Contact Info & Contact Form Responsive End ---*/
  .form-group {
    margin-bottom: 14px;
  }

  .form-submit-wrapper {
    margin-top: 20px;
  }

  .contact-intro-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  /*--- Innovation Center & Manufacturing Responsive Added ---*/
  .sub-title {
    font-size: 24px;
  }

  .innovation-content p {
    margin-bottom: 15px;
  }

  .side-img {
    margin-top: 20px;
    max-width: 100%;
  }

  .capacity-tabs .nav-tabs {
    gap: 15px;
    margin-bottom: 25px;
  }

  .capacity-tabs .nav-link {
    font-size: 16px;
    padding: 10px 5px;
  }

  .capacity-table thead th,
  .capacity-table tbody td {
    padding: 12px 15px;
  }

  /*--- Innovation Center & Manufacturing Responsive End ---*/

  .therapeutic-text h4 br {
    display: none;
  }

  .therapeutic-card {
    height: auto;
    padding: 15px;
  }

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-card {
    padding: 8px;
    height: 90px;
  }

  .regulatory-grid .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .regulatory-grid {
    margin-top: 0;
  }

  /*--- Regulatory Approvals Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/

  .core-values-card-col {
    width: 100%;
  }

  .mission-vision-img {
    padding-top: 60%;
  }

  .core-value-img {
    padding-top: 74%;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Awareness Section Responsive Added ---*/
  .video-wrap {
    border-radius: 15px;
  }

  /*--- Awareness Section Responsive End ---*/

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 20px;
  }

  .profile-head {
    font-size: 17px;
  }

  .candidate-profile ul li {
    font-size: 15px;
  }

  .file-label {
    padding: 20px 10px;
  }

  /*--- Careers & Careers Form Responsive End ---*/

  .jets-cat-text h3 {
    font-size: 18px;
  }

  .news-card-content {
    padding: 20px 0 0;
  }

  .recent-post-img {
    height: 120px;
  }

  /* Cephalosporin page start */
  .product-list-sec .sec-head {
    margin-bottom: 30px;
  }

  .product-table-wrapper {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-table th {
    font-size: 18px;
    padding: 10px;
  }

  .product-table td {
    font-size: 13px;
    padding: 8px;
  }

  /* Cephalosporin page end */

  /* Biosimilars page start */
  .biotech-img-wrap {
    padding: 20px;
  }

  .biotech-list li {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .biotech-list li::before,
  .safety-check-list li::before {
    width: 16px;
    height: 16px;
  }

  .rd-info-content h3 {
    font-size: 22px;
  }

  .rd-info-content h4 {
    font-size: 16px;
    margin-top: 20px;
  }

  .equipment-table td,
  .capabilities-list li {
    padding: 12px;
    font-size: 14px;
  }

  .table-outer {
    border-radius: 15px;
  }

  .pipeline-pills {
    gap: 10px;
  }

  .pipeline-pill {
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Biosimilars page end */

  /* Oligonucleotides page start */
  .oligo-about-sec {
    padding: 40px 0;
  }

  .oligo-feature-item {
    gap: 15px;
  }

  .oligo-icon {
    width: 40px;
    height: 40px;
  }

  .oligo-icon img {
    width: 22px;
  }

  .oligo-text h3 {
    font-size: 18px;
  }

  .oligo-tag {
    font-size: 14px;
    padding: 8px 15px;
  }

  /* Oligonucleotides page end */
  .csr-intro-card {
    font-size: 16px;
  }

  .stats-col {
    width: 50%;
  }

  .stats-row .stats-col:nth-child(3):after {
    content: "";
  }

  .stats-row .stats-col:nth-child(2n):after {
    content: none;
  }

  .stats-num {
    font-size: 32px;
  }

  .stats-text {
    font-size: 16px;
  }

  .stats-col:after {
    height: 60px;
  }

  .csr-popup-title {
    font-size: 24px;
  }

  .form-tabs .nav-link {
    font-size: 16px;
    padding: 0 0 6px;
  }

  .captcha-wrapper {
    max-width: 208px;
  }

  .report-adverse-card-wrap {
    padding: 12px;
  }

  .mfg-box {
    padding: 25px 12px 25px 12px;
  }

  .team-text p {
    font-size: 14px;
  }

  .team-group .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 20px;
  }

  .team-title {
    padding: 15px;
  }

  .journey-timeline-slider::before {
    top: 17px;
  }

  .content-col {
    padding: 15px;
    border-radius: 15px;
  }

  .table-responsive {
    border-radius: 0;
    border: none;
  }

  /* sp starts */

  .capacity-tabs .all-inr-table-wrap .nav-link.active {
    border-bottom: 0px;
  }

  /* sp ends */

  /* TEAM POPUP START */

  .csr-popup-wrapper.cmn-team-popup.fancybox__content {
    max-width: 85%;
  }

  /* TEAM POPUP END */

  .resp-mob-img-wrppr {
    display: none !important;
  }

  .innovation-content h2 {
    margin-bottom: 15px;
  }

  .innovation-img-wrppr {
    width: 100%;
  }

  .innovation-inner-image-col {
    display: block;
  }

  .innovation-inner-row.biosimilars-inner-row .side-img {
    width: 100%;
  }

  /* .tablet-img {
        display: none !important;
    } */
  /* .desktop-img {
        display: none !important;
     }
    .mobile-img {
        display: block !important;
    } */

  .business-overview-table thead th,
  .business-overview-table tbody td {
    padding: 15px;
  }

  .csr-detail .side-img {
    margin-top: 0;
  }

  .row.csr-detail .innovation-inner-row .innovation-inner-para-col p {
    margin-bottom: 30px;
  }

  .journey-card .row {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-card .col-md-7 {
    flex-grow: 1;
    padding-top: 15px;
  }

  /* .business-table-two tr > * {
    width: auto !important;
  }
  .business-table-two tr > *:first-child {
    min-width: auto !important;
  } */
  .business-table-two tr>*:first-child {
    min-width: 160px;
  }

  .all-inr-table-wrap table.licuid-injectable-tabs tr>*:first-child {
    width: 100px;
  }

  .all-inr-table-wrap table.licuid-injectable-tabs td {
    width: auto;
  }

  .all-inr-table-wrap table.drypowder-line-tab tr>*:first-child {
    width: 100px;
  }

  .all-inr-table-wrap table.drypowder-line-tab td {
    width: auto;
  }

  .all-inr-table-wrap table.ampoules-table-two tr>*:first-child {
    width: 130px;
  }

  .all-inr-table-wrap table.ampoules-table-two td {
    width: auto;
  }

  #product-data-table {
    min-width: 620px;
  }

  #product-data-table tr>*:nth-child(3) {
    width: 120px;
  }

  .critical-care-table#product-data-table {
    min-width: 580px;
  }

  .table-responsive.product-table table.critical-care-table#product-data-table tr th:last-child {
    width: 27% !important;
  }

  .critical-care-table#product-data-table tr td {
    width: auto;
  }

  .critical-care-table#product-data-table tr>*:nth-child(2) {
    width: 120px;
  }

  .media-table#product-data-table tr>*:nth-child(3) {
    width: 130px;
  }

  .read-more-link {
    font-size: 16px;
  }

  .table-responsive-innr {
    border-radius: 10px;
    border: 1px solid #009dcd;
  }

  .innr-tabs .tab-content,
  .all-inr-table-outer {
    border-radius: 20px;
  }

  .innovation-head {
    margin-bottom: 15px;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .modifiy-banner .bnnr-content-main {
    padding: 25px 0;
  }

  .thank-you-panel {
    padding: 40px 22px;
  }

  .thank-you-panel p {
    font-size: 16px;
  }

  .hotline-list li,
  .contact-info-list li {
    align-items: flex-start;
  }

  .innovation-content h2,
  .sec-head.contact-head h2,
  .sec-head.contact-head .h2-title {
    font-size: 26px;
  }

  .table-responsive-innr .equipment-table {
    border: none;
  }

  .mobile-img-col {
    display: none;
  }

  .map_popup.left {
    transform: translate(calc(-100% - 15px), -43%);
  }

  /* 25-08-2026 start KM */
  .half-top-gap.new-mod .innovation-content.desktop {
    display: none;
  }

  .innovation-content-responsive {
    display: block;
    padding: 15px;
    text-align: center;
  }

  .exist-row-new-lft-col,
  .exist-row-new-rgt-col {
    width: 100%;
  }

  .exist-row-new-rgt-col .innovation-img-wrppr img {
    position: relative;
  }

  /* 25-08-2026 end KM */
}

@media screen and (min-width: 575.98px) and (max-width: 767.98px) {

  .col-links .footer-ul,
  .col-products .footer-ul {
    column-count: 1;
    display: flex;
    flex-wrap: wrap;
  }

  .footer-ul li {
    width: 33.33%;
    flex: 0 0 auto;
  }

  .footer-ul li:nth-child(3n + 2) {
    padding-left: 17px;
  }

  .footer-ul li:nth-child(3n + 3) {
    padding-left: 30px;
  }

  .contact-list.footer-ul li {
    width: 100%;
  }

  .contact-list.footer-ul li:nth-child(3n + 2),
  .contact-list.footer-ul li:nth-child(3n + 3) {
    padding-left: 0;
  }

  .contact-list.footer-ul li:nth-child(2) {
    margin: 5px 0 6px;
  }
}

@media screen and (max-width: 575.98px) {

  h1,
  .h1-title {
    font-size: 30px;
  }

  .navbar-collapse .navbar-nav {
    margin-top: 60px;
  }

  .navbar-collapse .navbar-toggler {
    top: 10px;
  }

  /* excellence section start */
  .excellence-section .row {
    --bs-gutter-y: 20px;
  }

  .excellence-btn-wrap {
    margin-top: 30px;
  }

  /* excellence section end */

  /* product portfolio section start */
  .product-portfolio-section {
    padding: 40px 0;
  }

  .product-slider-controls {
    margin-top: 30px;
  }

  .product-item {
    padding: 15px;
  }

  .product-slider {
    margin: -15px;
  }

  .product-img {
    padding-top: 100%;
  }

  /* product portfolio section end */

  /* team section start */
  .team-section {
    padding: 40px 0;
  }

  /* team section end */

  /* latest news section start */
  .latest-news-section {
    padding: 40px 0;
  }

  /* latest news section end */

  .team-text h3 {
    font-size: 20px;
  }

  /* Our Values Section Start */

  .value-card-right p {
    font-size: 16px;
  }

  /* Our Values Section End */

  /* infrastructure page start */
  .capacity-tabs .nav-tabs {
    flex-direction: column;
    border-bottom: none;
    gap: 10px;
  }

  .capacity-tabs .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
  }

  /* infrastructure page end */

  /* business focus page start */
  .business-focus-img img {
    border-radius: 20px;
  }

  .therapeutic-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .therapeutic-icon img {
    width: 25px;
    height: 25px;
  }

  .therapeutic-text h4 {
    font-size: 18px;
  }

  .business-overview-table thead th {
    padding: 12px 15px;
  }

  .business-overview-table tbody td {
    padding: 12px 15px;
    font-size: 14px;
  }

  /* business focus page end */

  /* journey page start */
  .regulatory-section {
    padding: 40px 0;
  }

  .regulatory-logo img {
    max-height: 65px;
  }

  /* journey page end */

  .jets-category-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .jets-cat-text h3 span {
    display: inline;
  }

  .jets-cat-icon {
    width: 50px;
    height: 50px;
  }

  .jets-cat-text h3 {
    font-size: 18px;
  }

  /*--- Contact Info & Contact Form Responsive Added ---*/
  .form-submit-wrapper {
    margin-top: 30px;
  }

  .captcha-wrapper {
    max-width: 100%;
  }

  .captcha-wrapper img {
    width: 100%;
    height: auto;
  }

  /*--- Contact Info & Contact Form Responsive End ---*/

  .form-group label {
    font-size: 16px;
  }

  /*--- Innovation Center & Manufacturing Responsive Added ---*/
  .capacity-title {
    font-size: 20px;
  }

  .capacity-tabs .nav-link {
    font-size: 14px;
  }

  .capacities-wrap {
    margin-top: 20px;
  }

  .capacity-table thead th {
    font-size: 18px;
  }

  .capacity-table tbody td {
    font-size: 14px;
  }

  /*--- Innovation Center & Manufacturing Responsive End ---*/

  .side-img {
    height: auto;
  }

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-title {
    font-size: 18px;
  }

  .candidate-profile ul li {
    font-size: 14px;
  }

  .file-btn {
    padding: 6px 15px;
    font-size: 13px;
    margin-right: 10px;
  }

  .file-text {
    font-size: 13px;
  }

  .file-info {
    font-size: 11px;
  }

  /*--- Careers & Careers Form Responsive End ---*/
  .therapeutic-row {
    --bs-gutter-y: 20px;
  }

  .operations-table-wrap {
    padding: 12px;
  }

  .product-table td {
    width: auto;
  }

  .product-table tr>*:nth-child(3) {
    width: 100px;
  }

  /* sp starts */

  .all-inr-table-wrap table {
    min-width: 500px;
  }

  .all-inr-table-wrap .business-overview-table tbody td {
    width: auto;
  }

  .all-inr-table-wrap .business-overview-table tbody td:first-child {
    width: 130px;
  }

  .all-inr-table-wrap .drypowder-line-tab tbody td:first-child {
    width: 100px;
  }

  .all-inr-table-wrap .lyophilizer-table tbody td:first-child {
    width: 220px;
  }

  .all-inr-table-wrap .nav-tabs {
    flex-direction: row;
    align-items: center;
  }

  .capacity-tabs .innr-tabs .nav-link {
    font-size: 16px;
    min-width: inherit;
  }

  /* sp ends */

  .inner-banner.modifiy-banner .bnnr-content-main {
    position: static;
    background-color: var(--themeBlue);
    display: none;
  }

  /* .bnnr-img-wrppr img {
    min-height: 180px;
  } */

  .modifiy-banner.main-banner.inner-banner::before {
    display: none;
  }

  .gallery-slider {
    margin: -15px;
  }

  .product-list-sec .sec-head {
    margin-bottom: 20px;
  }

  .gallery-slider-controls {
    margin-top: 20px;
  }

  .csr-img-wrap {
    border-radius: 10px;
    padding-top: 56%;
    margin-bottom: 20px;
  }

  .csr-content-wrppr {
    padding: 15px;
    border-radius: 10px;
  }

  /* .csr-gallery-img-col,
  .csr-gallery-img-col:nth-child(5n + 5),
  .csr-gallery-img-col:nth-child(5n + 4) {
    width: 100%;
  } */
  .csr-gallery-img-col .camp-img,
  .csr-gallery-img-col:nth-child(5n + 5) .camp-img,
  .csr-gallery-img-col:nth-child(5n + 4) .camp-img {
    padding-top: 70%;
  }

  .csr-gallery-rw,
  .ceph-about-sec .row.csr-detail .innovation-inner-row,
  .ceph-about-sec .row.csr-detail {
    --bs-gutter-x: 0;
  }

  .csr-detail .innovation-content-col,
  .csr-detail .innovation-img-col {
    padding: 0;
  }

  .biotech-list.extra li {
    margin-bottom: 5px;
    /* padding-left: 20px; */
  }

  .all-inr-table-wrap table.min-width-alltabs {
    min-width: 100%;
  }

  .all-inr-table-wrap table.ampoules-table-two {
    min-width: 320px;
  }

  .team-card {
    box-shadow: 0px 10px 20px rgba(6, 84, 170, 0.07);
  }

  .hme-team-slide {
    padding: 25px 10px;
  }

  .hme-team-slider {
    margin: -25px -10px;
  }

  .team-section {
    padding: 50px 0;
  }

  .bnnr-img-wrppr .for-bnnr-desktop {
    display: none;
  }

  .bnnr-img-wrppr .for-bnnr-mobile {
    display: block;
  }

  .gallery-itm-outtr .csr-gallery-rw {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .campaign-slider {
    margin: -15px;
  }
}

@media screen and (min-width: 479.98px) and (max-width: 575.98px) {

  .col-links .footer-ul,
  .col-products .footer-ul {
    column-count: 1;
    display: flex;
    flex-wrap: wrap;
  }

  .footer-ul li {
    width: 33.33%;
    flex: 0 0 auto;
  }

  .footer-ul li:nth-child(3n + 3) {
    padding-left: 15px;
  }

  .contact-list.footer-ul li {
    width: 100%;
  }

  .contact-list.footer-ul li:nth-child(3n + 2),
  .contact-list.footer-ul li:nth-child(3n + 3) {
    padding-left: 0;
  }

  .contact-list.footer-ul li:nth-child(2) {
    margin: 5px 0 6px;
  }
}

@media screen and (max-width: 479.98px) {
  body {
    font-size: 14px;
  }

  h1,
  .h1-title {
    font-size: 26px;
  }

  h2,
  .h2-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  h3,
  .h3-title {
    font-size: 22px;
  }

  h4,
  .h4-title {
    font-size: 18px;
  }

  .abut-sec-head h2 {
    font-size: 22px;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  .navbar-brand {
    width: 65px;
  }

  .banner-right-content {
    margin-top: 10px;
  }

  .banner-right-content p {
    margin-bottom: 25px;
  }

  .cmn-btn {
    padding: 8px 18px;
    font-size: 14px;
    gap: 8px;
  }

  .cmn-btn i {
    width: 8px;
  }

  .navbar-toggler {
    margin-left: 10px;
  }

  .stick {
    width: 22px;
    left: 10px;
  }

  .stick:after,
  .stick:before {
    width: 22px;
  }

  .header-right {
    gap: 15px;
  }

  /* Main Banner Responsive */
  .main-banner {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  /*--- Inner Banner Responsive Added ---*/
  .main-banner.inner-banner {
    min-height: 220px;
  }

  /*--- Inner Banner Responsive End ---*/

  /*--- Map Box Responsive Added ---*/
  .map_popup {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0 !important;
    left: 0 !important;
    max-width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    transform: inherit;
    z-index: 9999;
    backdrop-filter: blur(4px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s all;
    margin: 0;
  }

  .map_popup.active {
    opacity: 1;
  }

  .map_popup:after {
    display: none;
  }

  .map_popup_innr {
    background: linear-gradient(208.72deg, #009dcd 15.82%, #71cde5 80.42%);
    box-shadow: 0px 11.63px 35.88px rgba(6, 84, 170, 0.05);
    border-radius: 10px;
    padding: 16px 20px;
    position: relative;
    min-width: 170px;
  }

  .mobile-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 50px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }

  .mobile-close img {
    width: 15px;
  }

  .map_popup h4 {
    font-size: 18px;
  }

  /*--- Map Box Responsive End ---*/

  /*--- Innovation Center Responsive Added ---*/
  .jets-main-card {
    padding: 15px;
    border-radius: 15px;
    margin-top: 30px;
  }

  .jets-card-img {
    border-radius: 8px;
  }

  .jets-card-content p {
    font-size: 14px;
  }

  /*--- Innovation Center Responsive End ---*/

  /*--- Breadcrumb Responsive Added ---*/
  .breadcrumb-sec {
    padding: 12px 0;
  }

  .breadcrumb-list li {
    font-size: 14px;
  }

  /*--- Breadcrumb Responsive End ---*/

  /* About Section Responsive */
  .stat-item h3 {
    font-size: 24px;
  }

  .about-img {
    border-radius: 10px;
  }

  /* Infrastructure Section Responsive */

  /*--- Contact Info & Contact Form Responsive Added ---*/
  .sec-head.contact-head h2,
  .sec-head.contact-head .h2-title {
    font-size: 28px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-contact-list li,
  .company-name {
    margin-bottom: 10px;
  }

  .address-card {
    padding: 25px 20px;
  }

  .contact-form-main .form-control,
  .contact-form-main .form-select {
    padding: 8px 30px 8px 20px;
    font-size: 14px;
  }

  input[type="submit"] {
    height: 42px;
    font-size: 15px;
    padding: 10px 30px;
  }

  /*--- Contact Info & Contact Form Responsive End ---*/

  /*--- Innovation Center & Manufacturing Responsive Added ---*/
  .sub-title {
    font-size: 20px;
  }

  .capacity-tabs .nav-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 15px;
  }

  .capacity-tabs .nav-link {
    width: 100%;
    border-bottom: 1px solid #e4e8ed !important;
  }

  .capacity-tabs .nav-link.active {
    border-bottom: 2px solid var(--themeSky) !important;
  }

  /*--- Innovation Center & Manufacturing Responsive End ---*/

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-logo img {
    max-height: 60px;
  }

  /*--- Regulatory Approvals Responsive End ---*/
  .infra-center-logo {
    width: 150px;
    height: 150px;
  }

  .logo-inner img {
    width: 60px;
  }

  .card-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .card-icon img {
    width: 30px;
  }

  .card-head h3 {
    font-size: 20px;
  }

  .card-head {
    margin-bottom: 15px;
  }

  .infra-card {
    padding: 15px;
  }

  /* Footer Section Responsive */
  .footer-title {
    font-size: 20px;
  }

  .main-footer {
    font-size: 14px;
  }

  .footer-bottom-flex p,
  .footer-bottom-flex a,
  .bottom-links a,
  .bottom-links span {
    font-size: 14px;
  }

  .bottom-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* excellence section start */
  .excellence-img {
    height: 220px;
  }

  .excellence-content {
    padding: 20px 15px;
  }

  /* excellence section end */

  /* journey section start */
  .journey-sec-head p {
    font-size: 16px;
  }

  .journey-text h3 {
    font-size: 24px;
  }

  /* journey section end */

  /* product portfolio section start */
  .product-nav-arrows .slick-prev,
  .product-nav-arrows .slick-next,
  .hme-team-arrw-wrppr .slick-arrow {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .product-slider-controls {
    margin-top: 20px;
  }

  .product-title h3 {
    font-size: 20px;
  }

  .plus-btn {
    width: 35px;
    height: 35px;
  }

  .slider-progress {
    display: none;
  }

  .product-slider-controls {
    justify-content: center;
  }

  /* product portfolio section end */

  /* team section start */
  .team-btn {
    width: 40px;
    height: 40px;
  }

  .team-btn img {
    width: 14px;
  }

  /* team section end */

  /* latest news section start */
  .news-card {
    padding: 15px;
  }

  .news-title h3 {
    font-size: 20px;
  }

  .news-card .team-btn {
    width: 40px;
    height: 40px;
    margin-left: auto;
  }

  /* latest news section end */

  /* Our Values Section Start */

  .value-card-left .h2-title {
    font-size: 28px;
  }

  /* Our Values Section End */

  .presence-stat-item {
    min-width: 100%;
  }

  .stat-number {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 6px;
  }

  .presence-stats-row {
    gap: 20px;
  }

  .form-group label {
    font-size: 14px;
  }

  .capacity-tabs .tab-content,
  .innr-tabs .tab-content,
  .all-inr-table-outer {
    padding: 12px;
  }

  /*--- Regulatory Approvals Responsive Added ---*/
  .regulatory-card {
    height: 100px;
    padding: 10px;
  }

  .regulatory-logo img {
    max-height: 80px;
  }

  /*--- Regulatory Approvals Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/
  .value-intro-wrap {
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
  }

  .value-intro-card {
    border-radius: 0 0 15px 15px;
  }

  .mission-vision-content .h2-title {
    font-size: 24px;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Our Values, Core Values & Mission-Vision Responsive Added ---*/
  .value-intro-wrap {
    border-radius: 10px;
  }

  .value-intro-card {
    padding: 15px;
  }

  .value-card-left .h2-title {
    font-size: 22px;
  }

  .core-value-content h3 {
    font-size: 20px;
  }

  /*--- Our Values, Core Values & Mission-Vision Responsive End ---*/

  /*--- Awareness Section Responsive Added ---*/
  .video-thumbnail {
    padding-top: 60%;
  }

  .awareness-sec-head.sec-head {
    margin-bottom: 45px;
  }

  /*--- Awareness Section Responsive End ---*/

  /*--- Careers & Careers Form Responsive Added ---*/
  .job_row {
    --bs-gutter-y: 20px;
  }

  .job-card {
    padding: 15px;
  }

  .candidate-profile ul li i {
    font-size: 14px;
    margin-top: 3px;
  }

  .file-label {
    padding: 15px 10px;
  }

  .file-btn {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .file-text {
    display: block;
    margin-bottom: 5px;
  }

  /*--- Careers & Careers Form Responsive End ---*/
  .csr-popup-wrapper.fancybox__content {
    font-size: 14px;
  }

  .team-group {
    margin-bottom: 40px;
  }

  .biotech-facility-rw-outtr>.row:not(:last-child) {
    margin-bottom: 40px;
  }

  .news-btn-mobile-wrap {
    display: block;
    text-align: center;
  }

  .news-btn-desktop {
    display: none;
  }

  .news-header {
    margin-bottom: 20px;
  }

  .capacity-table {
    min-width: 120%;
  }

  .each-item-wrppr:not(:last-child) {
    margin-bottom: 40px;
  }

  /* sp starts */

  .all-inr-table-wrap .nav-tabs {
    flex-direction: row;
    align-items: center;
  }

  /* sp ends */

  /* TEAM POPUP START */

  .csr-popup-wrapper.cmn-team-popup.fancybox__content {
    padding: 20px 0 20px 20px;
  }

  .cmn-team-popup-innr {
    padding-right: 20px;
  }

  .team-popup-img-wrppr {
    margin-bottom: 15px;
  }

  .team-popup-content-wrppr h4 {
    font-size: 16px;
  }

  /* TEAM POPUP END */

  input[type="submit"]:hover {
    background-position: right 26px top 13px !important;
  }

  .play-icon {
    width: 30px;
  }

  /* .modifiy-banner .bnnr-img-wrppr img {
        min-height: 480px;
    }

    .inner-banner.modifiy-banner .bnnr-img-wrppr img {
        min-height: 300px;
    } */

  .capacity-tabs .innr-tabs .nav-link {
    font-size: 14px;
  }

  .innr-tabs .tab-content,
  .all-inr-table-outer {
    margin-top: 20px;
  }

  .all-inr-table-wrap table {
    min-width: 423px;
  }

  .journey-text h4 {
    font-size: 18px;
  }

  .journey-card {
    padding: 10px;
  }

  .map-box>img,
  .map-box svg {
    transform: scale(1.21);
  }

  .our-presence-sec {
    overflow: hidden;
  }

  /* .map_popup {
        transform: scale(0.7);
    } */
  body.map-popup-open {
    overflow: hidden;
  }

  .capacity-tabs>.tab-content {
    padding: 10px 0;
  }

  .all-inr-table-wrap .ampoules-table-two {
    min-width: 460px;
  }

  .all-inr-table-wrap .drypowder-line-tab {
    min-width: 100%;
  }

  .all-inr-table-wrap .lyophilizer-table {
    min-width: 100%;
  }

  .business-table-two {
    min-width: 400px;
  }

  .biosimilar-table {
    min-width: 380px;
  }

  .ceph-about-content h2 {
    margin-bottom: 10px;
  }

  .biotech-list li::before,
  .safety-check-list li::before {
    width: 13px;
    height: 13px;
    top: 4px;
  }

  .biotech-list li,
  .safety-check-list li {
    padding-left: 22px;
  }

  .equipment-table {
    overflow: auto;
  }

  .capacities-wrap .sec-head {
    margin-bottom: 15px;
  }

  .read-more-link {
    font-size: 14px;
  }

  .team-section {
    padding: 50px 0;
  }

  .cmn-gap.half-top-gap {
    padding-top: 40px;
  }

  .quote-icon img {
    width: 40px;
  }

  .jets-sub-title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }

  /* #product-data-table.media-table {
    min-width: 520px;
  } */

  .footer-logo img {
    max-width: 90px;
  }

  .safety-check-list li span {
    font-size: 14px;
  }

  .recent-post-content h5 a {
    -webkit-line-clamp: 3;
  }

  .hotline-list li {
    font-size: 14px;
  }

  .excellence-content p {
    font-size: 14px;
  }

  .innovation-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .business-focus-content h2,
  .csr-objective-card .h2-title,
  .sec-head.contact-head h2,
  .sec-head.contact-head .h2-title {
    font-size: 24px;
  }

  .innovation-img-col,
  .sec-head,
  .mfg-box h3,
  .commitment-sec .sec-head,
  .innovation-text-wrap,
  .oligo-feature-item,
  .objective-item {
    margin-bottom: 15px;
  }

  .rd-initiatives-title {
    margin-bottom: 12px;
  }

  .csr-gallery-img-col .product-card {
    border-radius: 10px;
  }

  .portfolio-card {
    margin-bottom: 0;
    border-radius: 8px;
    height: auto;
  }

  .portfolio-sec .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 25px;
  }

  .oligo-feature-list {
    margin-bottom: 20px;
  }

  .oligo-tag {
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 8px;
  }

  .report-adverse-card-img {
    margin-top: 20px;
  }

  .report-adverse-card-wrap {
    padding: 0;
  }

  .profile-head {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .candidate-profile ul li {
    padding-left: 25px;
  }

  .journey-content-slider .slick-prev,
  .journey-content-slider .slick-next {
    width: 40px;
    height: 40px;
    padding: 10px;
    bottom: -80px;
  }

  .journey-content-slider {
    margin-bottom: 60px;
  }

  .journey-content-slider .slick-prev {
    left: calc((50% - 40px) - 7px);
  }

  .journey-content-slider .slick-next {
    right: calc((50% - 40px) - 7px);
  }

  .social-links a img {
    width: 25px;
    height: 25px;
  }

  .social-links {
    gap: 15px;
  }

  .team-page-body .sec-head {
    margin-bottom: 25px;
  }

  .thank-you-icon {
    font-size: 30px;
    height: 60px;
    margin-bottom: 15px;
    width: 60px;
  }

  .thank-you-panel {
    padding: 30px 20px;
  }

  .commitment-card,
  .portfolio-content,
  .csr-intro-card,
  .csr-key-content {
    padding: 15px;
  }

  .each-announcement-itm h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 439.98px) {
  .about-stats>.row>* {
    width: 100%;
  }

  .stat-item h3 {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    margin-right: 10px;
  }

  .stat-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
  }

  .about-stats>.row>*:last-child .stat-item {
    padding-bottom: 0;
    border-bottom: none;
  }

  .about-stats {
    margin: 20px 0;
  }

  .about-stats .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .col-products .footer-ul,
  .col-links .footer-ul {
    column-count: 2;
  }

  .infra-bg {
    bottom: -26%;
  }

  /*--- Careers & Careers Form Responsive Added ---*/
  .job-title {
    font-size: 17px;
  }

  .candidate-profile ul li {
    font-size: 13px;
  }

  .form-group label {
    font-size: 13px;
  }

  /*--- Careers & Careers Form Responsive End ---*/

  /* Oligonucleotides page start */
  .stats-col {
    width: 100%;
  }

  .stats-row .stats-col:nth-child(2n):after {
    content: "";
  }

  .stats-col:after {
    width: 90%;
    height: 1px;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }

  .stats-num {
    line-height: 1;
    margin-bottom: 15px;
  }

  /* Oligonucleotides page end */

  /* S.NO column for .table-responsive table table */
  /* .table-responsive table th:first-child,
    .table-responsive table td:first-child {
        display: none;
    } */

  /* sp starts */

  /* .all-inr-table-wrap .nav-tabs {
    flex-direction: column;
  } */

  /* .all-inr-table-wrap .innr-tabs .nav-link {
    width: 100%;
  }

  .all-inr-table-wrap .innr-tabs .nav-tabs {
    width: 100%;
    max-width: 100%;
  } */

  /* .all-inr-table-wrap .nav-item {
    width: 100%;
  } */

  /* sp ends */

  .all-inr-table-wrap table.ampoules-table,
  .all-inr-table-wrap table.dry-powder-table {
    min-width: 373px;
  }

  .all-inr-table-wrap table.ampoules-table-two {
    min-width: 320px;
  }

  .all-inr-table-wrap table.lyophilizer-table-two {
    min-width: 370px;
  }

  .all-inr-table-wrap table.lyophilized-table {
    min-width: 100%;
  }

  .all-inr-table-wrap table.osd-table {
    min-width: 290px;
  }
}

@media screen and (max-width: 399.98px) {
  .footer-bottom-flex p {
    max-width: 270px;
  }
}

@media screen and (max-width: 374.98px) {
  .oligo-feature-item {
    flex-direction: column;
  }

  .all-inr-table-wrap table.ampoules-table,
  .all-inr-table-wrap table.dry-powder-table {
    min-width: 318px;
  }

  .all-inr-table-wrap table.drypowder-line-tab {
    min-width: 100%;
  }

  .all-inr-table-wrap table.licuid-injectable-tabs {
    min-width: 370px;
  }

  .all-inr-table-wrap table.cepholopsin-table {
    min-width: 370px;
  }

  .all-inr-table-wrap table.ampoules-table-two {
    min-width: 320px;
  }

  .all-inr-table-wrap table.drypowder-line-tabel-two {
    min-width: 370px;
  }

  .all-inr-table-wrap table.pfs-table {
    min-width: 370px;
  }

  .all-inr-table-wrap table.ampoules-table-three {
    min-width: 370px;
  }

  .recent-post-img {
    height: auto;
    width: 110px;
    padding-top: 26%;
    border-radius: 5px;
  }

  .recent-post-content {
    padding-left: 15px;
  }

  .recent-post-content h5 a {
    -webkit-line-clamp: 2;
  }

  .thank-you-actions .cmn-btn {
    min-width: 150px;
    text-align: center;
    justify-content: center;
  }

  /* .csr-gallery-img-col,
  .csr-gallery-img-col:nth-child(5n + 5),
  .csr-gallery-img-col:nth-child(5n + 4) {
    width: 100%;
  } */
  .csr-gallery-img-col .camp-img,
  .csr-gallery-img-col:nth-child(5n + 5) .camp-img,
  .csr-gallery-img-col:nth-child(5n + 4) .camp-img {
    padding-top: 56%;
  }
}

@media screen and (max-width: 359.98px) {
  .captcha-wrapper {
    transform: scale(0.85);
    transform-origin: left top;
    margin-bottom: -20px;
  }

  .all-inr-table-wrap table.osd-table {
    min-width: 300px;
  }
}

@media screen and (max-width: 319.98px) {
  .captcha-wrapper {
    transform: scale(0.65);
    margin-bottom: -30px;
  }
}
