/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html,body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
	line-height: 1;
    font-family: 'Outfit', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root{
    --black-color: #2E2E2E;
    --red-font: #CB2229;
    --light-grey: #DCDCDC;
    --white: #fff;
    --grey: #969696;
}

.ptb-95{
    padding-top: 4.948vw;
    padding-bottom: 4.948vw;
}

.pt-0{
    padding-top: 0;
}

.pb-0{
    padding-bottom: 0;
}

.pt-20{
    padding-top: 20px;
}

.pb-20{
    padding-bottom: 20px;
}

.pt-45{
    padding-top: 45px;
}

.pb-45{
    padding-bottom: 45px;
}

.content_container{
    max-width: 93%;
    margin: 0 auto;
}

.red_txt{
    color: var(--red-font);
}

.font-14{
    font-size: 14px;
}

.font-18{
    font-size: 18px;
}
.font-28 {
    font-size: 28px;
}

.font-32{
    font-size: 32px;
}

.sec_header .sub_title{
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sec_header .title{
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    text-align: center;
}

.readmorebtn{
    text-decoration: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.box_boder_top,
.box_boder_right,
.box_boder_bottom,
.box_boder_left {
  position: absolute;
}


/* Header Css */

header{
    /* background: #fff; */
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 10;
    /* height: 7.441860465116279vh; */
}


header.white_links{
    background: transparent;
}

header.sticky{
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
}

header.sticky.plastic_recycle_header{
    background: transparent;
}

.main_navbar{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.main_navbar .left_navbar{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}


.main_navbar .left_navbar .logo_area img{
    display: block;
    max-width: 105px;
}

.main_navbar .right_navbar nav ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.main_navbar .right_navbar nav ul li:not(:last-child){
    margin-right: 50px;
}

.main_navbar .right_navbar nav ul li a{
    text-decoration: none;
    font-weight: 700;
    line-height: 20px;
    color: var(--black-color);
    display: block;
    padding: 30px 0;
    text-transform: uppercase;
}

.main_navbar .right_navbar nav ul li:hover a{
    color: var(--red-font);
}

header .main_navbar .right_navbar nav ul li.dropdown .btn {
    color: var(--black-color);
    background: transparent;
    border: none;
    outline: none;
    font-weight: 700;
    line-height: 1.3227513228vw;
    padding: 0;
  }

  .main_navbar .right_navbar nav ul li a.white_links,
header .main_navbar .right_navbar nav ul li.dropdown .btn.white_links {
    color: var(--white);
}

  header .main_navbar .right_navbar nav ul li.dropdown .btn:focus {
    outline: none;
    box-shadow: none;
  }
  header .main_navbar .right_navbar nav ul li.dropdown .btn:hover {
    color: var(--red-font);
  }

  header .main_navbar .right_navbar nav ul li.dropdown .dropdown-menu {
    min-width: 169px;
    padding: 0;
    top: 51px !important;
    right: 0 !important;
    left: unset !important;
    transform: unset !important;
    border-radius: 5px;
  }

  header .main_navbar .right_navbar nav ul li.dropdown .dropdown-menu .dropdown-item:nth-child(1){
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  header .main_navbar .right_navbar nav ul li.dropdown .dropdown-menu .dropdown-item:nth-child(3){
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  header .main_navbar .right_navbar nav ul li.dropdown .dropdown-menu .dropdown-item {
    padding: 14px 20px;
    color: var(--red-font) !important;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 2px solid var(--red-font);
  }

  header .main_navbar .right_navbar nav ul li.dropdown .dropdown-menu .dropdown-item:hover{
    background: var(--red-font);
    color: var(--white) !important;
  }

  header.sticky .main_navbar .right_navbar nav ul li a.white_links{
    color: var(--black-color) !important;
  }

/* Banner CSS */

.banner_area{
    position: relative;
    padding-top: 7.441860465116279vh;;
}

.banner_area iframe{
    display: block;
    /* width: 100vw; */
    height: calc(100vh - 80px);
}


.banner_area .banner_wave{
    position: absolute;
    /* bottom: -350px; */
    bottom: -18.583vw;
    left: 0;
    width: 100vw;
}

/* Main About Area */
.about_main_area{
    padding: 370px 0 220px;
    position: relative;
}

.qip_img{
    position: absolute;
    left: -20px;
    bottom: 100px;
}

.inner_about_area{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.inner_about_area .left_about_area{
    flex: 0 0 45%;
    max-width: 45%;
}

.inner_about_area .left_about_area{
    position: relative;
}

.inner_about_area .left_about_area .bold_text_area h2{
    text-shadow: -1px 1px 0 #000,
                    1px 1px 0 #000,
                    1px -1px 0 #000,
                    -1px -1px 0 #000;
    font-weight: 700;
    color: #fff;
    font-size: 100px;
    line-height: 100px;
    opacity: 0.1;
}

.inner_about_area .left_about_area .semibold_text_area{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
}

.inner_about_area .left_about_area .semibold_text_area h2{
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
}


.inner_about_area .right_about_area{
    flex: 0 0 55%;
    max-width: 55%;
}

.inner_about_area .right_about_area .about_area_content .red_txt{
    font-weight: 400;
}

.inner_about_area .right_about_area .about_area_content .para{
    margin: 12px 0 22px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.inner_about_area .right_about_area .about_area_content .para{
    margin: 12px 0 22px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.inner_about_area .right_about_area .about_area_content .secondary_para{
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
}

.inner_about_area .right_about_area .about_area_content .readmorebtn span{
    line-height: 21px;
    font-weight: 700;
}

.inner_about_area .right_about_area .about_area_content .readmorebtn svg{
    color: var(--red-font);
    font-size: 30px;
    margin-top: 2px;
}

/* Homepage Stat */
.homepage_stat_area{
    background: url('../img/home_stats_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 0;
}

.homepage_stat_area .home_stat_box:not(:last-child){
    border-right: 1px solid #fff;
}

.homepage_stat_area .home_stat_col .stat_icon{
    margin-bottom: 40px;
    text-align: center;
}

.homepage_stat_area .home_stat_col .stat_txt{
    text-align: center;
}

.homepage_stat_area .home_stat_col .stat_txt h3{
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.homepage_stat_area .home_stat_col .stat_txt p{
    line-height: 28px;
    color: #fff;
    font-weight: 300;
}

/* Our Business Area */

.our_business_area .sec_header .yarn_ball{
    position: absolute;
    left: -100px;
    top: -12px;
}

.our_business_area .sec_header .title{
   margin: 12px auto 0;
   width: fit-content;
   position: relative;
}

.business_area_flex{
    margin-top: 60px;
}

.business_area_flex .business_col{
    position: relative;
    height: 100%;
    overflow: hidden;
    display: block;
}


.business_area_flex .business_col .business_box{
    position: relative;
}

.business_area_flex .business_col .business_box::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #2E2E2E;
    opacity: 0.5;
    display: block;
}

.business_area_flex .business_col .business_box img{
    display: block;
    width: 100%;
}

.business_area_flex .business_col .business_box_content{
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    top: 60%;
    left: 0;
    height: 100%;
    padding: 45px 45px 70px;
    transition: 0.5s ease-in-out all;
}

.business_area_flex .business_col:hover .business_box_content{
    top: 0;
}

.business_area_flex .business_col:hover .business_box::before{
    background: var(--red-font);
    opacity: 0.8;
}


.business_area_flex .business_col .business_box_content .business_box_content_head h3{
    font-weight: 700;
    line-height: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.business_area_flex .business_col .business_box_content .business_box_content_head p,
.business_area_flex .business_col .business_box_content .business_box_content_body p{
    color: #fff;
    font-weight: 400;
    line-height: 28px;
}

.business_area_flex .business_col .business_box_content .business_box_content_body p{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 5; /* number of lines to show */
           line-clamp: 5;
   -webkit-box-orient: vertical;
}

.business_area_flex .business_col .business_box_content .business_box_content_body .white_txt{
    color: #fff;
    margin-top: 15px;
}

.business_area_flex .business_col .business_box_content .business_box_content_body .white_txt span{
    line-height: 21px;
    font-weight: 700;
}

.business_area_flex .business_col .business_box_content .business_box_content_body .white_txt svg{
    font-size: 30px;
    margin-top: 2px;
}

.experience_video_area{
    margin-top: 45px;
    position: relative;
}

.experience_video_area img{
    display: block;
    width: 100%;
}

.video_paly_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.experience_video_area video{
    display: block;
}
/* Achievement and Awards Area */

.awards_area .presentation_txt{
    margin: 50px 0 60px
}

.awards_area .presentation_txt p{
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}

.awards_area .presentation_txt p .bold_txt{
    font-weight: 700;
}

.awards_area .awards_carousel{
    /* padding: 0 20px 50px 0; */
    overflow: hidden;
}

.awards_area .awards_carousel .owl-stage-outer{
    overflow: unset;
}

.awards_area .awards_carousel .owl-dots{
    margin-top: 50px !important;
}
.awards_area .awards_carousel .owl-dots .owl-dot span{
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}


.awards_area .awards_carousel .owl-dots .owl-dot.active span{
    background: var(--white);
    border: 1px solid var(--red-font);
}

.awards_area .awards_carousel img{
    width: unset;
}

.awards_area .awards_carousel .owl-item .item .box_boder_top {
    content: "";
    top: 40%;
    width: calc(100% - 50px);
    height: 3px;
    background: #CB2229;
    left: 50px;
    z-index: -1;
    transition: 0.3s ease-in all;
    transform: scale(0);
    transform-origin: left;
  }

  .awards_area .awards_carousel .owl-item .item:hover .box_boder_top {
    transform: scale(1);
  }

  .awards_area .awards_carousel .owl-item .item .box_boder_right {
    content: "";
    top: 40%;
    width: 3px;
    height: 70%;
    background: #CB2229;
    right: 0;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.3s;
    transform: scale(0);
    transform-origin: top;
  }

  .awards_area .awards_carousel .owl-item .item:hover .box_boder_right {
    transform: scale(1);
  }

  .awards_area .awards_carousel .owl-item .item .box_boder_bottom {
    content: "";
    top: 110%;
    width: calc(100% - 50px);
    height: 3px;
    background: #CB2229;
    left: 50px;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.6s;
    transform: scale(0);
    transform-origin: right;
  }

  .awards_area .awards_carousel .owl-item .item:hover .box_boder_bottom {
    transform: scale(1);
  }

  .awards_area .awards_carousel .owl-item .item .box_boder_left {
    content: "";
    top: 40%;
    width: 3px;
    height: 70%;
    background: #CB2229;
    left: 50px;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.9s;
    transform: scale(0);
    transform-origin: bottom;
  }

  .awards_area .awards_carousel .owl-item .item:hover .box_boder_left {
    transform: scale(1);
  }

/* Cerification Area */

.certification_area .content_container{
    overflow: hidden;
}

.certification_area .title{
    margin-bottom: 54px;
}

.certification_carousel .item{
    box-shadow: 2px 2px 5px var(--light-grey);
    margin-bottom: 20px;
}

.certification_carousel .owl-dots{
    display: block !important;
    margin-top: 25px !important;
}

.certification_carousel .owl-dots .owl-dot span{
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}


.certification_carousel .owl-dots .owl-dot.active span{
    background: var(--white);
    border: 1px solid var(--red-font);
}

.certification_carousel .owl-stage-outer{
    overflow: unset;
}

.certification_box{
    padding: 23px 0;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.certification_box .certification_img{
    /* height: 100px; */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 0.833vw;
}

.certification_box .certification_img img{
    /* width: 166px;
    height: 95px; */
    max-width: 180px;
    width: unset;
}

.certification_box .certification_txt p{
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

/* Leadership Team */

.team_leader_carousel{
    margin-top: 90px;
    padding: 0 0 160px 30px;
    overflow: hidden;
}

.team_leader_carousel .owl-stage-outer{
    overflow: unset;
}

.team_leader_carousel .leader_box{
    /* max-width: 300px; */
}

.team_leader_carousel .leader_box .leader_img{
    position: relative;
    z-index: 1;
}

.team_leader_carousel .item .leader_txt{
    background: var(--red-font);
    padding: 23px 15px;
    position: relative;
    z-index: 1;
}

.team_leader_carousel .item .leader_txt h2{
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.team_leader_carousel .item .leader_txt{
    font-weight: 400;
    line-height: 18px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.team_leader_carousel .item .leader_txt img{
    position: absolute;
    max-width: 100%;
    width: unset;
    top: -20px;
    left: -20px;
}

.core_team_area .team_leader_carousel .owl-stage-outer .leader_box .box_boder_top {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    top: 50px;
    left: -30px;
    background: #CB2229;
    transition: 0.3s ease-in all;
    transform: scale(0);
    transform-origin: right;
    z-index: 0;
  }


  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box:hover .box_boder_top {
    transform: scale(1);
  }


  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box .box_boder_left {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    top: 50px;
    left: -30px;
    background: #CB2229;
    transition: 0.3s ease-in all;
    transition-delay: 0.3s;
    transform: scale(0);
    transform-origin: top;
    z-index: 0;
  }


  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box:hover .box_boder_left {
    transform: scale(1);
  }


  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box .box_boder_bottom {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    top: calc(100% + 50px);
    left: -30px;
    background: #CB2229;
    transition: 0.3s ease-in all;
    transition-delay: 0.6s;
    transform: scale(0);
    transform-origin: left;
    z-index: 0;
  }

  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box:hover .box_boder_bottom {
    transform: scale(1);
  }

  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box .box_boder_right {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    top: 50px;
    left: calc(50% - 33px);
    background: #CB2229;
    transition: 0.3s ease-in all;
    transition-delay: 0.9s;
    transform: scale(0);
    transform-origin: bottom;
    z-index: 0;
  }


  .core_team_area .team_leader_carousel .owl-stage-outer .leader_box:hover .box_boder_right {
    transform: scale(1);
  }

  .core_team_area .team_leader_carousel .owl-dots{
    margin-top: 70px !important;
}

.core_team_area .team_leader_carousel .owl-dots .owl-dot span{
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}

.core_team_area .team_leader_carousel .owl-dots .owl-dot.active span{
    background: var(--white);
    border: 1px solid var(--red-font);
}

/* Footer Area */

footer{
    background: var(--black-color);
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

.footer_logo{
    margin-bottom: 36px;
}

.main_footer_area{
    padding-bottom: 35px;
}

.main_footer_area .footer_column .footer_header h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    color: var(--red-font);
    margin-bottom: 20px;
}

.main_footer_area .footer_column .footer_links ul li{
    margin-bottom: 10px;
}

.main_footer_area .footer_column .footer_links ul li a{
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    line-height: 20px;
}

.main_footer_area .footer_column .footer_links ul li a:hover{
    color: var(--red-font);
}

.main_footer_area .footer_column .footer_info_area p{
    color: var(--white);
    font-weight: 500;
    line-height: 20px;
}

.main_footer_area .footer_column .footer_contact{
    margin-top: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.main_footer_area .footer_column .footer_contact .telephone span,
.main_footer_area .footer_column .footer_contact .telephone a{
    color: var(--white);
}

.main_footer_area .footer_column .footer_contact .middle_line{
    color: var(--white);
    margin: 0 5px;
}

.follow_area{
    margin-top: 25px;
}

.follow_area p{
    color: var(--white);
    font-weight: 500;
    line-height: 26px;
}

.follow_area .follow_links{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 18px;
}

.follow_area .follow_links li:not(:last-child){
    margin-right: 20px;
}

.copyright_area{
    padding: 30px 0 40px;
}

.copyright_area p{
    color: var(--white);
    text-align: center;
}


/* Textile Area */
.desktop_view_textile_anim{
    display: none;
}

.small_devices_textile_banner{
    display: none;
}

.banner_img_textile img{
    width: 100%;
}


.thread_animation{
    height: 143vh;
    position: relative;
}

.bottle_img{
    position: absolute;
    opacity: 1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
}

.bottle_01{
    top: 18vw;
    left: 0;
    width: 27vw;
    height: 17.353vw;
}

.bottle_02{
    left: 54vw;
    transform: translateX(-50%);
    top: 0;
    width: 7.981vw;
    height: 18.646vw;
}

.bottle_03{
    top: 35vw;
    right: 0;
    width: 27.653vw;
    height: 6.469vw;
}

.bobbin{
    position: absolute;
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
}

.bobbin_01{
    width: 13.202vw;
    height: 16.057vw;
    right: 37vw;
    top: 23vw;
    z-index: 1;
}

.bobbin_02{
    width: 14.666vw;
    height: 14.105vw;
    top: 32.646vw;
    left: 46vw;
    transform: translateX(-50%);
    z-index: 3;
}

.bobbin_03{
    width: 14.886vw;
    height: 14.886vw;
    top: 23.646vw;
    left: 44.5vw;
    transform: translateX(-50%);
    z-index: 2;
}

.thread{
    position: absolute;
    opacity: 0;
    z-index: 4;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
}

.thread_01{
    top: 17.5vw;
    left: 49.8vw;
    transform: translateX(-50%);
    width: 2.685vw;
    height: 6.712vw;
}

.thread_02{
    top: 33.5vw;
    left: 31vw;
    transform: translateX(-50%);
    width: 10.372vw;
    height: 4.076vw;
}

.thread_03{
    top: 33.5vw;
    right: 22vw;
    transform: translateX(-50%);
    width: 8.615vw;
    height: 3.857vw;
}

.thread_vector{
    position: absolute;
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
    transform-origin: top;
}

.thread_vector_01{
    width: 6.955vw;
    height: 26.720vw;
    top: 39vw;
    left: 49vw;
    transform: translateX(-50%);
}

.thread_vector_02{
    width: 6.955vw;
    height: 29.283vw;
    top: 36.5vw;
    left: 52vw;
    transform: translateX(-50%);
}

.thread_vector_03{
    width: 6.955vw;
    height: 29.283vw;
    top: 36.5vw;
    left: 54vw;
    transform: translateX(-50%);
}

.line_vector{
    position: absolute;
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)3s;
}

.line_vector_01{
    width: 8.492vw;
    height: 2.123vw;
    top: 36.5vw;
    left: 34vw;
}

.line_vector_02{
    width: 2vw;
    height: 6.272vw;
    top: 23vw;
    left: 48vw;
    transform: translateX(-50%);
}

.line_vector_03{
    width: 7.053vw;
    height: 1.5vw;
    right: 33vw;
    top: 33.3vw;
}

.marquee{
    position: absolute;
    width: 100%;
    font-size: 150px;
    line-height: 180px;
    font-weight: 700;
    color: #d5d5d5;
    opacity: 0.35;
}

.marquee_one{
    top: 10vh;
}

.marquee_two{
    top: 80vh;
}

.next_generation_area{
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.next_gen_fabric{
    transform-origin: left;
}

.next_gen_subtitle_container,
.next_gen_title_container{
    overflow: hidden;
    position: absolute;
}

.next_gen_subtitle_container{
    top: 35%;
    width: 100%;
}

.next_gen_title_container{
    top: 40%;
    width: 100%;
}

.small_view_next_gen_area{
    position: relative;
}

.next_gen_subtitle{
    color: #fff;
    width: 100%;
    font-size: 1.667vw !important;
    text-align: center;
    line-height: 2vw;
}

.small_view_next_gen_subtitle{
    color: #fff;
    width: 100%;
    font-size: 2.5vw !important;
    text-align: center;
    line-height: 3vw;
}

.small_view_next_gen_subtitle_container,
.small_view_next_gen_title_container{
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.small_view_next_gen_subtitle_container{
    top: 45%;
}

.small_view_next_gen_title_container{
    top: 60%;
}


.next_gen_title{
    font-size: 7.813vw;
    line-height: 9.2vw;
    font-weight: 700;
    /* line-height: 200px; */
    color: #fff;
    width: 100%;
    text-align: center;
}

.small_view_next_gen_title{
    font-size: 7.813vw;
    line-height: 9.2vw;
    font-weight: 700;
    /* line-height: 200px; */
    color: #fff;
    width: 100%;
    text-align: center;
}

.small_view_next_gen_title span{
    background-image: url('../img/home_stats_bg.png');
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
}

.next_gen_title span{
    background-image: url('../img/home_stats_bg.png');
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
}

.small_view_next_gen_fabric{
    margin-top: -14vh;
}

.small_view_next_gen_fabric img{
    max-width: 100%;
}


.textile_banner_area h2{
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    font-weight: 700;
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    opacity: 0.1;
    text-align: center;
}

.textile_stat_area .textile_stat_para{
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

.textile_stat_flex{
    padding: 0 30px;
    margin-top: 65px;
}

.textile_stat_flex .textile_stat{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: left;
    margin-bottom: 90px;
    position: relative;
}

.textile_stat_flex .textile_stat .textile_stat_icon{
    background: var(--white);
}

.textile_stat_flex .textile_stat .textile_stat_txt{
    padding-left: 25px;
    background: var(--white);
}

.textile_stat_flex .textile_stat .textile_stat_txt h3{
    font-weight: 600;
    line-height: 42px;
}

.textile_stat_flex .textile_stat .textile_stat_txt p{
    color: #969696;
    line-height: 28px;
}

/* .textile_stat_flex .textile_stat .box_boder_top,
.textile_stat_flex .textile_stat .box_boder_right,
.textile_stat_flex .textile_stat .box_boder_bottom,
.textile_stat_flex .textile_stat .box_boder_left{
    position: absolute;
} */

.textile_stat_flex .textile_stat .box_boder_top{
    content: '';
    top: 40%;
    width: 70%;
    height: 3px;
    background: var(--red-font);
    left: 30%;
    z-index: -1;
    transition: 0.3s ease-in all;
    transform: scale(0);
    transform-origin: left;
}

.textile_stat_flex .textile_stat:hover .box_boder_top{
    transform: scale(1);
}

.textile_stat_flex .textile_stat .box_boder_right{
    content: '';
    top: 40%;
    width: 3px;
    height: 70px;
    background: var(--red-font);
    right: 0;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.3s;
    transform: scale(0);
    transform-origin: top;
}

.textile_stat_flex .textile_stat:hover .box_boder_right{
    transform: scale(1);
}

.textile_stat_flex .textile_stat .box_boder_bottom{
    content: '';
    top: calc(100% + 18px);
    width: 70%;
    height: 3px;
    background: var(--red-font);
    left: 30%;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.6s;
    transform: scale(0);
    transform-origin: right;
}

.textile_stat_flex .textile_stat:hover .box_boder_bottom{
    transform: scale(1);
}

.textile_stat_flex .textile_stat .box_boder_left{
    content: '';
    top: 40%;
    width: 3px;
    height: 70px;
    background: var(--red-font);
    left: 30%;
    z-index: -1;
    transition: 0.3s ease-in all;
    transition-delay: 0.9s;
    transform: scale(0);
    transform-origin: bottom;
}

.textile_stat_flex .textile_stat:hover .box_boder_left{
    transform: scale(1);
}

.textile_range_carousel .business_col .business_box_content{
    padding: 45px 40px 70px;
}

.textile_range_carousel .owl-dots{
    margin-top: 35px !important;
}

.textile_range_carousel .owl-dots .owl-dot span{
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}

.textile_range_carousel .owl-dots .owl-dot.active span{
    background: var(--white);
    border: 1px solid var(--red-font);
}

.manufacturing_range_products_area{
    position: relative;
    overflow: hidden;
}

.manufacturing_products_info{
    margin-top: 100px;
}

.manufacturing_products_info .left_manufacture_prod span{
    font-weight: 700;
}

.manufacturing_products_info .left_manufacture_prod .bold_txt{
    font-size: 96px;
}

.manufacturing_products_info .left_manufacture_prod p{
    font-weight: 400;
    line-height: 28px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.manufacturing_products_info .left_manufacture_prod .readmorebtn span{
    line-height: 21px;
    font-weight: 700;
}

.manufacturing_products_info .left_manufacture_prod .readmorebtn svg{
    color: var(--red-font);
    font-size: 30px;
    margin-top: 2px;
}

.left_manufacture_prod_carousel .item{
    text-decoration: none;
}

.left_manufacture_prod .item .manufacture_prod_item .manufacture_prod_icon img{
    max-height: 80px;
    width: unset;
    margin: 0 auto;
}

.left_manufacture_prod .item .manufacture_prod_item .manufacture_prod_texting{
    margin-top: 30px;
}
.left_manufacture_prod .item .manufacture_prod_item .manufacture_prod_texting h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: var(--black-color);
}

.left_manufacture_prod .item .manufacture_prod_item .manufacture_prod_texting p{
    text-align: center;
    color: var(--grey);
}

.left_manufacture_prod_carousel .owl-dots{
    display: block !important;
}

.left_manufacture_prod_carousel .owl-dots .owl-dot span{
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}


.left_manufacture_prod_carousel .owl-dots .owl-dot.active span{
    background: var(--white);
    border: 1px solid var(--red-font);
}

.manufacturing_range_products_area  .prod_range_bg{
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    right: -120px;
    z-index: -1;
}

.world_innovation_video video{
    display: block;
    margin-top: 45px;
}

/* next_generation_area */



.three_r_title{
    text-transform: uppercase;
}

.three_r_txt .bold_text_area h2{
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    font-weight: 700;
    color: #fff;
    font-size: 100px;
    line-height: 100px;
    opacity: 0.1;
}

.three_r_txt{
    position: relative;
    overflow: hidden;
}

.three_r_txt .bold_text_area h2:nth-child(2){
    text-align: right;
}

.three_r_txt .semibold_text_area{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 100%;
}

.three_r_txt .semibold_text_area h2{
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
}

.three_r_txt .semibold_text_area h2:nth-child(2){
    margin-left: 50px;
}

.petopoly_area{
    margin-left: auto;
    width: fit-content;
}

.petopoly_area .readmorebtn{
    padding-left: 10px;
    margin-top: 30px;
}

.petopoly_area .readmorebtn span{
    line-height: 21px;
    font-weight: 700;
}

.petopoly_area .readmorebtn svg{
    color: var(--red-font);
    font-size: 30px;
    margin-top: 2px;
}

.petopoly_txt{
    max-width: 255px;
    margin: 0 auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.petopoly_txt h2{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: #388e74;
}

.petopoly_txt p{
    font-size: 13px;
    color: #969696;
    line-height: 16px;
    text-align: center;
    font-weight: 300;
}

.petopoly_txt .readmorebtn{
    font-size: 12px;
    color: var(--red-font);
    text-align: center;
    margin-top: 8px;
    display: none;
}

.petopoly_txt p .green_txt{
    color: #388e74;
}

.petopoly_txt p sup{
    font-size: 11px;
}

.market_img{
    position: relative;
}

.market_img img{
    width: 100%;
}

.map_market_btn{
    position: absolute;
    left: 0;
    bottom: 9.115vw;
}

.map_market_btn .open_txt{
    font-size: 18px;
}

.map_market_btn .open_txt .close_line{
    display: none;
}

.map_market_btn .open_txt .open_line{
    display: inline-block;
}

.map_market_btn .open_txt.show_closeline .close_line{
    display: inline-block;
}

.map_market_btn .open_txt.show_closeline .open_line{
    display: none;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none){
    .market_loction_world {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}


.market_loction_world{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--red-font);
    padding: 35px 25px 25px;
    /* margin-top: -160px; */
    /* background: #fff; */
    background: rgba(255, 255, 255, 0.5);
    height: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s all;
}

.market_loction_world.open_market_location{
    height: 100%;
    transform: scaleY(1);
    margin-top: -8.333vw;
}

.market_loction_world .american_market{
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.market_loction_world .middleeast_market,
.market_loction_world .asian_market{
    flex: 0 0 14.5%;
    max-width: 14.5%;
}

.market_loction_world .europian_market{
    flex: 0 0 23%;
    max-width: 23%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.market_loction_world .europian_market h2{
    flex: 0 0 100%;
    max-width: 100%;
}

.market_loction_world .europian_market ul{
    flex: 0 0 50%;
    max-width: 50%;
}

.market_loction_world .indian_market{
    flex: 0 0 33%;
    max-width: 33%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.market_loction_world .indian_market h2{
    flex: 0 0 100%;
    max-width: 100%;
}

.market_loction_world .indian_market ul{
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.market_loction_world .american_market h2,
.market_loction_world .middleeast_market h2,
.market_loction_world .asian_market h2,
.market_loction_world .europian_market h2,
.market_loction_world .indian_market h2{
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.title_dot::after{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    display: block;
    background: #000;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.market_loction_world .american_market ul li,
.market_loction_world .middleeast_market ul li,
.market_loction_world .asian_market ul li,
.market_loction_world .europian_market ul li,
.market_loction_world .indian_market ul li{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding-left: 35px;
}

.red_dot::after{
    background: #ff0000;
}

.blue_dot::after{
    background: #0085FF;
}

.green_dot::after{
    background: #00FF47;
}

.purple_dot::after{
    background: #AD00FF;
}
.orange_dot:after{
    background: #FF5C00;
}

.open_market_list{
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background: #CB2229;
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    margin-top: 0.625vw;
    transform: rotate(-90deg);
    transition: 0.5s ease-in-out all;
}

.open_market_list.close_market_list{
    transform: rotate(-180deg);
}

.open_market_list svg{
    color: #fff;
    font-size: 32px;
}

.close_market_map{
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background: #CB2229;
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
}

.close_market_map svg{
    color: #fff;
    font-size: 24px;
}

/* Product CSS */
.product_banner_area{
    padding: 306px 0 206px;
    background: url('../img/product_banner_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.product_banner_area .product_banner_title{
    font-size: 96px;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    /* background-image: url(../img/text_bg.png);
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased; */
}

.product_banner_area .product_banner_title span{
    font-size: 64px;
    display: block;
    line-height: 74px;
}

.product_listing_area{
    padding: 16px 0 100px;
    background: url('../img/product_bg_vector.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product_breadcrumb{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.page_header{
    margin: 48px 0 60px;
    color: var(--black-color);
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
}


.product_breadcrumb a,
.product_breadcrumb span{
    font-size: 14px;
    color: var(--black-color);
    line-height: 28px;
}

.product_breadcrumb svg{
    margin: 0 20px;
}

.product_breadcrumb span{
    color: var(--red-font);
    font-weight: 700;
}


    .grid {
        list-style: none;
        display: flex;
        justify-content: space-between;
    }

    .grid .left_product_list{
        flex: 0 0 263px;
        max-width: 263px;
    }

    .grid .right_product_desc{
        flex: 0 0 100%;
        max-width: calc(100% - 323px);
    }

    .grid .right_product_desc .product_desc_panel.active{
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
    }

    .grid .right_product_desc .product_desc_panel{
        background: var(--red-font);
        padding: 35px 45px;
        -webkit-justify-content: space-between;
        -webkit-box-pack: justify;
        justify-content: space-between;
        display: none;
        position: relative;
        flex-wrap: wrap;
    }



    .grid .right_product_desc .product_desc_panel .right_area_img{
        flex: 0 0 155px;
        max-width: 155px;
    }

    .grid .right_product_desc .product_desc_panel .right_area_img img{
        position: absolute;
        top: 35px;
        right: 45px
    }

    .grid .right_product_desc .product_desc_panel .left_area_info{
        flex: 0 0 100%;
        max-width: calc(100% - 200px);
    }

    .grid .right_product_desc .product_desc_panel .left_area_info h3,
    .grid .right_product_desc .product_desc_panel .left_area_info h4{
        font-weight: 700;
        color: var(--white);
    }

    .grid .right_product_desc .product_desc_panel .left_area_info p.left_area_info_para{
        margin: 25px 0;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info p{
        font-weight: 400;
        color: var(--white);
        line-height: 28px;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info .characteristics_title{
        font-size: 24px;
        line-height: 34px;
        font-weight: 700;
        margin-bottom: 17px;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info ul{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info ul li{
        margin-bottom: 20px;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info ul li:nth-child(odd){
        flex: 0 0 55%;
        max-width: 55%;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info ul li:nth-child(even){
        flex: 0 0 40%;
        max-width: 40%;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info .product_desc_sub_title{
        font-weight: 700;
    }

    .grid .right_product_desc .product_desc_panel .left_area_info .product_desc_sub_title sup{
        font-size: 10px;
        color: var(--black-color);
    }


   .naccs .menu div {
    padding: 15px 20px 15px 20px;
    margin-bottom: 6px;
    background: var(--black-color);
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    font-weight: 700;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 100%;
    min-height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
   }

   .naccs .menu div::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 6px;
    background: var(--red-font);
    right: -6px;
    top: 0;
    display: block;
    transform: scaleY(0);
    transform-origin: center;
    transition: .3s all;
   }

   .naccs .menu div:hover::after{
    transform: scaleY(1);
   }

   .naccs .menu div img{
    max-width: 26px;
   }

   .naccs .menu div span{
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    display: block;
    margin-left: 15px;
   }

   .naccs .menu div:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   }

   .naccs .menu div span.light {
    height: 10px;
    width: 10px;
    position: absolute;
    top: 24px;
    left: 15px;
    /* background-color: ; */
    border-radius: 100%;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
   }

   .naccs .menu div.active span.light {
    /* background-color: ; */
    left: 0;
    height: 100%;
    width: 3px;
    top: 0;
    border-radius: 0;
   }

   .naccs .menu div.active {
    background: var(--red-font);
   }

   ul.nacc {
    position: relative;
    height: 0px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: .5s all cubic-bezier(0.075, 0.82, 0.165, 1);
   }

   ul.nacc li {
    opacity: 0;
    transform: translateX(50px);
    position: absolute;
    list-style: none;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
   }

   ul.nacc li.active {
    transition-delay: .3s;
    z-index: 2;
    opacity: 1;
    transform: translateX(0px);
   }

   ul.nacc li p {
    margin: 0;
   }


   /* Sector CSS */
   .sector_banner_area{
    padding: 306px 0 206px;
    background: url('../img/sector_banner_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
   }

   .sectors_desc_panel{
    position: relative;
    background: transparent !important;
    padding: 0 !important;
   }

   .grid .right_product_desc .product_desc_panel.active.sectors_desc_panel.active{
    display: block !important;
   }

   .sectors_desc_panel .sectors_img_icon{
    position: relative;
   }

   .sectors_desc_panel .sectors_img_icon .sector_main_img{
    display: block;
    width: 90%;
   }

   .sectors_desc_panel .sectors_img_icon .sector_icon{
    max-width: 100%;
    position: absolute;
    top: 40px;
    right: 0;
   }

   .sectors_para{
    position: absolute;
    right: 0;
    background: rgba(203, 34, 41, 0.8);
    width: 85%;
    padding: 50px 30px;
    top: 80%;
   }

   .sectors_para p{
    line-height: 24px;
    color: #fff;
   }

   /* Floating Form */

   .help_form_area{
    min-height: 65px;
    overflow-y: hidden;
   }

   .help_form_area.overflow_unset{
    overflow-y: unset;
   }

   .help_form_area .content_container{
    position: relative;
   }

   .help_form_floating{
    position: absolute;
    right: 0;
    bottom: -728px;
    /* bottom: -67.72093023255815vh; */
    background: var(--white);
    max-width: 516px;
    max-width: 516px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    z-index: 1;
    /* transition: 0.5s all; */
   }

   .help_form_floating.position_form{
    bottom: 0;
   }

    .help_form_floating .help_form_heading{
        background: var(--red-font);
        padding: 20px 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        cursor: pointer;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }

    .help_form_floating .help_form_heading svg{
        font-size: 24px;
        color: var(--white);
        transition: 0.5s ease-in-out all;
    }

    .help_form_floating .help_form_heading svg.rotate{
        transform: rotate(180deg);
    }

    .help_form_floating .help_form_heading span{
        font-size: 24px;
        color: var(--white);
        padding-left: 30px;
    }

    .help_form_floating .help_form_content{
        padding: 40px;
    }

    .help_form_floating  .help_form_content p{
        color: var(--red-font);
        text-transform: uppercase;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .help_form_floating  .help_form_content h3{
        font-size: 40px;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 55px;
    }

    .help_form_floating  .help_form_content form .form_element:not(:last-child){
        margin-bottom: 30px;
    }

    .help_form_floating  .help_form_content form .form_element input,
    .help_form_floating  .help_form_content form .form_element textarea{
        width: 100%;
        border: 1px solid var(--grey);
        outline: none;
        box-shadow: none;
        padding: 13px 25px;
        color: var(--black-color);
    }

    .help_form_floating  .help_form_content form .form_element input::placeholder,
    .help_form_floating  .help_form_content form .form_element textarea::placeholder{
        color: var(--black-color);
    }

    .help_form_floating  .help_form_content form .form_element input{
        height: 46px;
    }


    .help_form_floating  .help_form_content form .form_element button.submit_btn{
        width: 100%;
        height: 43px;
        border: none;
        box-shadow: none;
        outline: none;
        background: var(--red-font);
        color: var(--white);
        font-weight: 500;
    }

    /* About Us CSS */
    .about_group_area{
        /* margin-top: -5.208vw; */
        margin-top: -12.30232558139535vh;
    }
    .about_banner_area{
        height: 85vh;
        /* margin-top: -80px; */
    }

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

    .about_group_area .about_group_flex{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .about_group_area .about_group_flex .left_about_group{
        flex: 0 0 30%;
        max-width: 30%;
    }

    .about_group_area .about_group_flex .left_about_group .about_group_content .heading{
        font-size: 64px;
        font-weight: 700;
        color: var(--white);
        line-height: 100px;
    }

    .about_group_area .about_group_flex .left_about_group .about_group_content .sub_heading{
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        margin-bottom: 3.7209302325581395vh;
    }

    .about_group_area .about_group_flex .left_about_group .about_group_content .about_content_para{
        line-height: 28px;
    }

    .about_group_area .about_group_flex .right_about_group{
        flex: 0 0 60%;
        max-width: 60%;
        position: relative;
    }

    .about_group_area .about_group_flex .right_about_group .about_yt_video_thumbnail{
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about_group_area .about_group_flex .right_about_group .yt_play_btn{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }

    .about_timeline_area{
        /* position: relative; */
    }

    .about_timeline_area .sec_header .sub_title{
        margin-bottom: 24px;
    }

    .about_timeline_yr{
        margin-top: 65px;
        border-top: 14px solid var(--red-font);
        /* position: unset; */
    }

    .about_timeline_area .about_timeline_yr img{
        width: unset;
    }

    .about_timeline_area .about_timeline_yr .item h4{
        margin: 0 auto;
        width: 80px;
        border: 1px solid var(--red-font);
        padding: 6px 0;
        text-align: center;
        margin-bottom: 8px;
        margin-top: 35px;
        position: relative;
    }

    .about_timeline_area .about_timeline_yr .item h4::before{
        content: '';
        position: absolute;
        width: 14px;
        height: 33px;
        background: var(--red-font);
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline_wrapper{
        max-width: 90%;
        margin-left: auto;
    }

    .about_timeline_area .about_timeline_yr .item img{
        display: block;
        margin: 0 auto;
        opacity: 0;
        transform: scaleY(0);
        transition: 0.3s all;
        transform-origin: top;
    }

    .about_timeline_area .about_timeline_yr .item:hover img{
        opacity: 1;
        transform: scaleY(1);
    }

    .about_timeline_area .about_timeline_yr .item p{
        font-size: 20px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        margin-top: 8px;
        transform: translateY(-70px);
    }

    .about_timeline_area .about_timeline_yr .item:hover p{
        transition: 0.3s all;
        transform: translateY(0);
    }

    .about_timeline_area .about_timeline_yr .owl-nav{
        position: absolute;
        width: 96%;
        margin: 0 auto;
        text-align: right;
        top: -8.441860465116279vh;
    }

    .about_timeline_area .about_timeline_yr .owl-nav button:hover{
        background: transparent;
    }


    .about_timeline_area .about_timeline_yr .owl-nav button.owl-prev{
        margin-right: 75px;
    }

    .about_timeline_area .about_timeline_yr .owl-nav button svg{
        font-size: 32px;
        color: rgba(46, 46, 46, 0.70);;
    }

    .about_timeline_area .about_timeline_yr .owl-nav button:hover svg{
        color: var(--red-font);
    }

    .about_us_team_area .sec_header .sub_title {
        margin-bottom: 24px;
    }

    .team_member_grid{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 30px;
    }


    .team_member_grid .team_member_container{
        padding: 15px;
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 45px;
    }

    .team_member_grid .team_member_container .team_member_box .team_member_img img{
        background: #D9D9D9;
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .team_member_grid .team_member_container .team_member_box .team_member_content h3{
        font-size: 24px;
        line-height: 29px;
        color: #2c2c2c;
        font-weight: 500;
        margin: 12px 0 6px;
    }



    .awards_accreditations_area .sec_header{
        padding-bottom: 20px;
    }

    .awards_accrediation_flex{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .awards_accrediation_flex .award_accrediation_box{
        flex: 0 0 20%;
        max-width: 20%;
        box-shadow: 2px 2px 5px var(--light-grey),
                    -0.5px -0.5px 1px var(--light-grey);
        padding: 25px 20px 20px;
    }

    .award_accrediation_img{
        text-align: center;
    }

    .award_accrediation_txt{
        margin-top: 19px;
    }

    .award_accrediation_txt p{
        font-weight: 500;
        line-height: 20px;
        text-align: center;
    }

    .csr_middle_content{
        margin-top: 45px;
        background: url('../img/about_us/csr_sustainability_bg.png');
        background-size: cover;
        background-position: center;
        padding: 100px 0 120px;
    }

    .csr_middle_content h2{
        font-size: 48px;
        line-height: 50px;
        /* width: max-content; */
        text-align: center;
        font-weight: 700;
        margin: 0 auto 50px;
        position: relative;
        color: #fff;
    }

    .csr_middle_content p{
        max-width: 767px;
        margin: 0 auto;
        color: #fff;
        line-height: 25px;
        text-align: center;
    }

    .csr_middle_content p b{
        font-weight: 600;
        font-size: 26px;
        display: block;
    }

    .csr_middle_content h2::after{
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        left: 50%;
        bottom: -15px;
        background: #fff;
        display: block;
        transform: translateX(-50%);
    }

    .csr_grid{
        background: #fff;
        padding: 54px 75px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        margin: 0 -40px;
        box-shadow: 2px 2px 5px var(--light-grey), -0.5px -0.5px 1px var(--light-grey);
        margin-top: -6.511627906976744vh;
        margin-bottom: 30px;
    }

    .csr_grid .csr_container{
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 40px;
        text-align: center;
    }

    .csr_grid .csr_container:not(:last-child){
        border-right: 1px solid var(--light-grey)
    }

    .csr_grid .csr_container .csr_box p{
        margin-bottom: 30px;
        line-height: 25px;
    }

    /* Contact CSS */

    .contact_us_banner {
        overflow: hidden;
    }

    .contact_us_banner img{
        width: 100vw;
    }

    .contact_us_details_area{
        padding: 40px 0 120px;
    }

    .contact_us_flex{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
    }

    .contact_us_flex .left_details_area{
        flex: 0 0 35%;
        max-width: 35%;
        padding-right: 98px;
    }

    .contact_us_flex .right_details_area{
        flex: 0 0 65%;
        max-width: 65%;
    }

    .contact_us_flex .left_details_area h2{
        font-size: 48px;
        line-height: 55px;
        font-weight: 700;
        margin-bottom: 28px;
    }

    .contact_us_flex .left_details_area p{
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        margin-bottom: 38px;
    }

    .call_email_area{
        margin-bottom: 16px;
    }

    .call_email_area img{
        margin-right: 16px;
    }

    .call_email_area a{
        font-size: 24px;
        line-height: 30px;
        font-weight: 400;
        color: #000;
    }

    .contact_us_flex .right_details_area iframe{
        width: 100%;
    }

    .contact_form_area .sec_header .title{
        text-align: left;
        margin-top: 15px;
    }

    .myContactForm{
        padding-top: 60px;
    }

    .myContactForm .form_row{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .myContactForm .form_row .form_element{
        flex: 0 0 50%;
        max-width: calc(50%  - 37px);
        margin-bottom: 28px;
    }

    .myContactForm .form_row .form_element label{
        margin-bottom: 20px;
        color: var(--black-color);
        opacity: 0.5;
    }

    .myContactForm .form_row .form_element.msg_elemnent{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .myContactForm .form_row .form_element input,
    .myContactForm .form_row .form_element textarea{
        width: 100%;
        background: #eaeaea;
        border: none;
        box-shadow: none;
        outline: none;
        padding: 16px;
    }

    .myContactForm .form_row .form_element input{
        height: 52px;
    }

    .contact_submit_btn{
        width: 160px;
        height: 45px;
        background: var(--red-font);
        color: var(--white);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
        border: none;
        box-shadow: none;
        outline: none;
    }

/* Newsroom CSS */
.newsroom_banner{
    overflow: hidden;
    position: relative;
    /* top: -80px; */
}
.newsroom_banner img{
    width: 100vw;
    display: block;
}

.latest_news_container{
    padding-top: 73px;
    border-bottom: 2px solid #e8e8e8;
}

.latest_news_container .latest_news_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.latest_news_container .latest_news_flex .lastest_news_text{
    flex: 0 0 35%;
    max-width: 35%;
}

.latest_news_container .latest_news_flex .lastest_news_img{
    flex: 0 0 60%;
    max-width: 60%;
}

.latest_news_container .latest_news_flex .lastest_news_img img{
    width: 100%;
}

.latest_news_container .latest_news_flex .lastest_news_text .latest_news_date{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black-color);
    opacity: 0.5;
    margin-bottom: 18px;
}

.latest_news_container .latest_news_flex .lastest_news_text .latest_news_heading{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--black-color);
    padding-right: 100px;
    margin-bottom: 30px;
}

.latest_news_container .latest_news_flex .lastest_news_text .latest_news_para{
    padding-right: 30px;
    margin-bottom: 25px;
    line-height: 25px;
}

.news_grid{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 0 -15px;
    padding-top: 75px;
}

.news_grid .new_column{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    margin-bottom: 65px;
}

.news_grid .new_column .news_box .news_img{
    max-height: 312px;
    overflow: hidden;
}

.news_grid .new_column .news_box .news_img img{
    width: 100%;
    object-fit: cover;
}

.news_grid .new_column .news_box .new_content .news_date{
    color: var(--black-color);
    opacity: 0.5;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin: 16px 0 9px;
}

.news_grid .new_column .news_box .new_content .news_text{
    color: var(--black-color);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    text-decoration: underline;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3;
   -webkit-box-orient: vertical;
}

.view_more_btn{
    width: 160px;
    height: 45px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    background: var(--red-font);
    color: var(--white);
    border: none;
    outline: none;
    margin: 15px auto 0;
}

/* Events CSS */

.dodhia_events_list{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 73px;
}

.dodhia_event_left{
    flex: 0 0 48%;
    max-width: 48%;
}

.dodhia_event_left h3{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 37px;
}

.dodhia_event_left ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.dodhia_event_left ul li{
    flex: 0 0 50%;
    max-width: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 32px;
}

.dodhia_event_left ul li svg{
    margin-top: 5px;
}

.dodhia_event_left ul li p span{
    display: block;
}

.dodhia_event_left ul li p span:nth-child(1){
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 6px;
}

.dodhia_event_right{
    flex: 0 0 45%;
    max-width: 45%;
}

.dodhia_event_right img{
    display: block;
}

.dodhia_past_events{
    max-width: 96.5%;
    margin-left: auto;
    padding-top: 75px !important;
    margin-bottom: 25px;
}

.dodhia_past_events .item{
    position: relative;
}
.dodhia_past_events .item h3 {
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 4.651162790697675vh;
    left: 1.1979166666666667vw;
    background-image: linear-gradient(45deg, #ed3237, transparent);
}

/* .dodhia_past_events .item p{   OLD
    color: #fff;
    position: absolute;
    bottom: 3.7209302325581395vh;
    left: 1.1979166666666667vw;
    line-height: 20px;
    width: 90%;
} */

.dodhia_past_events .item p {  /*   17 Feb 2024  */
        color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: black;
        opacity: 0.65;
        padding: 18px 25px;
        height: 60px;
        text-align: left;
        font-size: 25px;
    }

.dodhia_past_events .owl-nav{
    margin-top: 0;
    max-width: 96%;
    width: 100%;
    position: absolute;
    top: -6.441860465116279vh;
    text-align: right;
}

.dodhia_past_events .owl-nav button:hover{
    background: transparent !important;
}

.dodhia_past_events .owl-nav button svg{
    font-size: 32px;
    color: rgba(46, 46, 46, 0.70);
}

.dodhia_past_events .owl-nav button.owl-prev{
    margin-right: 75px;
}

.dodhia_past_events .owl-nav button:hover svg{
    color: var(--red-font);
}

/* Carrers CSS */

.career_info_area .career_info_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 40px;
}

.career_info_area .career_info_flex .left_career_info,
.career_info_area .career_info_flex .right_career_info{
    flex: 0 0 40%;
    max-width: 40%;
}

.career_info_area .career_info_flex .left_career_info h3{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 29px;
}

.career_info_area .career_info_flex .left_career_info h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 13px;
}

.career_info_area .career_info_flex .left_career_info p{
    line-height: 20px;
}

.career_info_area .career_info_flex .left_career_info p b{
    font-weight: 700;
}

.career_info_area .career_info_flex .right_career_info img{
    width: 100%;
}

.myContactForm .form_row .form_element.file_upload_element{
    flex: 0 0 100%;
    max-width: 100%;
}

.myContactForm .form_row .form_element.file_upload_element input{
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 140px;
    cursor: pointer;
}

.myContactForm .form_row .form_element.file_upload_element .custom_file_upload{
    height: 140px;
    border: 1px dashed #000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    background: #eaeaea;
}

.myContactForm .form_row .form_element.file_upload_element .custom_file_upload p{
    color: var(--black-color);
    opacity: 0.5;
    line-height: 20px;
    margin-bottom: 8px;
}
.myContactForm .form_row .form_element.file_upload_element .custom_file_upload button{
    width: 160px;
    height: 40px;
    background: var(--red-font);
    color: #fff;
    border: none;
    outline: none;
    box-shadow: none;
}

.terms_condition_element{
    flex: 0 0 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.terms_condition_element input{
    height: 20px !important;
    width: 20px !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
}

.terms_condition_element label{
    margin-bottom: 0 !important;
    color: #000 !important;
    opacity: 1 !important;
    margin-left: 23px;
}

.terms_condition_element label b,
.terms_condition_element label a{
    font-weight: 700;
    color: #000 !important;
}

.career_submit_mail{
    margin: 80px auto;
}

.career_footer_thumbnail_area{
    overflow: hidden;
    position: relative;
    margin-bottom: 95px;
}

.career_footer_thumbnail_area img{
    width: 100vw;
}

/* .career_footer_thumbnail_area{
    padding: 88px 0 185px;
    background: url('../img/career_footer_thumbnail.png');
    background-size: cover;
    background-repeat: no-repeat;
} */

.career_footer_thumbnail_area .content_container{
    position: absolute;
    top: 88px;
    left: 10%;
}

.career_footer_thumbnail_area h2{
    font-size: 64px;
    line-height: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 26px;
}

.career_footer_thumbnail_area p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 45px;
}

.our_journey{
    width: 160px;
    height: 40px;
    display: block;
    background: var(--red-font);
    color: #fff;
    border: none;
    outline: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}


.chemical_banner_area{
    height: 100vh;
    /* overflow-x: hidden; */
    position: relative;
}

.chemical_banner_middle_img{
    position: absolute;
    z-index: 2;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    /* transform: translateY(-10vw); */
    /* transform: translate(-50%,-100%); */
    max-width: 550px;
    opacity: 1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)1s;
}

.line_one_img{
    width: 5vw;
    height: 5vw;
    position: absolute;
    bottom: -4vw;
    /* top: 37vh; */
    z-index: 2;
    transform: translateY(-50%) scale(0);
    opacity: 0;
}

.line_two_img{
    width: 5vw;
    height: 5vw;
    position: absolute;
    bottom: -4vw;
    z-index: 2;
    transform: translateY(-50%) scale(0);
    opacity: 0;
}

.line_one_first_img{
    left: 25vw;
}

.line_one_second_img{
    left: 35vw;
}

.line_one_third_img{
    right: 35vw;
}

.line_one_fourth_img{
    right: 25vw;
}

.line_two_first_img{
    left: 15vw;
    bottom: 3vw;
}

.line_two_second_img{
    left: 25vw;
}

.line_two_third_img{
    right: 25vw;
}

.line_two_fourth_img{
    right: 15vw;
    bottom: 3vw;
}

.svglineformation.svglineformationone{
    position: fixed;
    top: 37%;
    transform: translateY(-50%);
    width: 100%;
}

.chemical_banner_area svg.lineSvgOne{
    width:100%;
    height: 100%;
}

.svglineformation.svglineformationtwo{
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    width: 100%;
}

.chemical_banner_area svg.lineSvgTwo{
    height: 100%;
    width: 100%;
}

.pathOneOverlap{
    display: block;
    width: 100vw;
    height: 100%;
    min-height: 157px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: #fff;
    transform-origin: right;
}

.pathTwoOverlap{
    display: block;
    width: 100vw;
    height: 100%;
    min-height: 157px;
    position: absolute;
    top: 50%;
    background: #fff;
    transform: translate(0, -50%);
    transform-origin: left;
}


.chemical_banner_area .marquee_one{
    top: 16.5vh;
}

.chemical_banner_area .marquee_two{
    top: 75vh;
}

.chemical_intro_area{
    padding-top: 70px;
}

.chemical_intro_area p{
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.research_development_flex{
    position: relative;
}

.research_development_flex .research_dev_top_section,
.research_development_flex .research_dev_bottom_section{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.research_development_flex .research_dev_top_section .top_sec_para,
.research_development_flex .research_dev_bottom_section .top_sec_para,
.research_development_flex .research_dev_top_section .img_container,
.research_development_flex .research_dev_bottom_section .img_container{
    flex: 0 0 38%;
    max-width: 38%;
}

.research_development_flex .research_dev_top_section .middle_text_container,
.research_development_flex .research_dev_bottom_section .middle_text_container{
    flex: 0 0 24%;
    max-width: 24%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center; */
    padding-top: 60px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.research_development_flex .research_dev_top_section .img_container img,
.research_development_flex .research_dev_bottom_section .img_container img{
    display: block;
}

.research_development_flex .research_dev_top_section .img_container img:nth-child(1),
.research_development_flex .research_dev_bottom_section .img_container img:nth-child(1){
    width: 100%;
}

.research_development_flex .research_dev_top_section .img_container img:nth-child(2),
.research_development_flex .research_dev_bottom_section .img_container img:nth-child(2){
    margin: 19px auto 0;
}

.research_development_flex .research_dev_top_section .middle_text_container h2,
.research_development_flex .research_dev_bottom_section .middle_text_container h2{
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    color: var(--red-font);
    text-align: center;
}

.research_development_flex .research_dev_top_section .middle_text_container p,
.research_development_flex .research_dev_bottom_section .middle_text_container p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black-color);
    text-align: center;
    margin-bottom: 10px;
}

.research_development_flex .research_dev_top_section .top_sec_para p:nth-child(1),
.research_development_flex .research_dev_bottom_section .top_sec_para p:nth-child(1){
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 22px;
    text-align: justify;
}

.research_development_flex .research_dev_top_section .top_sec_para p:nth-child(2),
.research_development_flex .research_dev_bottom_section .top_sec_para p:nth-child(2){
    line-height: 28px;
    text-align: justify;
}

.research_development_flex .research_dev_bottom_section{
    padding-top: 80px;
    flex-direction: row-reverse;
}

.research_dev_molecule_one,
.research_dev_molecule_two{
    position: absolute;
}

.research_dev_molecule_one{
    right: -5.208333333333333vw;
    top: 3.255813953488372vh
}

.chemical_research_development_area{
    position: relative;
    /* overflow-x: hidden; */
}

.research_dev_molecule_two{
    left: 0;
    bottom: 0;
}

.dodhia_txt_img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.research_dev_dot_molecule{
    top: 73% !important;
    transform: translateY(-50%);
    right: 0 !important;
    opacity: 0.6;
    width: 55vw;
}

.world_innovation_area{
    position: relative;
    z-index: 1;
}

.world_innovation_area img{
    display: block;
    width: 100%;
}

.services_list{
    padding-top: 58px;
}

.service_row{
    position: relative;
}

.service_row .service_img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.service_row .service_content{
    max-width: 86%;
    margin-left: auto;
    background: #f3f3f3;
    padding: 55px 134px 134px 435px;
}

.service_row .service_content h3{
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    color: #2e2e2e;
    width: max-content;
    margin-bottom: 40px;
}

.service_row .service_content p{
    line-height: 25px;
    margin-bottom: 20px;
}

.service_row .service_content .readmorebtn span {
    line-height: 21px;
    font-weight: 700;
}

.service_row .service_content .readmorebtn svg {
    color: var(--red-font);
    font-size: 30px;
    margin-top: 2px;
}

.service_row:nth-child(2) .service_img{
    left: unset;
    right: 0;
}

.service_row:nth-child(2) .service_content{
    margin-left: unset;
    margin-right: auto;
    padding: 55px 435px 134px 134px;
}

.service_row:not(:last-child){
    margin-bottom: 58px;
}

.Specialty_chemicals_text{
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 45px;
}

.Toll_manufacturing_text{
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 45px;
}

.dodhia_chemical_service_area{
    position: relative;
}

.service_molecule_img{
    position: absolute;
    left: 0;
    top: -15%;
    z-index: 0;
}

.innovate_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.innovate_flex .innovate_img{
    flex: 0 0 40%;
    max-width: 40%;
}

.innovate_flex .innovate_img img{
    width: 100%;
}

.innovate_flex .innovate_content{
    flex: 0 0 49%;
    max-width: 49%;
}

.innovate_flex .innovate_content h2{
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    color: #2e2e2e;
    width: max-content;
    margin-bottom: 40px;
}

.innovate_flex .innovate_content p{
    line-height: 25px;
    margin-bottom: 20px;
}

.innovate_flex .innovate_content a span{
    line-height: 21px;
    font-weight: 700;
}

.innovate_flex .innovate_content a svg{
    color: var(--red-font);
    font-size: 30px;
    margin-top: 2px;
}

.dodhia_innovate_area .innovate_carousel .owl-dots .owl-dot.active span {
    background: var(--white);
    border: 1px solid var(--red-font);
}

.dodhia_innovate_area .innovate_carousel .owl-dots .owl-dot span {
    height: 15px;
    width: 15px;
    background: var(--light-grey);
    margin: 0 10px;
}

/* .dodhia_innovate_area .innovate_carousel .owl-dots .owl-dot:hover{
    background: transparent !important;
} */

/* Chemical Product CSS */

.chemical_product_banner{
    background: url('../img/chemical_product_banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 306px 0 206px;
}

.chemical_product_listing_area{
    background: unset;
    position: relative;
}

.chemical_product_background{
    position: absolute;
    top: 48px;
    left: 0;
    z-index: -1;
}

.chem_formula{
    padding: 20px 0 8px;
}

.chemical_product_listing_area .left_area_info_para{
    padding-left: 33px;
}

.properties_heading{
    padding-left: 33px;
    margin-bottom: 40px;
    margin-top: 68px;
}

.properties_list{
    display: block !important;
    padding-left: 33px;
}

.properties_list li{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.properties_list li h4{
    flex: 0 0 45%;
    max-width: 45%;
}

.properties_list li p{
    flex: 0 0 55%;
    max-width: 55%;
    text-align: left;
}

.grid .right_product_desc .product_desc_panel .left_area_info ul.properties_list li,
.grid .right_product_desc .product_desc_panel .left_area_info ul.properties_list li:nth-child(odd){
    max-width: 100%;
}

.grid .right_product_desc .product_desc_panel .left_area_info ul.para_list{
    display: block;
    padding-left: 51px;
}

.grid .right_product_desc .product_desc_panel .left_area_info ul.para_list li,
.grid .right_product_desc .product_desc_panel .left_area_info ul.para_list li:nth-child(odd){
    max-width: 100%;
    color: #fff;
}

/* Service Pages CSS */
.service_banner_area{
    padding: 306px 0 206px;
    background: url('../img/chemical_service_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.chemical_sector_banner{
    padding: 306px 0 206px;
    background: url('../img/chemical_sector_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service_listing_area{
    padding-bottom: 50%;
}

.service_listing_area .sectors_para ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* .service_listing_area .sectors_para{
    position: relative;
} */

.service_listing_area .sectors_para ul li{
    flex: 0 0 50%;
    max-width: 50%;
    color: #fff;
    margin-bottom: 20px;
}

.service_listing_area .sectors_para img{
    max-height: 45px;
    position: absolute;
    bottom: -45px;
    left: 0;
}

/* Plastic Recycling */
.our_recycling_certificate_area .content_container{
    overflow: hidden;
}

.our_recycling_certificate_area .certification_carousel{
    margin-top: 100px;
}

.plastic_recycling_banner{
    padding: 230px 0 140px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 1;
    transition: 0.5s ease-in-out all;
    transform: translateY(0);
}

.plastic_recycling_banner.showHide{
    z-index: 0;
    opacity: 0;
    transform: translateY(-50vh);
}

.plastic_recycling_banner .plastic_recycling_banner_content h2{
    font-size: 120px;
    line-height: normal;
    font-weight: 400;
    color: var(--black-color);
}

.plastic_recycling_banner .plastic_recycling_banner_content h2 span{
    font-size: 140px;
    line-height: normal;
    font-weight: 700;
}

.plastic_recycling_banner .banner_symbol{
    /* width: 10.521vw;
    height: 10.521vw; */
    position: absolute;
    top: 130px;
    right: 8vw;
}

.plastic_recycle_text_area h2{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

.plastic_recycling_banner .banner_bottle{
    width: 22.500vw;
    height: 28.542vw;
    position: absolute;
    bottom: -25vh;
    right: 11vw
}

.how_it_works_area .how_it_works_content{
    margin-top: 60vh;
    position: relative;
    overflow-x: hidden;
}

.how_it_works_area .how_it_works_content .black_vector_01{
    height: 100vh;
    width: 100vw;
    max-width: unset;
}

.how_it_works_area .how_it_works_content .how_it_works_txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how_it_works_txt{
    width: 100%;
}

.how_it_works_txt h3{
    font-size: 120px;
    line-height: 94.5%;
    color: #fff;
    text-align: center;
    margin-bottom: 5.208vw;
}

.how_it_works_txt h3 span{
    font-size: 64px;
    line-height: normal;
    line-height: 94.5%;
}

.how_it_works_txt .scroll_btn{
    text-align: center;
    cursor: pointer;
    display: block;
}

.how_it_works_txt .scroll_btn svg{
    width: 39px;
    height: 25.5px;
}

.how_it_works_txt .scroll_btn span{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
}


.plastic_recycle_text_area{
    padding: 6.208vw 0;
}

.plastic_recycle_para{
    line-height: 50px;
    text-align: center;
}

.plastic_recycle_stepone_area{
    height: 100vh;
    position: relative;
}

.plastic_recycle_stepone_area .step_one_content p,
.plastic_recycle_steptwo_area .step_two_content p,
.plastic_recycle_stepthree_area .step_three_content p,
.plastic_recycle_stepfour_area .step_four_content p,
.plastic_recycle_stepfive_area .step_five_content p,
.plastic_recycle_stepsix_area .step_six_content p{
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--black-color);
    position: relative;
    z-index: 1;
}

.plastic_recycle_steptwo_area .step_two_content p{
    text-align: right;
}

.plastic_recycle_stepthree_area .step_three_content p{
    text-align: left;
    color: #fff;
}

.plastic_recycle_stepfour_area .step_four_content p{
    color: var(--black-color);
    text-align: right;
}

.plastic_recycle_stepfive_area .step_five_content p{
    color: var(--white);
}

.plastic_recycle_stepsix_area .step_six_content p{
    color: var(--black-color);
    text-align: right;
}


.plastic_recycle_stepone_area .step_one_content h3,
.plastic_recycle_steptwo_area .step_two_content h3,
.plastic_recycle_stepthree_area .step_three_content h3,
.plastic_recycle_stepfour_area .step_four_content h3,
.plastic_recycle_stepfive_area .step_five_content h3,
.plastic_recycle_stepsix_area .step_six_content h3{
    font-size: 120px;
    font-weight: 600;
    line-height: normal;
    color: var(--black-color);
    position: relative;
    z-index: 1;
}

.plastic_recycle_steptwo_area .step_two_content h3{
    text-align: right;
    color: var(--black-color);
}

.plastic_recycle_stepthree_area .step_three_content h3{
    text-align: left;
    color: #fff;
}

.plastic_recycle_stepfour_area .step_four_content h3{
    color: var(--black-color);
    text-align: right;
}
.plastic_recycle_stepfive_area .step_five_content h3{
    color: var(--white);
}
.plastic_recycle_stepsix_area .step_six_content h3{
    color: var(--black-color);
    text-align: right;
}


/* Process One Start */

.bottle_collection{
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    max-width: 100%;
    opacity: 1;
}

.left_big_bottle,
.right_big_bottle{
    position: absolute;
    top: 70%;
    opacity: 0;
    transform: translateY(-50%);
}

.left_big_bottle{
    left: 0vw;
}
.right_big_bottle{
    right: 0vw;
}


.left_small_bottle_one,
.left_small_bottle_two,
.right_small_bottle_one,
.right_small_bottle_two{
    position: absolute;
    top: 70%;
    max-width: 100%;
    opacity: 0;
}

.left_small_bottle_two{
    left: 10vw;
    transform: translateY(-50%);
}

.right_small_bottle_two{
    right: 10vw;
    transform: translateY(-50%) rotate(180deg);
}

/* .left_small_bottle_one{
    left: 12vw;
    transform: translateY(-50%) rotate(-20deg);
} */


/* .right_small_bottle_one{
    right: 12vw;
    transform: translateY(-50%) rotate(20deg);
} */

.step_one_content{
    position: relative;
    top: 40vh;
    opacity: 1;
    z-index: 9;
}



/* Process One End */

/* Process Two Start */

.plastic_recycle_steptwo_area{
    height: 100vh;
    position: relative;
}

.bottle_sepration,
.bottle_sepration,
.bottle_sepration,
.bottle_sepration{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    opacity: 0;
}

.bottle_sepration_01{
    top: 0;
}

.bottle_sepration_02{
    top: 20%;
}

.bottle_sepration_03{
    top: 40%;
}

.bottle_sepration_04{
    bottom: -100px;
}

.bottle_sepration_05{
    bottom: 0;
}

.step_two_content{
    position: relative;
    top: 40vh;
    opacity: 1;
}

/* Process Two End */

/* Process Three Start */

.plastic_recycle_stepthree_area{
    height: 100vh;
    position: relative;
}

.black_vector_02{
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}

.crushing_bottle_01,
.crushing_bottle_02,
.crushing_bottle_03,
.crushing_bottle_04{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    max-width: 100%;
    opacity: 0;
}

.crushing_bottle_01{
    top: 10%;
}

.crushing_bottle_02{
    top: 28%;
    left: 53%;
}

.crushing_bottle_03{
    top: 42%;
    left: 54%;
}

.crushing_bottle_04{
    top: 55%;
    left: 49%;
    max-width: 50%;
    /* width: 5vw; */
}

.crushing_wheel_01,
.crushing_wheel_02{
    position: absolute;
    top: 83%;
    transform: translateY(-50%) rotate(0);
    max-width: 100%;
    /* width: 30vw; */
    z-index: 1;
    opacity: 0;
}

.crushing_wheel_01{
    left: 48%;
}

.crushing_wheel_02{
    right: 51%;
}

.crushing_crystal{
    position: absolute;
    top: 115%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    left: 40%;
    z-index: 0;
    opacity: 0;
}

.step_three_content{
    position: relative;
    top: 40vh;
    opacity: 1;
}

/* Process Three End */

/* Process Four Start */

.plastic_recycle_stepfour_area{
    height: 100vh;
    position: relative;
    z-index: 1;
}


.plastic_recycle_stepfour_area .step_four_content{
    position: relative;
    top: 40vh;
    /* right: 3.5%; */
    opacity: 1;
    z-index: 21;
}


.plastic_recycle_stepfour_area .step_four_img_area .washing_img_02{
    position: absolute;
    top: 8%;
    left: 10vw;
    z-index: 2;
    opacity: 0;
    max-width: 51.667vw;
}

.plastic_recycle_stepfour_area .step_four_img_area .washing_img_03{
    position: absolute;
    bottom: -30%;
    left: 49vw;
    z-index: 3;
    transform: rotate(90deg);
    opacity: 0;
}

.step_four_crystal{
    max-width: 20vw;
    top: -55px;
    position: absolute;
    left: 18vw;
    z-index: 20;
    opacity: 0;
}

/* Process Four End */

/* Process Five Start */

.plastic_recycle_stepfive_area{
    height: 100vh;
    position: relative;
}


.plastic_recycle_stepfive_area .step_five_content{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 1;
}

.black_vector_03{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.melting_machine{
    position: absolute;
    right: 3.5%;
    max-width: 67.083vw;
    z-index: 2;
    opacity: 0;
}

#step_five_mobile{
    display: none;
}

.melting_machine_mobile{
    opacity: 0;
}


/* Process Five End */

/* Process Six Start */

.plastic_recycle_stepsix_area{
    height: 100vh !important;
    position: relative;
}

.plastic_recycle_stepsix_area .step_six_content{
    position: relative;
    top: 50vh;
    /* right: 3.5%; */
    opacity: 1;
    z-index: 3;
    /* transform: translateY(40vh);
    opacity: 0;
    transition: 0.5s ease-in-out all; */
}


.reuse_bottle{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0;
    max-width: 6.771vw;
    /* left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.5s ease-in-out all; */
}

.reuse_bottle_02{
    left: 5vw;
}

.reuse_bottle_03{
    left: 15vw;
}

.step_six_img_area{
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    transition: 0.5s;
}

.mobile_reuse_bottle_area{
    display: none;
}

/* Process Six End */

.our_recycling_products_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 56px;
}

.our_recycling_products_flex .recycling_products_container{
    flex: 0 0 25%;
    max-width: calc(25% - 0.521vw);
}

.our_recycling_products_flex .recycling_products_container .recycling_product_box{
    padding: 1.354vw;
    border: 0.052vw solid var(--light-grey);
    height: 100%
}

.our_recycling_products_flex .recycling_products_container .recycling_product_box img{
    width: 100%;
    display: block;
}



.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt h2{
    font-size: 24px;
    color: var(--red-font);
    font-weight: 700;
    margin: 30px 0 16px;
}

.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt p,
.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt li{
    font-size: 16px;
}


.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt p{
    font-weight: 700;
}

.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt li:not(:last-child){
    margin-bottom: 6px;
}

.our_recycling_products_flex .recycling_products_container .recycling_product_box .recycling_product_txt li b{
    font-weight: 700 !important;
}

.recycling_certifications_flex{
    max-width: 70%;
    margin: 85px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}

.recycling_certifications_flex div{
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
    margin-bottom: 75px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.certfication_line{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
}

.our_recycling_certificate_area{
    padding-bottom: 150px;
}

.product_recycling_img{
    display: block;
    margin-top: 30px;
}

/* Footer */

.main_footer_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.main_footer_flex .footer_col_container:nth-child(1){
    flex: 0 0 20%;
    max-width: 20%;
}

.main_footer_flex .footer_col_container:nth-child(4){
    flex: 0 0 21%;
    max-width: 21%;
}

.main_footer_flex .footer_col_container:nth-child(2){
    flex: 0 0 13%;
    max-width: 13%;
}
.main_footer_flex .footer_col_container:nth-child(3){
    flex: 0 0 16%;
    max-width: 16%;
}

.main_footer_flex .footer_col_container:nth-child(5){
    flex: 0 0 30%;
    max-width: 30%;
}

/* Mobile Menu */
.hambuger_menu{
    position: absolute;
    right: 0;
    top: 1.65vh;
    cursor: pointer;
    display: none;
}
.hambuger_menu svg{
    height: 40px;
    width: 40px;
    color: var(--red-font);
}

.mobile_navmenu{
    height: 100vh;
    width: 100vw;
    background: var(--red-font);
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 999;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 2s;
}

.mobile_navmenu.show_mobile_menu{
    right: 0;
}

.mobile_navmenu .inner_mobile_nav{
    padding: 100px 30px;
}

.mobile_main_menu ul li{
    margin-bottom: 15px;
    overflow: hidden;
}

.mobile_main_menu ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    display: block;
    transform: translateY(100px);
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.mobile_main_menu ul li a.show_main_links{
    transform: translateY(0px);
    opacity: 1;
}

.mobile_main_menu ul li a span{
    font-size: 85px;
    line-height: 100px;
}

.mobile_main_menu{
    margin-bottom: 30px;
}

.mobile_other_links ul{
    display: flex;
    align-items: center;
}

.mobile_other_links ul li{
    overflow: hidden;
}

.mobile_other_links a{
    color: var(--white);
    font-size: 32px;
    display: block;
    transform: translateY(40px);
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.mobile_other_links a.show_other_links{
    transform: translateY(0px);
    opacity: 1;
}

.mobile_other_links ul li:not(:last-child){
    margin-right: 30px;
}

.mobile_menu_copyright{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    width: 100%;
    text-align: center;
}

.close_menu{
    position: absolute;
    top: 1.65vh;
    right: 3%;
    cursor: pointer;
}

.close_menu svg{
    width: 40px;
    height: 40px;
    color: var(--white);
}

.right_navbar .dropdown.show .dropdown-toggle::after{
    transform: rotate(180deg);
}

.desktop_view_area{
    display: none;
}

.small_recycle_banner{
    padding: 200px 0 150px;
    position: relative;
}

.font-75{
    font-size: 75px;
    line-height: normal;
}

.font-85{
    font-size: 85px;
    line-height: normal;
}

.small_banner_content h2 span{
    font-weight: 700;
}

.small_recycle_banner img{
    position: absolute;
    top: 150px;
    right: 8vw;
}

.scroll_to_see_process_small{
    position: relative;
}

.small_black_vector_01{
    width: 100%;
}

.small_recycle_bottle{
    max-width: 300px;
    position: absolute;
    top: -130px;
    right: 12vw;
}

.process_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.process_content p{
    font-size: 52px;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.process_content p span{
    font-size: 72px;
    font-weight: 700;
}

.process_content .scroll_btn {
    display: block;
    text-align: center;
}

.process_content .scroll_btn span{
    display: block;
    color: var(--white);
    margin-top: 8px;
    font-size: 14px;
}

.process_para{
    padding: 100px 0 90px;
}

.process_para p{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
}

.small_recycle_process_one{
    padding: 50px 0;
}

.step,
.step_para{
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}



.step_heading{
    font-size: 64px;
    line-height: 94px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.recycle_process_one_img{
    margin-top: 70px;
}

.recycle_process_one_img img,
.recycle_process_two_img img,
.recycle_process_three_img img,
.recycle_process_four_img img,
.recycle_process_five_img img{
    max-width: 100%;
}

.recycle_process_two_img{
    text-align: center;
    margin-top: -120px;
}

.recycle_process_two_content,
.recycle_process_four_content{
    text-align: right;
}

.small_recycle_process_three,
.small_recycle_process_five{
    position: relative;
}

.recycle_process_three_content{
    position: absolute;
    top: 150px;
    left: 5vw;
}

.recycle_process_three_content span,
.recycle_process_three_content h2,
.recycle_process_three_content p,
.recycle_process_five_content span,
.recycle_process_five_content h2,
.recycle_process_five_content p{
    color: var(--white);
}

.recycle_process_three_img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.small_black_vector_02{
    margin-top: -150px;
}

.small_recycle_process_four{
    padding: 100px 0;
}

.recycle_process_four_img{
    margin-top: -370px;
}

.recycle_process_five_content{
    position: absolute;
    top: 150px;
    left: 5vw;
}

.recycle_process_five_img{
    position: absolute;
    top: -100px;
    left: 5vw;
    width: 100%;
    text-align: center;
}

.small_black_vector_03{
    margin-top: -300px;
    position: relative;
    z-index: -1;
}

/* Nonotechnology CSS */

.nanotech_banner_area{
    padding: 160px 0 100px;
}

.nanotech_banner_flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.left_nanotech_banner{
    flex: 0 0 40%;
    max-width: 40%;
}

.left_nanotech_banner img,
.right_nanotech_banner img{
    max-width: 100%;
}


.rigt_nanotech_banner{
    flex: 0 0 60%;
    max-width: 60%;
    text-align: center;
}


.rigt_nanotech_banner h2{
    font-size: 96px;
    color: var(--red-font);
    line-height: 74px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.rigt_nanotech_banner h2 span{
    font-size: 64px;
    color: var(--black-color);
}

.nanotech_intro_area{
    padding-bottom: 150px;
}

.nanotech_intro_area p,
.nanotech_intro_area ul li{
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

.nanotech_intro_area h2{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin: 60px 0 30px;
    text-align: center;
}

.nanotech_intro_area ul li{
    text-align: left;
    list-style: disc;
}

.nanotech_intro_area ul{
    padding-left: 24px;
}

.ipr_tech_banner_area{
    height: 100vh;
}



.ipr_tech_banner_area img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ipr_tech_banner_area h2{
    font-size: 64px;
    line-height: 74px;
    font-weight: 700;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ipr_application_area{
    padding-bottom: 500px;
}

.ipr_application_area .grid .right_product_desc .product_desc_panel{
    background: var(--white);
    padding: 0;
}

.ipr_application_area .grid .right_product_desc .product_desc_panel h2{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 30px;
}

.ipr_application_area .grid .right_product_desc .product_desc_panel p{
    line-height: 25px;
}

.ipr_application_area_header{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 65px;
}

.post_event {
    aspect-ratio: 9/6;
    object-fit: fill;
}
.event_p {
    font-size: 30px;
    font-weight: 700;
}
.news_img img{
    aspect-ratio: 9/6;
    object-fit: cover;
}