:root {
  --font_family_one: "Inter", sans-serif;
  --font_family_two: "Manrope", sans-serif;
  --color_blue_one: #0f4073;
  --color_blue_two: #4991b6;
  --color_blue_three: #9cc3d7;
  --color_orange: #f86700;
  --color_white: #ffffff;
  --color_black: #000000;
  --color_black_one: #666666;
}

/* =========================
      Pages Styles
     ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color_blue_one);
  font-family: var(--font_family_one);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  background: #fff;
}

ol,
ul {
  list-style: none;
}

img,
svg,
path,
a,
img:hover,
svg:hover,
path:hover,
a:hover,
button,
button:hover {
  transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

/* .container {
    max-width: 1240px;
    padding: 0;
  } */
.container-fluid {
  padding: 0 40px;
}
a {
  display: inline-block;
  text-decoration: none;
  color: #0f4073;
}

button {
  border: 0;
  background-color: transparent;
}

.Manrope_font {
  font-family: var(--font_family_two);
}

/* FONT-Size setting */
h1,
.display_text_1 {
  font-size: clamp(28px, 3.25vw, 52px);
  font-weight: 700;
  line-height: clamp(34px, 3.75vw, 60px);
  letter-spacing: clamp(-0.5px, -0.075vw, -1.2px);
}

h2,
.display_text_2 {
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 700;
  line-height: clamp(32px, 3.25vw, 52px);
}

h3,
.display_text_3 {
  font-size: clamp(36px, 2.25vw, 36px);
  font-weight: 700;
  line-height: clamp(36px, 2.25vw, 36px);
  letter-spacing: -1px;
}

h4,
.display_text_4 {
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 700;
  line-height: clamp(28px, 2.25vw, 36px);
}

h5,
.display_text_5 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: clamp(24px, 2vw, 32px);
}

h6,
.display_text_6 {
  font-size: clamp(20px, 1.25vw, 20px);
  font-weight: 700;
  line-height: normal;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

span,
.text_16 {
  font-size: 16px;
  line-height: 24px;
}

/* FONT-WEIGHT */
.fw_100 {
  font-weight: 100 !important;
}

.fw_200 {
  font-weight: 200 !important;
}

.fw_300 {
  font-weight: 300 !important;
}

.fw_400 {
  font-weight: 400 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_700 {
  font-weight: 700 !important;
}

.fw_800 {
  font-weight: 800 !important;
}

.fw_900 {
  font-weight: 900 !important;
}

/* COLOR-STYLE */
.color_blue_one {
  color: var(--color_blue_one);
}

.bg_blue_one {
  background-color: var(--color_blue_one);
}

.color_blue_two {
  color: var(--color_blue_two);
}

.bg_blue_two {
  background-color: var(--color_blue_two);
}

.color_blue_three {
  color: var(--color_blue_three);
}

.bg_blue_three {
  background-color: var(--color_blue_three);
}

.color_orange {
  color: var(--color_orange);
}

.bg_orange {
  background-color: var(--color_orange);
}

.color_white {
  color: var(--color_white);
}

.bg_white {
  background-color: var(--color_white);
}

.color_black {
  color: var(--color_black);
}

.bg_black {
  background-color: var(--color_black);
}

.color_black_one {
  color: var(--color_black_one);
}

.bg_black_one {
  background-color: var(--color_black_one);
}

.padding_y_80 {
  padding: 80px 0px;
}
.padding_x_80 {
  padding: 0px 80px;
}
.padding_y_112 {
  padding: 112px 0px;
}
.padding_x_112 {
  padding: 0px 112px;
}
.padding_y_120 {
  padding: 120px 0px;
}
.padding_x_120 {
  padding: 0px 120px;
}
.padding_y_140 {
  padding: 140px 0px;
}
.padding_x_140 {
  padding: 0px 140px;
}

/* ============ Buttons CSS ============ */
.blue_border_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 16px 32px;
  color: #0f4073;
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid #0f4073;
}
.blue_border_btn:hover {
  background-color: #0f4073;
  color: #fff;
}

.orange_radius_btn_one {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 8px;
  background: #f86700;
  border: 2px solid #f86700;
  color: #fff;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
}
.orange_radius_btn_one:hover {
  background-color: transparent;
  color: #f86700;
}

.orange_radius_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
  border-radius: 8px;
  background: #f86700;
  border: 2px solid #f86700;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.orange_radius_btn:hover {
  background-color: transparent;
  color: #f86700;
}

