:root {
    --font_family: 'Inter', sans-serif;
    --white_color: #FFFFFF;
    --text_grey :#262A2E;
    --text_primary: #0D0D0D;
    --text_sec: #4D545C;

}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.header_section {
    background: var(--white_color);
    padding: 14px 10px;
    box-shadow: 0px 16px 32px -12px #585C5F1A;
}

.main-header {
  position: relative;
}

.sticky-header {
  position: fixed;
  top: -100px; /* hidden initially */
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 1000;
}

.sticky-header.active {
  top: 0; /* visible */
}
.sticky-header {
  transition: all 0.4s ease-in-out;
}
.font_14 {
    font-size: 14px;
    line-height: 20px;
}
.fw-med {
    font-weight: 500;
}
.fw-reg {
    font-weight: 400;
}
.fw-semi {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.text_grey {
    color: var(--text_grey)
}
.mr_52 {
    margin-right: 52px;
}
.mr_38 {
    margin-right: 38px;
}
a {
    text-decoration: none;
    color: var(--text_grey);
}
.mr_10 {
    margin-right: 10px;
}
.btn_primary {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    background-color: #2B3990;
    color: var(--white_color);
    border-radius: 10px;
    padding: 12px 19.31px;
    border: none;
}
.hero_section {
    background-image: url(./assets/images/Noise_texture.svg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    padding: 32px 0 100px 0;
    background-size: cover;
}
.text_pri {
    color: var(--text_primary);
}
.text_sec {
    color: var(--text_sec);
}
.mr_12 {
    margin-right: 12px;
}
.cursor-pointer {
    cursor: pointer;    
}
.mb_48 {
    margin-bottom: 48px;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}
.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}
.col-md-6 {
    flex: 0 0 auto;
    width: calc(50% - 62px);
}
.main_img_section .content_img {
    width: 100%;
    height: 570px;
    border: 3px solid var(--white_color);
    border-radius: 24px;
    box-shadow: 0px 20px 40px -8px #585C5F33;
    position: relative;
    overflow: visible;
}
.content_img img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.content_img_hover_preview {
    position: absolute;
    top: 20px;
    left: calc(100% + 24px);
    width: 460px;
    max-width: calc(100vw - 40px);
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.content_img:hover .content_img_hover_preview {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hover_preview_card {
    background: var(--white_color);
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    border-radius: 16px;
    box-shadow: 0px 20px 40px -8px #585C5F33;
    padding: 16px 16px 18px 16px;
}

.hover_preview_certs {
    flex-wrap: wrap;
    gap: 12px;
}

.hover_preview_img {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    background: #F7F8F9;
}
.hover_preview_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover_preview_price_section {
    padding: 14px 10px;
}

.hover_preview_shiprow {
    flex-wrap: wrap;
    gap: 8px;
}

.hover_preview_btns {
    gap: 12px;
    flex-wrap: wrap;
}

.hover_preview_btns .primary_btn {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .content_img_hover_preview {
        display: none;
    }
}
.justify-content-center {
    justify-content: center;
}
.left_arrow_nav_blk, .right_arrow_nav_blk {
    width: 50px;
    height: 50px;
    background: #FFFFFFDB;
    border: 1px solid var(--Colors-Neutral-100, #E1E3E8);
    backdrop-filter: blur(12px);
    border-radius: 50%;
}
.main_img_section {
    position: relative;
}
.main_img_section .left_arrow_nav_blk {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.main_img_section .right_arrow_nav_blk {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.main_img_section .right_arrow_nav_blk img {
    transform: rotate(180deg);
}
.mb_20 {
    margin-bottom: 20px;
}
.col-md-2 {        
    flex: 0 0 auto;
    width: 16.66666667%
}
.img_preview_blks {
    width: 80px;
    height: 80px;
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    background-color: var(--white_color);
    border-radius: 8px;
}
.img_preview_container .img_preview_blks:not(:last-child) {
    margin-right: 20px;
} 
.pl_50 {
    padding-left: 50px;
}
.pr_50 {
    padding-right: 50px;
}
.justify-content-start {
    justify-content: flex-start;
}
.certification_blk {
    background: var(--Colors-Neutral-25, #F7F8F9);
    border: 1px solid var(--Colors-Neutral-100, #E1E3E8);
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 6px;
    padding: 7px 14px;
}
.certification_blk span {
    color: #4B5563;
}
.certification_blk  img {
    width: 22px;
    height: 17px;
}
.mb_16 {
    margin-bottom: 16px;
}
.tex-blue {
    color: #111827;
}
.font_56 {
    font-size: 56px;
    line-height: 72px;
}
.mb_24 {
    margin-bottom: 24px;
}
.mt_0 {
    margin-top: 0;
} 
.m-0 {
    margin: 0;
}
.p-0 {
    padding: 0;
}
li {
    list-style: none;
}
.font_16 {
    font-size: 16px;
    line-height: 24px;
}
.text_price {
    color: #6A7077;
}
.font_20 {
    font-size: 20px;
    line-height: 28px;
}
.mr_8 {
    margin-right: 8px;
}
.shipping_info_btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: #92400E;
    background-color: #FEF3C7;
    border-radius: 6px;
    padding: 6px 12px;
}
.certi_info_blk {
    color: #0D0D0D !important;
    background-color: #F3F4F6;
}
.price_section {
    background: var(--white_color);
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    border-radius: 10px;
    padding: 16px 10px;
}
.primary_btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;
    color: var(--white_color);
    background: #2B3990;
    border: 1px solid #2B3990;
    border-radius: 12px;
    padding: 13px 29px;
}
button.primary_btn.secondary_btn {
    background-color: var(--white_color);
    color: #262A2E;
    padding: 13px 29px;
}
.ml_8 {
    margin-left: 8px;
}
.mb_80 {
    margin-bottom: 80px;
}
.d-block {
    display: block;
}
.flex-column {
    flex-direction: column;
}
.w-100 {
    width: 100%;
}
.bg_blue {
    background-color: #111827;
}
.font_48  {
    font-size: 48px;
    line-height: 64px;  
}
.text_white {
    color: var(--white_color);
}
.opacity_80 {
    opacity: 0.8;
}
.font_18 {
    font-size: 18px;
    line-height: 28px;  
}
.tech_sepcific {
    padding: 100px 0;
}
.mb_56 {
    margin-bottom: 56px;
}
.spec_table th {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--white_color);
    text-align: left;
    padding: 12px 24px;
    background-color: #374151;
}
table {
    border-collapse: collapse;
    width: 100%;
}
.spec_table td {
    padding: 12px 24px;
    color: var(--white_color);
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
.spec_table tr:not(:last-child) td {
    border-bottom: 1px solid #374151;
}
.table-responsive.w-100 {
    overflow: auto;
    border-radius: 12px;
    border: 1.25px solid #374151;
}
.download_btn {
    border: 1px solid var(--Colors-Neutral-white, #FFFFFF);
    background: transparent;
}
.mb_56 {
    margin-bottom: 56px;
}
.font_44 {
    font-size: 44px;
    line-height: 56px;      
}
.col-md-4 {
    flex: 0 0 auto;
    width: calc((100% / 3) - 24px);
    padding-bottom: 24px;
}
.build_section {
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    border-radius: 16px;
    padding: 20px;
    background-color:var(--white_color);
}
.mb_44 {
    margin-bottom: 44px;
}
.clr_blu {
    color: #2B3990;
}
.text_black {
    color: #000000;
}
.accordion_text {
    color: #535A61;
}
.accodion_section {
    border: 1px solid var(--Colors-Neutral-100, #E1E3E8);
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    padding: 20px;
    background-color: var(--white_color);
}
.accordion_up_icon {
    background-color: #FFF1F2;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion_down_icon {
    background-color: #F1F2F3;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transform_down {
    transform: rotate(180deg);
}
.font_26 {
    font-size: 26px;
    line-height: 36px;      
}
.mb_12 {
    margin-bottom: 12px;
}
.email_input {
    background: var(--Colors-Neutral-white, #FFFFFF);
    border: 1px solid var(--Colors-Neutral-100, #E1E3E8) !important;
    box-shadow: 0px 1px 2px 0px #0A0D1408;
    padding: 9px 12px;
    border-radius: 8px;
    outline: none !important;
}
.w-360 {
    width: 360px;
}
.mb_12 {
    margin-bottom: 12px;
}
.request_catalogue_btn {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    width: 100%;
    background: #2B3990;
    color: var(--white_color);
    border-radius: 10px;
    border: 0;
    padding: 10px 10px;
    cursor: pointer;
}
.request_catalogue {
    background: var(--Colors-Neutral-25, #F7F8F9);
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;
    border-radius: 10px;
    padding: 20px;
}
.text-center {
    text-align: center;
}
.mobile_d_block {
    display: none;
}
.border_top {
    border-top: 1px solid var(--Colors-Neutral-200, #CFD1D4);
}
.manufacturing_process li.process_steps {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    background: var(--white_color);
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 32px;
    padding: 7px 11px;
    position: relative;
    width: 133px;
}
.manufacturing_process li.process_steps.active {
    background: #2B3990;
    color: var(--white_color);
}
.manufacturing_process li.process_steps:not(:last-child) {
    margin-right: 16px;
}
.manufacturing_process li.process_steps:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background-color: var(--Colors-Neutral-200, #CFD1D4);
    margin-left: 16px;
    vertical-align: middle;
    position: absolute;
    top: 17px;
    right: -17px;
}
.manufacturing_process {
    background: var(--Colors-Neutral-white, #FFFFFF);
    border: 1.25px solid var(--Colors-Neutral-200, #CFD1D4);
    box-shadow: 0px 16px 32px -12px #585C5F1A;
    border-radius: 20px;
    padding: 32px;
}
.mb_32 {
    margin-bottom: 32px;
}
.manufacturing_process_img {
    height: 315px !important;
}
.pl_23 {
    padding-left: 23px;
}
.pr_23 {
    padding-right: 23px;
}
.font_28 {
    font-size: 28px;
    line-height: 36px;
}
.justify-content-around {
    justify-content: space-around;
}
.pt_100 {   
    padding-top: 100px;
}
.mb_54 {
    margin-bottom: 54px;
}
.portfolio_piping_img {
    height: 174px;
    object-fit: cover;
    border-radius: 16px;
}
.learn_more_btn {
    background: #2B39900D;
    border: 1px solid #2B39903D;
    color: #2B3990;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;
    border-radius: 12px;
    padding: 9px;
    width: 100%;
}
.build_section img.content_img {
    width: 32px;
}
.h-100 {
    height: 100%;
}
.w_maxcontent {
    width: max-content;
}
.bg_pri {
    background: #2B3990;
}
.contact_us_section {
    padding: 56px;
    border-radius: 24px;
}
.contact_right_side {
    width: 356px;
    background: var(--Colors-Neutral-25, #F7F8F9);
    border-radius: 24px;
    padding: 32px;
}
.contact_left_side {
    width: calc(100% - 380px);
}
.w-317px {
    width: 317px;
}
.bg_grey {
    background-color: var(--text_grey);
}
.number_input_full {
    width: calc(100% - 61px);
    border-left: 0;
    border-radius: 0 8px 8px 0;
}
select.number_code_select {
    width: 61px;
    padding: 9px 6px;
    border-radius: 8px 0 0 8px;
}
.position-relative {
    position: relative;
}
.select_down_arrow {
    position: absolute;
    top: 17px;
    right: 9px;
}
select {
    appearance: none;
}
.font_48 {
    font-size: 48px;
    line-height: 58px;
}
.mb_12 {
    margin-bottom: 12px;
}
.pb-40 {
    padding-bottom: 40px;
} 
.border_bottom {
    border-bottom: 1.5px solid var(--Colors-Neutral-Alpha-20-white, #FFFFFF33)
}
.text_underline {
    text-decoration: underline;
}
.pl_32 {
    padding-left: 32px;
}
.pr_32 {
    padding-right: 32px;
}
.contact_section_bg {
    background-image: url(./assets/images/contact_bg.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.mb_60 {
    margin-bottom: 60px;
}
.text_start {
    text-align: left;
}
.footer_info_section  .footer_containers_blk {
    width: calc(100%/4);
}
.align-items-start {
    align-items: flex-start;
}
.mr_6 {
    margin-right: 6px;
}
.mt_3 {
    margin-top: 3px;
}
.border_bottom_grey {
    border-bottom: 1px solid var(--Colors-Neutral-100, #E1E3E8)
}
.pb_24 {
    padding-bottom: 24px;
}
.mb_24 {
    margin-bottom: 24px;
}
.mr_16 {
    margin-right: 16px;
}
.bg_white {
    background-color: var(--white_color);
}
.mr_56 {
    margin-right: 56px;
}
.last_section {
    padding: 10px 0px;
}

.industry_slider_wrapper {
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #F7F8F9;
}
.industry_slider_track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
    padding: 0 40px;
}
@media (max-width: 768px) {
    .industry_slider_track {
        padding: 0 16px;
    }
}

.industry_slide_item {
    min-width: 420px;
    width: 420px;
    height: 420px;
}
.industry_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}
.industry_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.industry_card_body {
    position: absolute;
    top: 0;
    color: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.579217) 40.23%, rgba(0, 0, 0, 0.8) 75.96%);
    backdrop-filter: blur(1px);
}
.proven_slider_wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.proven_slider_track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 0 40px;
}
.proven_slide_item {
    min-width: 420px;
    width: 420px;
    height: 400px;
}
.proven_card {
    border: 1px solid #E1E3E8;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
}
.proven_card_img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.proven_card_body {
    padding: 16px;
}
@media (max-width: 1024px) {
    .proven_slide_item {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 768px) {
   .proven_slide_item {
    min-width: 420px;
    flex: auto;
}
}
.industry_slider_nav {
    position: absolute;
    top: 15%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E1E3E8;
    background: #ffffffcc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2B3990;
    cursor: pointer;
    z-index: 2;
}
.industry_slider_nav.prev {
    right: 380px;
}
.industry_slider_nav.next {
    right: 300px;
}
.industry_slider_nav  img.right_nav_arrow {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
.industry_slide_item {
    min-width: 420px !important;
    flex: auto;
}
}
@media (max-width: 768px) {
    .industry_slide_item {
        min-width: 100%;
        flex: 0 0 100%;
    }
    .industry_slider_nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
.mb_64 {
    margin-bottom: 64px;
}
.avatar_blk {
    width: 48px;
    height: 48px;
    background-color: #E1E3E8;
    border-radius: 50%;
    margin-right: 12px;
}
.mb_32 {
    margin-bottom: 32px;
}
@media (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }
}
body .tab_manufacturing_nav, .min_d_none {
    display: none !important;
}
.body .mobile_d_block {
    display: none !important;
}


/* mobile Responsive adjustments starts*/
@media (max-width: 768px) {
    body .mobile_display_none {
        display: none !important;
    }
    body .mobile_flex_column {
        flex-direction: column;
    }
    body .mobile_flex_column_reverse {
        flex-direction: column-reverse;
    }
    body .mobile_w_100 {
        width: 100% !important;
    }
    body .mobile_d_block {
        display: block !important
    }
    .mobile_mb_24 {
        margin-bottom: 24px ;
    }
    .mobile_m_0 {
        margin: 0;
    }
    .mobile_margin_align {
        margin: 0 0 12px 0 !important;
    }
    .mobile_mt_20 {
        margin-top: 20px;
    }
    .w-360 {
    width: 300px;
}
.industry_slider_nav {
    top: 41% !important;
}
.mobile_mb_116 {
    margin-bottom: 116px !important;
}
.mobile_font_16 {
    font-size: 16px !important;
    line-height: 20px !important;
}
.industry_slider_nav.prev {
    right: 299px;
}
.industry_slider_nav.next {
    right: 247px;
}
.industry_slide_item {
    min-width: 320px !important;
    flex: auto;
}
body .manufacturing_process li.process_steps.mobile_after_d_none:after {
    display: none;
}
body .mobile_display_flex {
    display: flex !important;
}
.proven_slide_item {
    min-width: 280px;
    flex: auto;
    height: auto;
}
body .mobile_items_align_start {
    align-items: flex-start !important
}
.mobile_border_bottom_grey {
    border-bottom: 1px solid var(--Colors-Neutral-100, #E1E3E8);
    padding-bottom: 16px;
}
.mobile_font_36 {
    font-size: 36px !important;
    line-height: 42px !important;
}
.mobile_p_24 {
    padding: 24px
}
.footer_info_section  .footer_containers_blk {
    width: 100%;
}
.last_section .mr_56 {
    margin-right: 34px;
}
.contact_right_side {
    width: 286px;
    padding: 15px;
}
.w-317px {
    width: 100%;
}
.mobile_p_0 {
    padding: 0;
}
.mobile_flex_wrap {
    flex-wrap: wrap;
}
.mobile_w_328px {
    width: 328px !important;
    height: 320px !important;
}
.client_logo {
    width: 91px;
}
.mobile_w_max_content {
    width: max-content !important;
}
}
/* mobile responsive adjustments ends */

/* tab Responsive adjustments starts*/
@media only screen and (min-width:768px) and (max-width:1024px) {
    .tab_flex_column_reverse {
        flex-direction: column-reverse;
    }
    body .tab_w_100 {
        width: 100% !important;
    }
    .tab_mb_56 {
        margin-bottom: 56px !important;
    }
    .sticky-header {
        top: 0px !important;
    }
    .sticky-header.active {
        top: 0px !important;
    }
    body .tab_d_none {
        display: none !important;
    }
    .col-md-4 {
        width: 50% !important;
        height: 100%;
    }
    .accordion_up_icon {
        background-color: #2B3990;
    }
    .accordion_up_icon img {
        fill: #FFFFFF;
    }
    .tab_flex_column {
        flex-direction: column;
    }
    body .tab_align_items_start {
        align-items: flex-start !important;
    }
    body .tab_flex_dir_row {
        flex-direction: row !important;
    }
    .tab_mt_20 {
        margin-top: 20px !important;
    }
    .tab_w_150px {
        width: 150px !important;
    }
    .tab_catlogue_input {
        width: calc(100% - 150px) !important;
        margin: 0 15px 0 0 !important;
    }
    .tab_w_70 {
        width: 70% !important;
    }
    .industry_slider_nav.prev {
        right: 120px;
    }
    .industry_slider_nav.next {
        right: 65px;
    }
    .industry_slide_item {
        min-width: 420px !important;
        flex: auto;
    }
    .proven_slide_item {
        min-width: 420px;
        flex: auto;
    }
    .portfolio_piping_img {
        height: 328px;
    }
    .pl_32 {
        padding-left: 0;
    }
    .contact_right_side {
        width: 100%;
        margin-top: 40px;
    }
    .w-317px {
        width: 100%;
    }
    .process_steps {
        width: max-content !important;
    }
    .process_steps::after {
        display: none !important;
    }
    .tab_mb_32 {
        margin-bottom: 32px !important;
    }
    .tab_manufacturing_nav.tab_d_none {
        display: flex !important;
        justify-content: space-between !important;
    }
    .tab_manufacturing_nav .process_steps:not(:last-child):after {
        content: "";
        display: block !important;
        width: 458px !important;
        left: 81px !important;
    }
    .min_d_none {
        display: block !important;
    }
    .last_section  .mr_56 {
        margin-right: 22px;
    }
    .container.last_section {
        max-width: 100% !important;
    }
}
/* tab responsive adjustments ends */