.orange_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: #f86700;
  border: 2px solid #f86700;
  color: #fff;
}
.orange_btn:hover {
  background-color: transparent;
  color: #f86700;
}
/* ============ Header CSS ============ */
.header_sec {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  border: 1px solid #e5e5e5;
}
.header_area nav {
  padding: 0;
}
.header_area .navbar-brand {
  margin-right: 50px;
  width: 100%;
  max-width: 121px;
}
.header_area .navbar-brand img {
  width: 100%;
  height: 100%;
}
.header_area div#PurnaPharmanav {
  justify-content: space-between;
  gap: 24px;
}
.header_get_touch_outter {
  gap: 16px;
  align-items: center;
}
.header_get_touch_outter .tel_link,
.header_get_touch_outter .header_contery {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.header_get_touch_outter .tel_link > .icon,
.header_get_touch_outter .header_contery > .icon {
  display: flex;
  height: 20px;
}
.navbar-nav-info-box .nav-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #666666;
  /* padding: 31px 14px !important; */
  padding: 31px 0px !important;
}
.navbar-nav-info-box .navbar-nav {
  gap: 28px;
}
.navbar-nav-info-box li.nav-item > .nav-link:hover,
.navbar-nav-info-box li.nav-item > .nav-link.active {
  color: #0f4073;
}
.navbar-nav-info-box li.nav-item:first-child .nav-link {
  padding-left: 0px !important;
}
.dropdown-toggle-btn {
  padding: 0px;
}
li.nav-item {
  display: flex;
  gap: 6px;
}
.navbar-nav-info-box .dropdown-toggle-btn.dropdown-toggle::after {
  all: unset;
  content: "";
  background-image: url(../images/chevron-down.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 13px;
  height: 12px;
  padding: 0px;
}
.navbar-nav-info-box .nav-item .dropdown-menu.show {
  display: none;
}
.navbar-nav-info-box .nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar-nav-info-box .nav-item .dropdown-menu {
  top: 99%;
  display: block;
  min-width: max-content;
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(15, 64, 115, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  margin: 0px;
}
.navbar-nav-info-box .nav-link.show {
  color: #666666;
}
.navbar-nav-info-box .nav-item ul.dropdown-menu .dropdown-item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
  color: #0f4073;
  /* font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: #f86700;
  padding: 10px 12px; */
}
.navbar-nav-info-box .nav-item ul.dropdown-menu .dropdown-item:hover {
  /* background: #0f4073; */
  background: #f86700;
  color: #fff;
}
.direct_contact a,
.event_card_info p {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}
.direct_contact a:hover {
  color: #0f4073;
}
.direct_contact span,
.summery_row_title,
.Headquarters_small_title {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* ============ Footer CSS ============ */
.footer_sec {
  padding: 60px 0 40px;
  border-top: 4px solid #f86700;
  background: #0f2942;
  color: #fff;
}
.footer_area_inner {
  justify-content: space-between;
  gap: 32px;
}
.footer_logo_info .footer_logo {
  max-width: 121px;
}
.footer_logo_info .footer_logo img {
  width: 100%;
  height: 100%;
}
.footer_area_inner a,
.footer_copyright_area a {
  color: #ffffff;
}
.footer_nav_info a,
.footer_nav_info h2 {
  opacity: 0.5;
  font-size: 14px;
  line-height: 20px;
}
.footer_nav_info h2 {
  opacity: 1;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer_info_inner {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 510px;
}
.footer_nav_info {
  width: 100%;
}
.foot_info_touch address,
.foot_info_touch a {
  font-size: 13px;
  line-height: 24.7px;
}
.footer_copyright_area {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  margin-top: 64px;
}
.footer_copyright_area > * {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.footer_copyright_area p,
.footer_copyright_area a {
  opacity: 0.5;
}
.tel_link:hover,
.footer_area_inner a:hover,
.footer_copyright_area a:hover {
  opacity: 1;
  color: #f86700;
}
.footer_nav_box,
.title_box,
.services_card,
.capabilities_chips_list,
.our_mission_info,
.why_purna_info_title_box {
  gap: 12px;
}

.site_content {
  margin-top: 86px;
}
.orange_small_title {
  color: #f86700;
  text-align: center;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.title_box p {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}
/* ============ Hero-slider CSS ============ */
.hero_slide_img_bg {
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
  transform: scale(1.25, 1.25);
  transition:
    transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
    opacity 320ms 160ms ease-in;
  object-position: 50% 50%;
  opacity: 0;
  transition-timing-function: ease-in-out;
  will-change: transform, opacity;
  min-height: 700px;
  height: calc(100vh - 86px);
  padding: 92px 0px;
  place-content: center;
}
.hero_slide_img_bg.img_slide {
  opacity: 1;
}
.hero_slider_list .slick-active .hero_slide_img_bg {
  transform: scale(1, 1);
  opacity: 1;
}
.hero_slide_img_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 49.26%,
    #f5f7f9 82.4%,
    #fff 100%
  );
  z-index: -1;
}
.hero_slide_img_bg.hero_img_slide_one {
  background-image: url(../images/Hero_img_1.png);
}
.hero_slide_img_bg.hero_img_slide_two {
  background-image: url(../images/Hero_img_2.jpg);
}
.hero_slider_item {
  position: relative;
  /* margin-bottom: -6px; */
}
.hero_slide_content_inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}
.hero_slide_content {
  background: #fff;
  box-shadow: 0 4px 40px 0 rgba(15, 64, 115, 0.12);
  padding: 48px;
  width: 100%;
  max-width: 633px;
  border-radius: 24px;
}
.hero_slide_content .hero_slide_heading {
  letter-spacing: -1.2px;
}
.hero_slide_info {
  color: #0f4073;
}
.hero_slide_btns {
  gap: 12px;
  margin-top: 40px;
}
.hero_slide_btn_1.orange_radius_btn,
.hero_slide_btn_2.blue_border_btn {
  padding: 16px 32px;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.hero_slide_btn_2.blue_border_btn {
  border: 0px;
}
.hero_slide_btn_2 {
  font-size: 14px;
}
.hero_slider_list .slick-arrow {
  position: absolute;
  top: 45%;
  left: 31px;
  right: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 500px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.hero_slider_list .slick-custom-arrow-right.slick-arrow {
  right: 31px;
  left: auto;
}
/* ============ Service CSS ============ */
.services_area.row,
.advantages_area.row,
.events_area.row {
  gap: 56px;
}
.service_card_info p,
.adv_card_info p {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}
.blue_small_title {
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #9cc3d7;
  text-align: center;
}
.services_card {
  padding: 12px;
}
.service_card_img {
  width: 100%;
  max-width: 160px;
}
.service_card_img img {
  width: 100%;
  height: 100%;
}
.services_cards_area > div {
  border-right: 1px solid #e5e5e5;
}
.services_cards_area > div:last-child {
  border: 0px;
}
.service_explor_btn {
  padding: 16px 32px;
}

/* ============ Blockquote CSS ============ */
.blockquote_area {
  display: flex;
  align-items: center;
  border-radius: 24px;
  background:
    linear-gradient(
      101deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 27.91%,
      rgba(255, 255, 255, 0.32) 60.46%,
      rgba(255, 255, 255, 0) 100%
    ),
    #9cc3d7;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.blockquote_img {
  position: absolute;
  right: 0;
  bottom: -16px;
}
.blockquote_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 726px;
  gap: 32px;
  z-index: 0;
}
.blockquote_heading,
.why_purna_heading {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: normal;
}
.blockquote_heading {
  max-width: 653px;
}
.quote_author {
  line-height: 28px;
  color: #0f4073;
}
.quote_author_roll {
  color: #fff;
  text-align: left;
}
/* ============ Progress-step CSS ============ */
.progress_sec {
  padding: 90px 0px;
  background-color: #fff;
  z-index: 0;
}
.progress_shap {
  position: absolute;
  top: -345.946px;
  right: -428px;
  width: 970px;
  height: 970px;
  border-radius: 970px;
  opacity: 0.7;
  background: rgba(156, 195, 215, 0.5);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}
.progress_shap.progress_shap_2 {
  border-radius: 1085px;
  opacity: 0.7;
  background: rgba(156, 195, 215, 0.5);
  width: 1085px;
  height: 284px;
  transform: rotate(40.162deg);
  left: -450px;
  bottom: -150px;
  top: auto;
  right: auto;
}
.progress_title_box h2 {
  line-height: 48px;
}
.progress_title_box p,
.step-info {
  font-size: 15px;
  line-height: 24px;
  color: #555;
}
.step-info,
.company_overview_box_info p {
  font-size: 13px;
  line-height: 18px;
  margin-top: 4px;
}
.progress-wrapper {
  width: 100%;
  margin: 0 auto;
}
.progress-steps {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.progress_area.row,
.product_portfolio_area.row,
.jobes_area.row,
.why_work_purna_area.row,
.releted_position_area.row {
  gap: 52px;
}
.progress-step {
  width: 100%;
  max-width: 160px;
  position: relative;
  text-align: center;
  z-index: 2;
}
.step-circle {
  width: 64px;
  height: 64px;
  margin: 24px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
  border: 2px solid #b8d7dc;
  color: #f86700;
  font-size: 22px;
  font-weight: 800;
  position: relative;
  z-index: 5;
  transition:
    background-color 0.5s ease,
    border-color 0.5s ease,
    color 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.step-title {
  font-weight: 600;
}
.progress-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #b8d7dc;
  z-index: -2;
  border-radius: 10px;
}
.progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #ff6900;
  z-index: -1;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.progress-step.active:not(:last-child)::after {
  transform: scaleX(1);
}
.progress-step.active .step-circle {
  background: #f86700;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  border-color: #f86700;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(248, 103, 0, 0.1);
}
.progress_bottom_info {
  max-width: 664px;
  margin: 0 auto;
  text-align: center;
}
/* ============ Advantages CSS ============ */
.advantages_sec,
.events_sec .get_touch_sec,
.jobes_sec,
.ready_to_career_sec,
.releted_position_sec {
  border-top: 1px solid #e5e5e5;
}
.advantages_grid_area {
  background: #f5f5f5;
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.adv_card_heading,
.jobs_summery_heading {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: normal;
}
.adv_card_icon {
  width: 60px;
  height: 60px;
  border-radius: 500px;
  background: rgba(248, 103, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.adv_card {
  background: #fff;
  padding: 32px;
  height: 100%;
  align-items: center;
  text-align: center;
}
/* ============ Partners CSS ============ */
.partners_sec {
  padding: 80px 0;
  background: #f9fbfd;
}
.partners_area.row {
  gap: 32px;
}
.partners_area_img {
  height: 440px;
  overflow: hidden;
  border-radius: 12px;
}
.partners_area_img img {
  width: 100%;
  height: 100%;
}
/* ============ Events CSS ============ */
.events_area_list.row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
}
.event_city {
  font-size: 12px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f86700;
}
.event_card_info p {
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
  text-overflow: ellipsis;
}
.event_card_img {
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}
.event_card_img img {
  width: 100%;
  height: 100%;
}

/* ============ Home-Get-touch CSS ============ */
.get_touch_sec > .container {
  max-width: 864px;
  padding: 0 16px;
}
.get_touch_title_box {
  gap: 16px;
}
.get_touch_title_box h2 {
  letter-spacing: -0.75px;
}
.get_touch_title_box p {
  font-size: 16px;
  line-height: 24px;
}
.get_touch_form.row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
}
.pharma_input_box .form-control,
.pharma_select_box .form-select,
.pharma_input_box input,
.pharma_select_box select {
  background-color: #f6f6f6;
  padding: 12px;
  font-size: 14px;
  line-height: normal;
  min-height: 46px;
  border-radius: 4px;
  border: 0;
  color: #0f4073;
}
.pharma_input_box .form-control::placeholder,
.pharma_input_box input::placeholder {
  color: rgba(15, 64, 115, 0.5);
}
.pharma_input_box .form-control:focus,
.pharma_select_box .form-select:focus,
input:focus,
select:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgb(248 103 0 / 50%);
}
.pharma_select_box .form-select,
.pharma_select_box select {
  background-image: url(../images/chevron-down-form.svg);
  background-image: none;
}
.pharma_form_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #f86700;
  background-color: #f86700;
  color: #fff;
  padding: 12px;
  height: 46px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.pharma_form_btn:hover {
  background-color: transparent;
  color: #f86700;
}
.get_touch_form_box {
  margin-top: 40px;
}
.get_touch_form_box .privacy-note {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  font-style: italic;
  color: #f86700;
  margin-top: 24px;
}
/* ======================== About-Page CSS ======================== */
.Img_banner_sec {
  background-image: url(../images/About_banner.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.Img_banner_area {
  position: relative;
  margin: 0px auto;
  height: 100%;
}
.banner_title_box {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: max-content;
  padding: 48px 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 0 24px 0 0;
  background: #fff;
  box-shadow: 0 4px 40px 0 rgba(15, 64, 115, 0.12);
  align-items: flex-start;
}
.banner_title_box .banner_heading {
  letter-spacing: -1.2px;
}
.banner_title_box .banner_small_title {
  border-radius: 4px;
  background: rgba(156, 195, 215, 0.2);
  padding: 8px 12px;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Header-pills CSS */
.header_pills_section {
  position: sticky;
  top: 86px;
  z-index: 998;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f8fa;
}
.header_pills_area {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}
.header_pills_list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 0px 16px 0px 0px;
}
.header_pills_list a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #666;
  background: transparent;
  padding: 16px 0px;
  border-radius: 6px;
  width: max-content;
  position: relative;
}
.header_pills_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: #0f4073;
  transition: all 0.5s ease-in-out;
}
.header_pills_list a.active,
.header_pills_list a:hover {
  color: #0f4073;
}
.header_pills_list a.active::after,
.header_pills_list a:hover::after {
  width: 100%;
}
.header_pills_slider_arrow.is-hidden {
  display: none;
}
.header_pills_slider_arrow {
  position: absolute;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #d8e0ff;
  border-radius: 50%;
  color: #001145;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 17, 69, 0.12);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.header_pills_slider_arrow_next {
  right: 16px;
}
.header_pills_slider_arrow_prev {
  left: 16px;
}
/* Company-Overview CSS */
.company_overview_content.row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}
.company_overview_area.row,
.our_team_area.row,
.our_leadership_team_area.row,
.history_timeline_area.row {
  gap: 48px;
}
.company_overview_inner p,
.our_leadership_team_title_box p,
.progress_bottom_info {
  font-size: 20px;
  line-height: 28px;
  color: #475569;
}
.company_overview_box_info p {
  color: #64748b;
}
.company_overview_box {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 32px;
  height: 100%;
}
#about_partners_section .partners_sec {
  background-color: #fff;
}
/* History-timeline CSS */
.history_timeline_sec {
  background: #f7f9fb;
  overflow: hidden;
}
.history_timeline {
  position: relative;
}
.history_timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  opacity: 0.3;
  background: #1d7a8c;
  transform: translateX(-50%);
}
.history_timeline_item {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}
.history_timeline_dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #1d7a8c;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 12px 0 rgba(29, 122, 140, 0.25);
}
.history_timeline_item.active .history_timeline_dot {
  border-color: #06aeef;
  width: 28px;
  height: 28px;
}
.history_timeline_item.active .history_timeline_dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06aeef;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.history_timeline_item:nth-child(odd) {
  justify-content: flex-start;
}
.history_timeline_item:nth-child(even) {
  justify-content: flex-end;
}
.history_timeline_card {
  width: calc(50% - 46px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px 0 rgba(15, 41, 66, 0.03);
  position: relative;
  z-index: 2;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.history_timeline_item.active .history_timeline_card {
  border: 2px solid #06aeef;
  box-shadow: 0 12px 32px 0 rgba(15, 41, 66, 0.03);
}
.history_timeline_category {
  display: block;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 12px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 0.012px;
  text-transform: uppercase;
}
.history_timeline_card h3 {
  margin: 0 0 5px;
  color: #1d7a8c;
  font-weight: 600;
}
.history_timeline_item.active .history_timeline_card h3 {
  color: #06aeef;
}
.history_timeline_card p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: normal;
}
.history_timeline_extra {
  border-top: 1px solid #e2e8f0;
  margin-top: 24px;
  padding-top: 10px;
}
.history_timeline_extra ul {
  padding-left: 20px;
  list-style: disc;
  font-size: 13px;
  line-height: 18px;
  color: #1e293b;
}
.history_timeline_extra li::marker {
  color: #1d7a8c;
}

/* Mission-Vision CSS */
.our_mission_content.row,
.our_mission_img_row.row,
.our_mission_box_row.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.our_mission_heading,
.releted_title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
.our_mission_info p {
  font-size: 18px;
  line-height: 26px;
  color: #666666;
}
.our_mission_box {
  border-radius: 8px;
  background: #f6f8fa;
  height: 100%;
  padding: 40px;
  align-items: flex-start;
  height: 100%;
}
.our_mission_icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: rgba(248, 103, 0, 0.1);
}
.our_mission_img {
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.our_mission_img img {
  width: 100%;
  height: 100%;
}
.our_mission_icon img {
  width: 24px;
  height: auto;
}
/* Why-Purna CSS */
.why_purna_box.row {
  --bs-gutter-y: 24px;
}
.why_purna_box {
  padding: 40px 0;
}
.why_purna_info_title_box .orange_small_title,
.jobs_share_title {
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}
.why_purna_img_box {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.why_purna_img_box img {
  width: 100%;
  height: 100%;
}
.why_purna_info_box {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 40px;
  height: 100%;
}
.why_purna_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  line-height: 24px;
  color: #475569;
  list-style: disc;
  padding-left: 20px;
}
.why_purna_list li::marker {
  color: #f86700;
}
/* Leadership Team CSS */
.our_leadership_team_content.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 32px;
}
.our_leadership_team_img {
  width: 100%;
  overflow: hidden;
  height: 292px;
}
.our_leadership_team_img img {
  width: 100%;
  height: 100%;
}
.leadership_team_roll {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f86700;
}
/* Team CSS */
.our_team_content.row {
  --bs-gutter-y: 24px;
}
.team_name,
.leadership_team_name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: normal;
}
.our_team_box,
.our_leadership_team_box {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  overflow: hidden;
  height: 100%;
}
.our_team_info,
.our_leadership_team_info {
  padding: 24px;
}
.our_team_img {
  height: 365px;
  overflow: hidden;
}
.our_team_img img {
  width: 100%;
  height: 100%;
}
/* ======================== Development-page CSS ======================== */
.devlopment_banner,
.manufacturing_banner {
  background-image: url(../images/devlopment_banner.png);
  background-size: cover;
  background-position: top center;
}
.devlopment_title p,
.devlopment_points p {
  color: #475569;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.devlop_img_text_info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  max-width: 596px;
}
.devlop_img_text_area {
  display: flex;
  gap: 48px;
  align-items: center;
}
.devlop_img_text_image {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 50%;
}
.devlop_img_text_image img {
  width: 100%;
  height: 100%;
}
.devlop_img_text_info .devlopment_title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.devlopment_pills_box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.devlopment_pills_box li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 8px 20px -6px rgba(15, 64, 115, 0.06);
  padding: 20px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.devlop_pills_icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(248, 103, 0, 0.06);
  flex: 0 0 auto;
}
.devlop_img_text_info .devlopment_title p {
  font-weight: 400;
}
.devlop_img_text_flex_sec .devlop_img_text_area > div {
  max-width: 50%;
}
.devlop_img_text_flex_sec .devlop_img_text_area > .devlop_img_text_image {
  height: 400px;
  /* max-width: 100%; */
}
.devlopment_points p {
  color: #0f4073;
  font-weight: 600;
}
.devlopment_points_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.devlopment_points {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.devlopment_points_num {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: rgba(248, 103, 0, 0.1);
  color: #f86700;
}
/* ======================== Manufacturing-page CSS ======================== */
.manufacturing_banner {
  background-image: url(../images/manufacturing_banner.png);
}
.manufacturing_pills_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}
.manufacturing_pills_list li {
  border-radius: 500px;
  border: 1px solid #d7e8f5;
  background: #f7fbff;
  padding: 12px 20px;
}
.devlopment_round_pills_box {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.devlopment_round_pills_box span {
  border-radius: 12px;
  border: 1px solid #d7e8f5;
  background: #f7fbff;
  position: relative;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.devlopment_round_pills_item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #06aeef;
  margin: 8px 0px;
  flex: 0 0 8px;
}
/* ======================== portfolio-page CSS ======================== */
.portfolio_banner {
  background-image: url(../images/portfolio_banner.png);
}
.Img_white_banner_sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 49.26%,
    #f5f7f9 82.4%,
    #fff 100%
  );
  z-index: -1;
}
.product_portfolio_box {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}
.product_portfolio_box p {
  color: #0f4073;
}
.product_portfolio_content.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.product_portfolio_sec,
.jobes_sec,
.releted_position_sec {
  background: #f9fbfd;
}
#get_touch_pera_sec > .container {
  max-width: 896px;
}
/* ======================== Careers-page CSS ======================== */
.careers_banner {
  background-image: url(../images/careers_banner.png);
}
.jobs_title_box {
  gap: 12px;
}
.jobs_title_box .orange_small_title {
  text-align: left;
}
.jobs_filter_area {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 20px 32px;
}
.jobs_left_filter_row {
  display: flex;
  gap: 16px;
}
.job_search .search_icon {
  position: absolute;
  top: 5px;
  left: 16px;
  margin-right: 10px;
  z-index: 0;
  padding: 0;
  border: 0;
}

.job_filter_input_flid .form-control,
.job_filter_select_flid .form-select,
.job_filter_input_flid input,
.job_filter_select_flid select {
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background-color: #f9fbfd;
}
.job_filter_input_flid .form-control,
.job_filter_select_flid .form-select,
.job_filter_input_flid input,
.job_filter_select_flid select,
.sortby_filter_box span,
.job_city,
.view_info_btn,
.contact_form_title_box p {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #666666;
  padding: 10px 16px;
}
.job_filter_input_flid .job_search .form-control,
.job_filter_input_flid .job_search input {
  padding-left: 40px;
}
.job_filter_select_flid .form-select,
.job_filter_select_flid select {
  color: #0f4073;
  font-weight: 600;
  padding: 10px 36px 10px 16px;
  background-image: url(../images/chevron-down-select.svg);
}
.sortby_filter_box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sortby_filter_box span,
.job_city,
.contact_form_title_box p {
  padding: 0px;
}
.jobs_card_area.row {
  --bs-gutter-y: 24px;
}
.jobs_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 32px;
  height: 100%;
}
.jobs_dept_tag_list,
.jobs_type_tag,
.jobs_tags_info_area,
.jobs_tags_info {
  display: flex;
}
.jobs_tags_info_area {
  justify-content: space-between;
}
.jobs_tags_info_area,
.jobs_tags_info {
  gap: 8px;
  align-items: center;
}
.jobs_right_filter {
  flex: 0 0 auto;
}
.dept_tag,
.type_tag {
  padding: 4px 12px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  border-radius: 4px;
}
.dept_tag {
  background: rgba(156, 195, 215, 0.1);
  color: #0f4073;
}
.type_tag {
  background: rgba(248, 103, 0, 0.1);
  color: #f86700;
}
.jobs_info_block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jobs_roll {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}
.jobs_info {
  font-size: 14px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.jobs_btns_info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}
.view_info_btn {
  color: #0f4073;
  font-weight: 700;
  padding: 10px 0;
}
.apply_btn {
  font-size: 13px;
  line-height: normal;
  font-weight: 700;
  border-radius: 4px;
  background: #f86700;
  color: #fff;
  padding: 10px 20px;
}
/* why_work_purna CSS */
.why_work_purna_info_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why_work_purna_item {
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: 12px;
  background: #f4f7fb;
  padding: 16px;
}
.why_work_purna_icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: rgba(248, 103, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}
.why_work_purna_item span {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.why_work_purna_info_img {
  min-height: 464px;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
.why_work_purna_info_img img {
  width: 100%;
  height: 100%;
}
.ready_to_career_heading {
  letter-spacing: -0.75px;
}
.career_btn,
.jobs_summery_btn {
  border-radius: 4px;
}
/* ======================== Careers-Category-page CSS ======================== */
.Img_banner_sec.Img_blue_banner_sec {
  height: 300px;
  background-position: center center;
}
.careers_category_banner,
.careers_detail_banner {
  background-image: url(../images/career_category_banner.png);
}
.Img_blue_banner_sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(15, 64, 115, 0.85) 0%,
      rgba(16, 70, 126, 0.68) 38.46%,
      rgba(28, 121, 217, 0) 100%
    ),
    linear-gradient(
      0deg,
      rgba(15, 64, 115, 0.4) 0%,
      rgba(15, 64, 115, 0.4) 100%
    );
  z-index: -1;
}
.Img_blue_banner_area {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.Img_blue_banner_inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.blue_banner_title_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.banner_title_tag_box {
  display: flex;
  gap: 8px;
}
.banner_title_tag {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #9cc3d7;
  background: rgba(156, 195, 215, 0.13);
  padding: 6px 12px;
}
.banner_apply_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #f86700;
  color: #fff;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
/* ======================== Careers-detais-page CSS ======================== */
.jobes_description_heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.jobes_description_box p {
  line-height: 26px;
  margin-bottom: 12px;
}
.jobes_description_box {
  margin-bottom: 48px;
}
.jobes_description_box:last-child,
.jobes_description_box p:last-child {
  margin: 0;
}
.jobes_description_box ul {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jobes_description_box ul li::marker,
.Headquarters_small_title {
  color: #f86700;
}
.jobes_description_area.row,
.contactus_arae.row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 24px;
}
.jobs_summery_box_area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #f9fbfd;
  padding: 32px;
}
.summery_row_title,
.Headquarters_small_title {
  letter-spacing: normal;
}
.summery_info {
  font-weight: 600;
}
.jobs_details_sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.jobs_share_box {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}
.jobs_share_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.jobs_share_list a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #f6f6f6;
}
.jobs_share_list a:hover {
  background: #0f2942;
}
.jobs_share_list a:hover img {
  filter: invert(1);
}
.releted_box_list .dept_tag,
.releted_box_list .jobs_card .jobs_roll,
.releted_box_list .job_city {
  line-height: normal;
}
.releted_box_list .dept_tag {
  font-size: 11px;
}
.releted_box_list .jobs_card {
  padding: 24px;
  gap: 20px;
}
.releted_box_list .jobs_card .jobs_roll {
  font-size: 18px;
}
.releted_box_list .jobs_card .jobs_info {
  font-size: 13px;
  line-height: 20px;
}
.releted_box_list .job_city {
  font-size: 12px;
}
/* ======================== Contact-page CSS ======================== */
.Img_banner_sec.light_bg_banner_sec {
  background: #f9fbfd;
  color: #0f4073;
  height: 100%;
  min-height: auto;
  padding: 60px 0px;
}
.light_bg_banner_area {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
  place-content: center;
}
.light_bg_banner_title_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.Headquarters_info {
  font-size: 16px;
  line-height: 26px;
  color: #111;
}
.Headquarters_box {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #f9fbfd;
  padding: 32px;
  position: sticky;
  top: 80px;
}
.contact_form_title {
  font-size: 24px;
  line-height: 32px;
}
.contact_form_box {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 8px 16px 0 rgba(15, 64, 115, 0.05);
  padding: 40px;
}
.contact_form_area.row {
  gap: 24px;
}
form.contact_form.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.contact_form_redio_fild {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.contact_form_fild_box .form-label,
.contact_form_fild_box label {
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
}
.contact_form_input_fild .form-control,
.contact_form_input_fild > input,
.contact_form_fild_box textarea {
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  background: #f8f9fa;
  height: 48px;
  padding: 0px 16px;
  font-size: 15px;
  line-height: normal;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.contact_form_fild_box .form-check .form-check-input,
.contact_form_fild_box .form-check input {
  border: 1px solid #0f4073;
  background-color: #fff;
  background-size: 8px;
}
.contact_form_fild_box .form-check-input:checked[type="radio"],
.contact_form_fild_box.form-check input:checked[type="radio"] {
  background-image: url(../images/redio_round.svg);
}
.contact_form_fild_box .form-check .form-check-label,
.contact_form_fild_box .form-check label {
  font-size: 15px;
  font-weight: 400;
  color: #111;
}
input:checked[type="radio"],
.form-check-input:focus {
  box-shadow: none;
}
.contact_form_fild_box textarea {
  padding: 12px 16px;
  height: 120px;
}
.contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 32px;
  border-radius: 6px;
  background: #0f4073;
  border: 2px solid #0f4073;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  margin-top: 4px;
}
.contact_btn:hover {
  background: transparent;
  color: #0f4073;
}
/* ======================== privacy-policy-page CSS ======================== */
.privacy_policy_banner .light_bg_banner_title_box p,
.privacy_policy_banner .light_bg_banner_title_box p > * {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: #718096;
  align-items: center;
}
.privacy_policy_banner .light_bg_banner_title_box p span {
  color: #0f4073;
  font-weight: 600;
}
.privacy_policy_banner .light_bg_banner_title_box p span.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #718096;
}
.policy_box {
  margin-bottom: 48px;
  border-bottom: 1px solid #e2e8f0;
}
.policy_box:last-child {
  margin: 0px;
}
.policy_heading {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.policy_box p,
.policy_higlight_box > *,
.policy_higlight_box a,
.policy_higlight_info,
.policy_higlight_title,
p.policy_hilighter,
.policy_hilighter,
.policy_box ul,
.policy_box .orange_bg_highlighter a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #4a5568;
  margin-bottom: 12px;
}
.policy_box p:last-child,
.policy_box ul:last-child {
  margin-bottom: 16px;
}
.policy_higlight_box {
  border-radius: 8px;
  background: #f8fafc;
  padding: 16px;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}
.policy_higlight_box > *,
.policy_higlight_box a,
.policy_higlight_info {
  letter-spacing: normal;
  margin: 0;
}
.policy_higlight_title,
p.policy_hilighter,
.policy_hilighter {
  color: #0f2942;
  font-weight: 700;
}
p.policy_hilighter,
.policy_hilighter {
  padding: 12px;
  border-radius: 6px;
  background: #f8fafc;
}
.policy_higlight_box,
.policy_box ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy_box ul {
  list-style: disc;
  padding-left: 20px;
}
.policy_box .highliter_orange,
.policy_box .orange_bg_highlighter a {
  color: #f86700;
  font-weight: 700;
}
.policy_box .highliter_blue,
.policy_box .blue_title_highliter {
  color: #0f2942;
  font-weight: 600;
}
.policy_box .blue_title_highliter {
  font-size: 18px;
  line-height: 26px;
}
.policy_box .orange_bg_highlighter {
  padding: 12px 20px;
  border-radius: 6px;
  background: #fff5ec;
  width: 100%;
}
.policy_box .orange_bg_highlighter a {
  margin: 0;
}
.policy_sidebar {
  position: sticky;
  top: 50px;
}
.policy_pills_area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #f9fbfd;
  padding: 32px;
}

.policy_pills_list a.active {
  background: #fff5ec;
  color: #f86700;
}
.policy_pills_list a {
  font-size: 14px;
  line-height: 1.6;
  height: 33px;
  place-content: center;
  font-weight: 500;
  color: #4a5568;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding: 0px 16px 0px 24px;
  background: transparent;
  border-radius: 6px;
  position: relative;
  margin-left: 0px;
}
.policy_pills_title {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #718096;
}
.policy_pills_list a::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: transparent;
  margin-right: 12px;
}
.policy_pills_list a.active::after {
  background: #f86700;
}
.policy_area.row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 24px;
}
/* ============ Responsive CSS ============ */
@media (max-width: 1650px) {
  .container,
  .Img_blue_banner_area,
  .light_bg_banner_area {
    max-width: none;
  }
  .container,
  .container-fluid,
  .Img_blue_banner_area,
  .light_bg_banner_area {
    padding: 0 100px;
  }
  .hero_slide_content_inner {
    padding: 0 100px;
    margin: 0;
  }
  /* Events CSS */
  .event_card_img {
    height: 195px;
  }
  /* Img Banner CSS */
  .Img_banner_area {
    margin: 0px 100px 0px 0px;
  }
}

@media (max-width: 1399px) {
  /* Blockquote CSS */
  .blockquote_area {
    padding: 60px 40px;
  }
  .blockquote_content {
    max-width: 526px;
  }
  .blockquote_heading {
    font-size: 26px;
    line-height: 32px;
  }
  .blockquote_img {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .container,
  .Img_blue_banner_area,
  .light_bg_banner_area {
    max-width: 1240px;
    padding: 0 24px;
  }
  .container-fluid {
    padding: 0 24px;
  }
  /* Header CSS */
  .navbar-nav-info-box .navbar-nav {
    gap: 15px;
  }
  .header_area .navbar-brand {
    margin-right: 30px;
  }
  .navbar-nav-info-box .nav-link {
    padding: 31px 0px !important;
  }
  .navbar-nav-info-box .nav-link {
    font-size: 14px;
  }
  /* Hero-slider CSS */
  .hero_slide_content {
    margin: 0 auto;
  }
  /* Service CSS */
  .services_area.row,
  .advantages_area.row,
  .partners_area.row,
  .events_area.row,
  .our_team_area.row,
  .our_leadership_team_area.row,
  .company_overview_area.row {
    gap: 42px;
  }
  .services_card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    padding: 16px;
  }
  .services_cards_area > div {
    border-right: 0;
  }
  /* Events CSS */
  .event_card_info {
    padding: 20px 0;
  }
  .Img_banner_sec {
    background-position: 45% 45%;
  }
  /* Mission-Vision CSS */
  .our_mission_area.row,
  .policy_area.row {
    --bs-gutter-x: 24px;
  }
  .our_mission_content.row,
  .our_mission_half_box.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }
  .our_mission_box {
    padding: 24px;
  }
  .get_touch_area.row {
    gap: 31px;
  }
  /* Devlopment-page CSS */
  .devlop_img_text_area,
  .devlop_img_text_info {
    gap: 31px;
  }
  /* Careers-detais-page CSS */
  .jobes_description_area.row,
  .contactus_arae.row {
    --bs-gutter-x: 24px;
  }
}

@media (max-width: 991px) {
  .container,
  .Img_blue_banner_area,
  .light_bg_banner_area {
    padding: 0 16px;
  }
  .padding_y_80,
  .padding_y_140,
  .padding_y_120,
  .padding_y_112,
  .partners_sec,
  .progress_sec,
  .devlop_img_text_sec {
    padding: 65px 0px;
  }
  .site_content {
    margin-top: 75px;
  }
  /* Header CSS */
  .header_area nav > .container {
    padding: 7px 16px;
  }
  button.navbar-toggler {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(15, 64, 115, 0.08);
    border: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 3;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  button.navbar-toggler span {
    width: 16px;
    height: 16px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.5s ease-in-out;
  }
  button.navbar-toggler.collapsed span.navbar-toggler-closed,
  button.navbar-toggler:not(.collapsed) span.navbar-toggler-hemburger {
    opacity: 0;
    display: none;
  }
  .header_get_touch_outter {
    width: fit-content;
    order: 2;
    margin: 0 12px 0 auto;
  }
  .navbar-nav-info-box .nav-item .dropdown-menu,
  .header_get_touch_outter .orange_radius_btn_one {
    display: none;
  }
  .header_area div#PurnaPharmanav {
    overflow-x: scroll;
    overflow-y: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    bottom: 0;
    background: #fff;
    opacity: 0;
    transition: opacity 0.1s ease !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
  }
  .navbar-collapse.show {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    max-height: 100%;
    opacity: 1 !important;
    transition: opacity 0.1s ease !important;
  }
  .navbar-nav-info-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    gap: 16px;
    overflow-x: scroll;
    padding: 32px;
  }
  .navbar-nav-info-box .navbar-nav {
    width: 100%;
  }
  .navbar-nav-info-box .nav-item:hover .dropdown-menu {
    display: none;
  }
  .navbar-nav-info-box .nav-item .dropdown-menu.show {
    display: block !important;
    margin-top: 10px;
  }
  .navbar-nav-info-box .nav-link {
    padding: 0 !important;
    font-size: 20px;
    line-height: 28px;
    position: relative;
    transition: all 0.5s ease-in-out;
    color: #0f4073;
  }
  .navbar-nav-info-box .navbar-nav .nav-item {
    padding: 16px 0px;
  }
  .navbar-nav-info-box .navbar-nav {
    gap: 0px;
  }
  li.nav-item {
    flex-wrap: wrap;
  }
  .navbar-nav-info-box li.nav-item:first-child .nav-link {
    padding-left: 0px !important;
  }
  .navbar-nav-info-box li.nav-item:hover .nav-link {
    padding-left: 16px !important;
    color: #f86700;
  }
  .navbar-nav-info-box .nav-link::before {
    content: "";
    border-radius: 2px;
    background: #f86700;
    width: 2px;
    height: 100%;
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
  }
  .navbar-nav-info-box li:hover .nav-link::before {
    visibility: visible;
  }
  /* Hero-slider CSS */
  .hero_slide_img {
    height: calc(100dvh - 76px);
    min-height: 600px;
  }
  .hero_slide_content {
    max-width: 570px;
  }
  /* Services CSS */
  .services_section {
    border: 1px solid #e5e5e5;
    border-left: 0px;
    border-right: 0px;
  }
  /* Blockquote CSS */
  .blockquote_sec {
    background: #a1c6d9;
  }
  .blockquote_area {
    flex-direction: column;
    padding-top: 54px;
    gap: 31px;
    background: transparent;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 40px 0px;
  }
  .blockquote_img {
    display: none;
    transform: rotateY(180deg);
  }
  .blockquote_content {
    gap: 20px;
    max-width: 100%;
  }
  .orange_small_title.quote_author {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
  }
  /* Advantages CSS */
  .advantages_grid_area {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Partners CSS */
  .partners_area_img {
    height: 320px;
  }
  /* Home-Get-touch CSS */
  .get_touch_form.row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }
  .get_touch_title_box h2 {
    letter-spacing: normal;
  }
  .get_touch_form_box {
    margin-top: 0px;
  }
  /* History-timeline CSS */
  .history_timeline_area.row {
    gap: 36px;
  }
  .history_timeline_sec {
    padding: 48px 0px;
  }
  .history_timeline_card {
    width: calc(50% - 32px);
  }
  .history_timeline_card {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px 0 rgba(15, 41, 66, 0.02);
  }
  .history_timeline_category {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 0.011px;
  }
  .history_timeline_card p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
  }
  .history_timeline_card h3 {
    font-size: 22px;
    line-height: 28px;
  }
  /* Why-Purna CSS */
  .why_purna_box_RightImg_LeftText {
    flex-direction: column-reverse;
  }
  /* Devlopment-page CSS */
  .header_pills_section {
    top: 73px;
  }
  .header_pills_sec > .container {
    padding-left: 16px;
    padding-right: 0;
  }
  .devlop_left_img_right_text_sec .devlop_img_text_area {
    flex-direction: column;
  }
  .devlop_img_text_image,
  .devlop_img_text_info,
  .devlop_img_text_flex_sec .devlop_img_text_area > div {
    max-width: 100%;
  }
  /* Progress CSS */
  .progress_shap {
    border-radius: 662.508px;
    width: 707px;
    height: 512px;
    transform: rotate(23.439deg);
    left: -60.936px;
    top: -220.709px;
    background: rgba(156, 195, 215, 0.5);
  }
  .progress_title_box h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .progress-steps,
  .why_work_purna_content.row {
    flex-direction: column;
    gap: 24px;
  }
  .progress-step {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    text-align: left;
    max-width: 100%;
  }
  .step-circle {
    margin: 0 16px 0 0;
    font-size: 14px;
    line-height: normal;
  }
  .step-title {
    min-height: auto;
    padding-top: 0;
    font-weight: 700;
    line-height: 22px;
  }
  .progress-step:not(:last-child)::before {
    top: 50%;
    left: 29px;
    width: 3px;
    height: calc(100% + 35px);
    background: #b7d6df;
    transform: translateY(0);
  }
  .progress-step:not(:last-child)::before {
    left: 30px;
  }
  .progress-step:not(:last-child)::after {
    top: 50%;
    left: 30px;
    width: 3px;
    height: calc(100% + 35px);
    background: #ff6900;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .progress-step.active:not(:last-child)::after {
    transform: scaleY(1);
  }
  .progress_bottom_info {
    font-size: 16px;
    line-height: 22px;
  }
  /* product portfolio CSS */
  .product_portfolio_area.row,
  .jobes_area.row,
  .why_work_purna_area.row,
  .releted_position_area.row {
    gap: 32px;
  }
  /* jobs cars CSS */
  .jobs_left_filter_row {
    flex-wrap: wrap;
  }
  .jobs_left_filter_row > .job_filter_input_flid {
    flex: 0 0 100%;
  }
  .jobs_left_filter_row .job_filter_select_flid {
    flex: 0 0 48%;
  }
  /* why_work_purna CSS */
  .why_work_purna_item span {
    font-size: 18px;
    line-height: 22px;
  }
  .why_work_purna_item {
    padding: 14px;
  }
  .devlop_img_text_area,
  .why_work_purna_content.row {
    flex-direction: column-reverse;
  }
  /* jobs cars CSS */
  .jobs_tags_info_area {
    flex-wrap: balance;
    gap: 16px;
  }
  .jobs_card {
    padding: 20px;
  }
  /* Careers-detais-page CSS */
  .jobes_description_box {
    margin-bottom: 32px;
  }
  .policy_box {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .padding_y_80,
  .padding_y_140,
  .padding_y_120,
  .padding_y_112,
  .partners_sec,
  .progress_sec,
  .devlop_img_text_sec {
    padding: 30px 0px;
  }
  /* Footer CSS */
  .footer_sec {
    padding: 40px 0 32px;
    border-top: 2px solid #f86700;
  }
  .footer_logo_info .footer_logo {
    max-width: 145px;
  }
  .footer_area_inner,
  .footer_info_inner {
    flex-direction: column;
  }
  .foot_info_touch {
    gap: 12px;
  }
  .footer_info_inner,
  .jobs_details_sidebar {
    gap: 24px;
  }
  .footer_nav_info a {
    opacity: 0.6;
  }
  .footer_copyright_area p,
  .footer_copyright_area a {
    opacity: 0.8;
  }
  .footer_copyright_area {
    flex-direction: column;
    justify-content: center;
    padding-top: 24px;
    margin-top: 32px;
  }
  /* Hero-slider CSS */
  .hero_slide_img_bg {
    background-image: none !important;
    padding: 0;
    min-height: 100%;
    height: 100%;
    transform: scale(1) !important;
    opacity: 1 !important;
  }
  .hero_slide_content {
    box-shadow: none;
  }
  .hero_slide_content_inner,
  .hero_slide_content {
    height: 100%;
  }
  .hero_slide_img_responsive {
    height: 240px;
    min-height: auto;
    transform: scale(1.05, 1.05);
    transition:
      transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
      opacity 320ms 160ms ease-in;
    object-position: 50% 50%;
    transition-timing-function: ease-in-out;
    will-change: transform, opacity;
    -webkit-transition:
      transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
      opacity 320ms 160ms ease-in;
    -moz-transition:
      transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
      opacity 320ms 160ms ease-in;
    -ms-transition:
      transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
      opacity 320ms 160ms ease-in;
    -o-transition:
      transform 640ms 160ms cubic-bezier(0.97, 0.13, 0.34, 1.15),
      opacity 320ms 160ms ease-in;
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
  }
  .hero_slide_img_bg.img_slide .hero_slide_img_responsive {
    opacity: 1;
  }
  .hero_slider_list .slick-active .hero_slide_img_responsive {
    transform: scale(1, 1);
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
  }
  .hero_slide_img_responsive img {
    width: 100%;
    height: 100%;
  }
  .hero_slide_img::after {
    display: none;
  }
  .hero_slide_content {
    max-width: 100%;
    padding: 24px;
    animation: none !important;
    opacity: 1 !important;
  }
  .hero_slide_content_inner {
    padding: 0px;
  }
  .hero_slide_content {
    max-width: 100%;
    padding: 24px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .hero_slide_content .hero_slide_heading {
    letter-spacing: -0.5px;
  }
  .hero_slide_btns {
    flex-direction: column;
    margin-top: 20px;
  }
  .hero_slide_btns a {
    width: 100%;
  }
  .hero_slider_list .slick-arrow {
    top: 14%;
    left: 12px;
    width: 36px;
    height: 36px;
  }
  .hero_slider_list .slick-custom-arrow-right.slick-arrow {
    right: 12px;
  }
  /* Services CSS */
  .orange_small_title,
  .blue_small_title,
  .partners_title_box .blue_small_title {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.2px;
  }
  .title_box p {
    font-size: 16px;
    line-height: 24px;
  }
  .service_card_img {
    max-width: 100px;
  }
  /* Blockquote CSS */
  .blockquote_content h2 {
    font-size: 24px;
    font-weight: 600;
  }
  /* Progress CSS */
  .step-circle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
  .progress-step:not(:last-child)::before {
    left: 22px;
  }
  .progress-step:not(:last-child)::after {
    left: 22px;
  }
  .progress_title_box,
  .devlopment_pills_box,
  .why_purna_list,
  .jobs_card {
    gap: 16px;
  }
  /* Advantages CSS */
  .advantages_title_box h2,
  .events_title_box h2,
  .devlopment_heading {
    font-size: 28px;
    line-height: 36px;
  }
  .advantages_title_box h2,
  .events_title_box h2 {
    text-transform: capitalize;
  }
  /* Events CSS */
  .event_card_img {
    height: 220px;
  }
  .blue_border_btn {
    font-size: 13px;
    line-height: normal;
    padding: 14px 20px;
  }
  /* Home-Get-touch CSS */
  .get_touch_title_box h2 {
    font-size: 24px;
  }
  .title_box p {
    font-size: 14px;
    line-height: 20px;
  }
  .pharma_input_box .form-control::placeholder,
  .pharma_input_box input::placeholder {
    color: #0f4073;
    opacity: 0.6;
  }
  /* Img Banner CSS */
  .Img_banner_area {
    margin: 0px 16px 0px 0px;
  }
  .Img_banner_mobile_sec {
    height: 360px;
    background-position: top center;
    background-size: cover;
  }
  .about_banner.Img_banner_mobile_sec {
    background-image: url(../images/About_banner_mobile.png);
  }
  .banner_title_box {
    padding: 20px 30px;
    gap: 12px;
  }
  .banner_title_box .banner_small_title {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: normal;
    background: rgba(156, 195, 215, 0.12);
  }
  .banner_title_box .banner_heading {
    letter-spacing: normal;
  }
  /* History-timeline CSS */
  .history_timeline_card {
    width: 100%;
  }
  .history_timeline_item,
  .history_timeline_item:nth-child(odd),
  .history_timeline_item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 40px;
    min-height: auto;
    margin-bottom: 24px;
  }
  .history_timeline_dot {
    left: 12px;
    top: 30px;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    border: 3px solid #1d7a8c;
    box-shadow: 0 0 8px 0 rgba(29, 122, 140, 0.19);
  }
  .history_timeline_item.active .history_timeline_dot {
    width: 28px;
    height: 28px;
  }
  .history_timeline_heading h2 {
    margin: 0;
  }
  .history_timeline_heading p {
    font-size: 15px;
    line-height: 22px;
  }
  .history_timeline::before {
    left: 12px;
    transform: none;
  }
  .history_timeline_sec {
    padding: 48px 0px;
  }
  /* Mission-Vision CSS */
  #about_partners_section .partners_sec {
    padding: 0 0 33px;
  }
  /* Mission-Vision CSS */
  .our_mission_img_row.row {
    flex-direction: column-reverse;
  }
  .our_mission_sec {
    padding: 32px 0px;
  }
  .our_mission_area.row,
  .our_mission_content.row,
  .our_mission_half_box.row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }
  .our_mission_img {
    height: auto;
  }
  .our_mission_info {
    gap: 8px;
  }
  .our_mission_heading,
  .why_purna_heading,
  .jobes_description_heading,
  .releted_title,
  .policy_heading {
    font-size: 20px;
    line-height: normal;
  }
  .our_mission_info p,
  .why_purna_list,
  .policy_box p,
  .policy_higlight_box > *,
  .policy_higlight_box a,
  .policy_higlight_info,
  .policy_higlight_title,
  p.policy_hilighter,
  .policy_hilighter,
  .policy_box ul,
  .policy_box .orange_bg_highlighter a {
    font-size: 14px;
    line-height: 21px;
  }
  /* Why-Purna CSS */
  .why_purna_box {
    padding: 16px 0;
  }
  .why_purna_info_box,
  .contact_form_box {
    padding: 24px;
  }
  /* Get-touch CSS */
  .get_touch_sec {
    border-top: 1px solid #e0ebf5;
  }
  .get_touch_sec .get_touch_title_box .blue_small_title {
    line-height: normal;
    letter-spacing: normal;
  }
  .get_touch_sec .get_touch_title_box p {
    font-size: 16px;
    line-height: 24px;
    color: #555;
  }
  .get_touch_form_box .privacy-note {
    margin-top: 12px;
    font-style: normal;
  }
  /* Devlopment-page CSS */
  .devlopment_title p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
  .devlop_img_text_image {
    height: 213px;
    min-height: auto;
  }
  .devlop_img_text_flex_sec .devlop_img_text_area > .devlop_img_text_image {
    height: 260px;
  }
  .devlop_img_text_info .devlopment_title {
    gap: 16px;
  }
  .services_area.row,
  .advantages_area.row,
  .partners_area.row,
  .events_area.row,
  .our_leadership_team_area.row,
  .our_team_area.row,
  .company_overview_area.row {
    gap: 31px;
  }
  .devlopment_pills_box li,
  .devlopment_points p,
  .manufacturing_pills_list span,
  .devlopment_round_pills_box span,
  .product_portfolio_box p {
    font-size: 16px;
    line-height: 24px;
  }
  .devlopment_pills_box li {
    width: 100%;
    padding: 12px;
  }
  .manufacturing_banner {
    background-position: 25%;
  }
  /* product portfolio CSS */
  .portfolio_banner {
    background-position: 80%;
  }
  .Img_white_banner_sec::after {
    background: transparent;
  }
  .product_portfolio_box {
    padding: 16px;
  }
  /* jobs cars CSS */
  .jobs_filter_area {
    flex-direction: column;
    padding: 20px;
  }
  .job_filter_input_flid,
  .jobs_left_filter_row .job_filter_select_flid,
  .job_filter_select_flid {
    flex: auto;
  }
  .sortby_filter_box span {
    flex: 0 0 auto;
  }
  .jobs_roll {
    font-size: 18px;
    line-height: 24px;
  }
  /* why_work_purna CSS */
  .why_work_purna_info_img {
    min-height: auto;
  }
  /* careers_category_banner CSS */
  .Img_blue_banner_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .blue_banner_title_box {
    gap: 16px;
  }
  .Img_banner_sec.Img_blue_banner_sec {
    height: 100%;
    min-height: 300px;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .jobs_summery_box_area,
  .jobs_share_box {
    padding: 18px;
  }
}
@media (max-width: 575px) {
  /* Advantages CSS */
  .advantages_grid_area {
    grid-template-columns: 1fr;
  }
  .adv_card {
    padding: 32px 0;
    align-items: center;
    text-align: center;
  }
  /* Partners CSS */
  .partners_area_img {
    height: 170px;
  }
  .about_page .title_box h2,
  .blue_text_img_heading,
  .devlopment_heading {
    font-size: 24px;
    line-height: 32px;
  }

  /* Team CSS */
  .our_team_box,
  .our_leadership_team_box {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px;
  }
  .our_team_img,
  .our_leadership_team_img {
    height: 100%;
    width: 100%;
    max-width: 100px;
  }
  .our_team_info {
    padding: 12px;
    justify-content: center;
  }
  .team_name,
  .leadership_team_name {
    font-size: 18px;
    line-height: 24px;
  }
  .team_roll {
    font-size: 14px;
    line-height: 20px;
    color: #555;
  }
  .our_core_team_sec {
    background: #f9fbfd;
  }
  /* Devlopment-page CSS */
}
@media (max-width: 380px) {
  /* Header CSS */
  /* .header_get_touch_outter {
    display: none;
  } */
}
