@font-face {
    font-family: GothamBook;
    src: url(../fonts/GothamBook.ttf);
}
@font-face {
    font-family: Gotham-Bold;
    src: url(../fonts/Gotham-Bold.otf);
}

body{
    font-family: GothamBook;
    font-size: 16px;
    line-height: normal;
}

/* -----------------HEADER-START -------------*/

.header_top{
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    padding: 15px 0;
    transition-duration: 0.3s;
    background-color: #0c173880;
}
.is-sticky .header_top{
  padding: 0;
}
.is-sticky .toggle_menu{
  margin: 11px 0 0 20px;
}
.logo{
    max-width: 220px;
    float: left;
    transition-duration: 0.3s;
}
/* .is-sticky .logo{
  max-width: 220px;
} */
.top_right_box{
    float: right;
    width: auto;
    /* margin: 15px 0 0 0; */
    transition-duration: 0.3s;
}
.is-sticky .top_right_box{
  margin: 8px 0 0 0;
}
.social_box{
    float: right;
    width: auto;
}
.social_box a{
float: left;
  width: 38px;
  background-color: #fff;
  margin: 0 20px 0 0px;
  padding: 8px 8px 10px 8px;
  /* border-radius: 100px; */
  line-height: normal;
  text-align: center;
}
/* -----------------HEADER-END -------------*/

/* -----------------INNER-HEADER-START -------------*/
.inner_header{
  background-color: #1700C0;
  background-image: url(../images/banner-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 130px 0 30px 0;
}
.inner_header::after{
  content: "";
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.inner_header .container{
  position: relative;
  z-index: 5;
}
.inner_heading{
  color: #fff;
  font-size: 41px;
  font-family: Gotham-Bold;
}
/* -----------------INNER-HEADER-END -------------*/


/* -----------------MAIN-MENU-START -------------*/
.menu_mainbox{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
/* TOGGLE */
.toggle_menu{
  position: absolute;
  top: 0;
  left: 0;
  margin: 28px 0 0 20px;
  transition: 0.3s;
}
.toggle_menu img{
  max-width: 33px;
  cursor: pointer;
}
/* MENU BOX */
.menu_box{
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  padding: 90px 0 90px 90px;
  z-index: 5;
  display: none;
}
.menu_open .menu_box{
  display: block;
}
/* OVERLAY */
.menu_mainbox::after{
  content: "";
  background-color: #000000e3;
  width: 100%;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: 0.3s;
  pointer-events: none; /* 🔥 IMPORTANT */
}
.menu_mainbox.menu_open::after {
  height: 100%;
  pointer-events: auto;
}
/* ================= MENU ================= */
.menu_mainbox ul{
  width: 330px;
  padding: 0;
}
.menu_mainbox ul li{
  list-style: none;
  width: 100%;
}
.menu_mainbox ul li a{
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px dashed #6b6b6b;
  padding: 10px 0 10px 40px;
  position: relative;
  transition: 0.3s;
}
.menu_mainbox ul li:hover > a{
  color: #ff8851;
}
/* ================= ARROWS ================= */
.dropdown_menu > a::after{
  content: '';
  background-image: url(../images/menu_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
  width: 40px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 10px;
  transition: 0.3s;
}
/* nested arrow (right side) */
.nested_level > a::after{
  transform: rotate(0deg);
}
/* ================= DROPDOWN ================= */
/* LEVEL 2 */
.drop_box{
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  height: 100%;
  background: #242424;
  padding: 90px 0 90px 50px;
}
.drop_box,
.nested_box{
  display: none;
}
.dropdown_menu:hover > .drop_box{
  display: block;
}
.nested_level:hover > .nested_box{
  display: block;
}
/* LEVEL 3 */
.nested_box{
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  height: 100%;
  background: #2c2c2c;
  padding: 90px 0 90px 50px;
}
/* LINKS */
.drop_box a,
.nested_box a{
  display: block;
  color: #fff;
  padding: 10px 0;
}
.drop_box a:hover,
.nested_box a:hover{
  color: #ff8851;
}
/* Nested Menus End */
/* -----------------MAIN-MENU-END -------------*/


/* -----------------BANNER-START -------------*/
.main_banner {
  height: 100vh;
}
.since_text{
font-size: 31px;
  font-family: Gotham-Bold;
  color: #84c7f6;
}

.banner_slide {
  background-image: url(../images/banner-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  color: #fff;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_slide::after {
  content: "";
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.banner_slide .container {
  position: relative;
  z-index: 5;
}

.banner_text1 {
  font-size: 51px;
  font-family: Gotham-Bold;
  margin: 0 0 30px 0;
}

.banner_text2 {
font-size: 25px;
  width: auto;
  float: left;
  font-family: GothamBook;
  line-height: normal;
}

.org_btn {
  background-color: #ade0ff;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-decoration: none;
  padding: 12px 30px 12px 15px;
  /* border-radius: 5px; */
  position: relative;
  border: 0;
  transition-duration: 0.3s;
}

.org_btn:hover {
  /* color: #fff !important; */
  margin-left: 10px;
}

.org_btn::after {
  content: "";
  background-image: url(../images/black_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 13px;
  position: absolute;
  /* transform: rotate(-50deg); */
  right: 0;
  top: 0;
  margin: 15px 9px 0 0;
}

.submit_org_btn {
  background-color: #ade0ff;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-decoration: none;
  padding: 12px 20px;
  /* border-radius: 100px; */
  position: relative;
  border: 0;
  transition-duration: 0.3s;
}
.submit_org_btn:hover{
  margin-left: 10px;
}
/* -----------------BANNER-END -------------*/




/* -----------------MARQUEE-START -------------*/
.announcement_box{
width: 100%;
  margin: -60px 0 23px 0;
}
.announcement_heading{
    background-image: url(../images/blue_logo_symbol.png);
background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 20px;
  width: auto;
  position: absolute;
  right: 0;
  background-color: #fff;
  z-index: 5;
  padding: 10px 20px 10px 50px;
  /* border-radius: 100px 0 0 100px; */
  font-family: Gotham-Bold;
  color: #1700C0;
  font-size: 16px;
  text-transform: uppercase;
}
.announcement_marquee{
width: 100%;
  color: #fff;
  margin: 10px 0 0 0;
}
/* -----------------MARQUEE-END -------------*/

.heading20_grey{
  font-size: 21px;
  color: #898989;
}
.heading20_org{
  color: #F26A21;
}
.heading40_blue{
  font-size: 41px;
    color: #1700C0;
    font-family: Gotham-Bold;
}
.heading40_white{
font-size: 41px;
    color: #fff;
    font-family: Gotham-Bold;
}


/* -------MARNUFACTURE-SECTION-START--- */
.manufacture_section{
  background-color: #f3f1ff;
  margin: 130px 0 100px 0;
  padding: 60px 0 60px 0;
}
.manufacture_heading{
    font-family: Gotham-Bold;
    font-size: 61px;
    color: #F5C9B0;
}
/* .manufacture_img{
    margin: -160px 0 0 0;
} */
.manufacture_inner{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.manufacture_img_box{
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  background: #ffffff69;
  min-height: 220px;
  max-height: 220px;
  transition: 0.3s ease;
  margin-top:20px;
}

/* RIGHT BORDER ANIMATION */
.manufacture_img_box::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s ease;
}

/* LEFT BORDER ANIMATION */
.manufacture_img_box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s ease;
}

/* HOVER EFFECT */
.manufacture_img_box:hover::after,
.manufacture_img_box:hover::before{
  transform: scaleY(1);
}

/* OPTIONAL HOVER BACKGROUND */
.manufacture_img_box:hover{
  background: rgba(255,255,255,0.15);
}

/* IMAGE */
.manufacture_img_box img{
  max-height: 200px;
  transition: transform 0.3s ease;
}

/* OPTIONAL IMAGE HOVER ZOOM */
.manufacture_img_box:hover img{
  transform: scale(1.1);
}

/* -------MARNUFACTURE-SECTION-END--- */

/* -------FACILITIES-SECTION-START--- */
.facilities_list{
    padding: 0 10px;
    margin: 0 0 20px 0;
}
.facilities_list_inner{
    background-color: #f4f4f4;
}
.facilites_head{
font-family: Gotham-Bold;
  font-size: 19px;
  height: 23px;
  overflow: hidden;
}
.facilites_innerbox {
    background-color: #afabab;
    padding: 20px;
    width: 80%;
    margin: -20px 0 0 30px;
    position: relative;
    clip-path: polygon(100% 0px, 100% 72%, 90% 100%, 0px 100%, 0px 0px);
    color: #fff;
}
.center .facilites_innerbox{
    background-color: #1700C0;
}
.facilities_list_inner a{
border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
  float: left;
  margin: 0 0 -20px 0;
}
.facilities_list_inner a:hover{
  color: #000 !important;
}
.facilities_list_inner .org_btn::after{
  background-image: url(../images/black_arrow.png);
}
.center .facilities_list_inner .org_btn::after {
  background-image: url(../images/black_arrow.png);
}
.center .facilities_list_inner a {
border: 0;
  background-color: #ade0ff;
  color: #000;
}
/* -------FACILITIES-SECTION-END--- */

.owl-nav{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.owl-nav div{
    /* background-color: #f5f5f5; */
    background-image: url(../images/black_arrow.png);
    background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  font-size: 0;
  margin: 0 10px;
  /* border-radius: 110px; */
  /* transition-duration: 0.3s; */
}
.owl-prev{
    transform: rotate(180deg);
}
.owl-nav div:hover{
    border: 1px solid #1700C0;
    /* background-color: #fff; */
}

/* .main_banner .owl-carousel_banner .owl-controls{
  position: absolute;
  bottom: 0;
  z-index: 5;
  gap: 20px;
  display: flex;
  align-items: center;
}
.main_banner .owl-carousel_banner .owl-controls .owl-dots{
  display: flex;
  gap: 10px;
}
.main_banner .owl-carousel_banner .owl-controls .owl-dot{
  width: 40px;
  height: 10px;
  background: #ffffff2e;
}
.main_banner .owl-carousel_banner .owl-controls .active{
  background: #ffffffb8;
} */

.main_banner .owl-carousel_banner .owl-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px; /* same as your container width */
  padding: 0 30px;   /* same as container side padding */
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main_banner .owl-carousel_banner .owl-controls .owl-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.main_banner .owl-carousel_banner .owl-controls .owl-dot {
  width: 40px;
  height:5px;
  background: #ffffff2e;
}

.main_banner .owl-carousel_banner .owl-controls .owl-dot.active {
  background: #ffffffb8;
  height: 9px;
}


/* ----HOME-PRODUCT-MAINBOX-START------ */
.product_mainbox{
    clip-path: polygon(50% 4%, 100% 0, 100% 100%, 50% 96%, 0 100%, 0 0);
    background-color: #1700C0;
    background-image: url(../images/white_dot.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: contain;
    min-height: 800px;
    padding: 130px 0;
    color: #fff;
}
.product_whitebox{
background-color: #fff;
  border-radius: 20px;
}
/* .product_whitebox img{
    border-radius: 20px;
} */
/* ----HOME-PRODUCT-MAINBOX-END------ */

/* ------HOME-CUSTOMER-SLIDER-START---- */
.customer_logobox{
width: 100%;
  padding: 0 20px;
}
.customer_logobox_inner{
width: 100%;
  border: 1px solid #ccc;
  /* border-radius: 15px; */
  text-align: center;
  min-height: 110px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.customer_logobox_inner img{
max-height: 90px;
  width: auto !important;
  margin: 0 auto;
}
/* ------HOME-CUSTOMER-SLIDER-END---- */


/* ------HOME-MILESTONE-START---- */
.milestone_mainbox{
    background-image: url(../images/milestone/milestone_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  padding: 120px 0 0 0;
  clip-path: polygon(50% 10%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.milestore_listbox{
width: 100%;
  float: left;
  padding: 0 10px;
  position: relative;
}
.milestore_white{
background-color: #fff;
  padding: 30px 20px;
  /* border-radius: 20px; */
  font-size: 14px;
  position: relative;
  margin: 40px 0 0 0;
  min-height: 360px;
  /* align-content: center; */
}
.milestore_white img{
max-height: 100px;
  width: auto !important;
  margin: 0 auto;
}
.milestone_yearbox{
  background-image: url(../images/milestone/year_bg.png);
background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 105px;
  height: 132px;
  margin: 20px auto 0;
  position: relative;
  z-index: 5;
}
.milestone_year_text{
background-color: #4D4D4D;
  border-radius: 100px;
  color: #939393;
  width: 80px;
  height: 80px;
  margin: 12px auto 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 21px;
  padding: 18px 0 0 0;
  font-family: Gotham-Bold;
}
.milestone_year_text span{
  font-size: 20px;
}
.owl-carousel_mileststone .item{
  margin: 0 10px;
}
.milestone_mainbox .owl-nav {
  display: block;
  margin: -320px 0 0 0;
  position: absolute;
  width: 100%;
}

.milestone_mainbox .owl-nav div {
  float: left;
  margin: 0 0 0 -10px;
  background-image: url(../images/white_arrow.png);
  background-color: #F26A21;
}

.milestone_mainbox .owl-nav .owl-next {
  float: right;
  margin: 0 -10px 0 0;
}
.milestore_listbox::after{
  content: "";
width: 100%;
  height: 2px;
  position: absolute;
  background-color: #ffffff69;
  left: 0;
  bottom: 80px;
  right: 0;
}
.milestore_white::after{
  content: "";
width: 23px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -9px;
  margin: 0 auto;
  right: 0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.center .milestone_yearbox {
  opacity: 1;
}
.center .milestone_year_text{
  background-color: #1700C0;
  color: #fff;
}
.center .milestore_white{
  margin: 0 0 60px 0;
}

/* ------HOME-MILESTONE-NED---- */


/* ------HOME-MANAGEMENT-SECTION-START---- */
.management_section{
    background-color: #F4F4F4;
    padding: 150px 0 0 0;
}
.management_label{
background-color: #1700C0;
  width: auto;
  float: left;
  color: #fff;
  padding: 20px;
  clip-path: polygon(100% 0, 100% 73%, 90% 100%, 0 100%, 0 0);
  position: absolute;
  /* bottom: 20px; */
  z-index: 5;
}
.management_list{
    padding: 10px;
}
/* .management_list_inner{
    background-color: #fff;
} */
.management_list_label{
background-color: #000;
  color: #fff;
  padding: 15px;
  clip-path: polygon(100% 0, 100% 73%, 90% 100%, 0 100%, 0 0);
  width: 94%;
  font-size: 14px;
  margin: -60px 0 0 0;
  min-height: 70px;
  align-items: center;
  display: flex;
}
/* .owl-carousel_home_management{
  margin: 60px 0 0 0;
} */
/* ------HOME-MANAGEMENT-SECTION-END---- */
/* ------HOME-MD-Messege-SECTION-END---- */
.md_messege_section{
  padding: 60px 0 0px 0;
  background: #ffffff;
  position: relative;
  margin: 0 0 30px 0;
}
.md_messege_section .md_container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* GRID */
.md_messege_section .md_grid{
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  align-items: center;
}
/* LABEL */
.md_messege_section .md_label{
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 15px;
  display: inline-block;
}
/* TITLE */
.md_messege_section .md_title{
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}
/* TEXT */
.md_messege_section .md_text{
  margin-bottom: 15px;
}
/* AUTHOR */
.md_messege_section .md_author{
  margin-top: 25px;
}
.md_messege_section .md_author h4{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.md_messege_section .md_author span{
  font-size: 14px;
  color: #888;
}
/* IMAGE */
.md_messege_section .md_image{
  position: relative;
  display: flex;
  justify-content: center;
}
.md_messege_section::after{
  position: absolute;
  content: "";
  top: 0px;
  width: 280px;
  bottom: 0px;
  background-color: #f3f1ff;
  height: 90%;
  z-index: 0;
  right: 10%;
  border-radius: 0px 0px 170px 170px;
}
.md_messege_section .md_image img{
  width:auto;
  border-radius: 12px;
  display: block;
  z-index: 4;
  position: relative;
  max-height: 400px;
}

/* subtle border frame */
/* .md_messege_section .md_image::after{
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  z-index: -1;
} */

/* HOVER EFFECT */
.md_messege_section .md_image:hover img{
  transform: scale(1.03);
  transition: 0.4s ease;
}
/* ------HOME-MD-Messege-SECTION-END---- */
/* ------HOME-GET-IN-TOUCH-SECTION-START---- */
.getintouch_section .input_text{
background-color: #F6F6F6;
  border: 0;
  padding: 20px;
  font-size: 15px;
  width: 100%;
  /* border-radius: 10px; */
  line-height: normal;
}
/* ------HOME-GET-IN-TOUCH-SECTION-END---- */

/* ------PRODUCT-PAGE-START---- */

.owl-carousel_productimage img{
  border: 1px solid #ccc;
  /* border-radius: 20px; */
}
.owl-carousel_productimage .item span{
background-color: #ddefff;
  padding: 10px 30px;
  /* border-radius: 10px 10px 0 0; */
  float: left;
  margin: 0 0 0 20px;
  font-size: 16px;
  font-weight: bold;
}
.owl-carousel_productimage .owl-nav {
  position: absolute;
  margin: -18px 0 0 0;
  left: 0;
  right: 0;
}



.inner_product_mainbox{
background-color: #EFEDF9;
  padding: 30px;
  /* border-radius: 10px; */
}

.inner_product_leftbox{
width: 20%;
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.inner_product_leftbox a{
background-color: #dcd9ec;
  margin: 0 0 10px 0;
  padding: 10px 10px 4px 10px;
  text-align: center;
  float: left;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  color: #000;
}
.inner_product_leftbox li{
background-color: #dcd9ec;
  margin: 0 0 10px 0;
  padding: 10px 10px 4px 10px;
  text-align: center;
  float: left;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
}
.inner_product_leftbox .current{
background-color: #1700c0;
  color: #fff;
}
.inner_pro_img{
margin: 0 auto;
  min-width: 90px;
  max-width: 90px;
  min-height: 90px;
  max-height: 90px;
  background-color: #fff;
  border-radius: 110px;
  display: flex;
  align-items: center;
  padding: 10px;
}
/* .inner_product_leftbox img{
  border-radius: 100px;
} */
.inner_product_leftbox span{
width: 100%;
  float: left;
  margin: 10px 0;
}



.inner_product_leftbox_inner{
margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none;
  float: left;
  width: 100%;
}
.inner_product_leftbox_inner li{
width: auto;
  float: left;
  background-color: #fff;
  padding: 10px 26px;
  margin: 0 10px 0 0px;
  cursor: pointer;
}
.inner_product_leftbox_inner li:hover{
background-color: #F26A21;
  color: #fff;
}
.inner_product_leftbox_inner .current{
background-color: #F26A21;
  color: #fff;
}


.inner_product_rightbox{
width: 75%;
  float: right;
}
.tab-content{
  display: none;
}
.tab-content.current{
  display: block;
}
.inner_product_rightbox .no{
  display: none !important;
}

.tab-content-inner{
  display: none;
  padding: 20px;
  background-color: #fff;
}
.tab-content-inner.current{
  display: block !important;
}
.inner_product_rightbox hr{
  color: #ccc;
}

.carousel_product_engine_img{
/* border: 1px solid #ccc; */
  max-height: 250px;
  min-height: 250px;
  display: flex;
  align-items: center;
}
.carousel_product_engine_img img{
  max-height: 240px;
  width: auto !important;
  margin: 0 auto;
}

/* ------PRODUCT-PAGE-END---- */

/* ------PRODUCT-PAGE-RIGHT-MENU-START---- */
.product_rightbox_menubox {
  background-color: #E6E6E6;
  height: 100%;
  width: 100%;
  padding: 50px 20px 0 0;
}

.product_rightbox_menubox .heading40_blue {
  color: #fff;
}

.product_rightbox_menubox a {
  color: #000;
  width: 100%;
  border-bottom: 1px dashed #898989;
  float: left;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 16px;
  /* margin: 2px 0; */
  transition-duration: 0.3s;
}
.product_rightbox_menubox a:hover{
background-color: #fff;
}
.product_rightbox_menubox .selected {
background-color: #1700c0;
  color: #fff;
}

.product_rightbox_menubox .selected:hover{
background-color: #1700c0;
  color: #fff;
}

.product_menuicon{
display: none;
}
.product_menuicon_close {
  display: none;
}
.industry-menu-inner{
  background-color: #f2f2f2;
  padding: 20px;
  color: #1700c0;
  margin-bottom: 20px;
}
/* ------PRODUCT-PAGE-RIGHT-MENU-END---- */


/* ------CONTACT-US-START---- */
.help_list{
position: relative;
  width: auto;
  float: left;
  margin: 0 0 10px 0;
}
.help_list input{
display: none;
}
.help_list label{
  background-color: #F6F6F6;
  line-height: normal;
  padding: 10px 20px 10px 13px;
  /* border-radius: 10px; */
  font-size: 15px;
  margin: 0 10px 0 0;
  cursor: pointer;
  position: relative;
}
.help_list label::before{
  content: "";
width: 13px;
  height: 13px;
  position: relative;
  left: 0;
  top: 0;
  border: 1px solid #000;
  border-radius: 100px;
  float: left;
  margin: 2px 9px 0 0;
  background-color: #fff;
}
.help_list input:checked~label {
background-color: #1700C0;
  color: #fff;
}
.help_list input:checked~label::before {
background-color: #fff;
  box-shadow: 0 0px 0px 1px #fff;
  border: 4px solid #1700C0;
}

.contactus_section .input_text{
  width: 100%;
  border: 1px solid #ccc;
  /* border-radius: 10px; */
  font-size: 14px;
  line-height: normal;
  padding: 12px 15px;
}

/* ------CONTACT-US-END---- */


/* ------CLIENTS-START---- */
.client_list{
width: 11%;
float: left;
  padding: 6px 10px;
}
.client_list_inner{
border: 1px solid #ccc;
  border-radius: 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: center;
}
.client_list img{
  max-width: 100%;
  max-height: 48px;
}

/* ------CLIENTS-END---- */


/* ------INVESTORS-PAGE-START---- */
.investi_pdf_list{
  border: 1px solid #e8e8e8;
  width: 100%;
  /* border-radius: 15px; */
  padding: 20px 20px 20px 20px;
  position: relative;
  transition-duration: 0.7s;
  margin: 0 0 60px 0;
  font-size: 14px;
}
.investi_pdf_list:hover{
  box-shadow: 0 0 10px #e6edf4;
  border: 1px solid #a9b9c7;
  border-radius: 15px;
}
.investi_pdf{
  width: 70px;
  height: 70px;
  margin: -46px auto 20px;
  background-color: #f7f7f7;
  padding: 19px;
  border-radius: 100px;
  transition-duration: 0.9s;
}
.investi_pdf_list a{
background-color: #FFECE3;
  color: #000;
  padding: 6px 15px;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  line-height: normal;
  position: absolute;
  bottom: -10px;
  margin: 0 auto;
  width: 110px;
  left: 0;
  right: 0;
  transition-duration: 0.5s;
}
.investi_pdf_list:hover a{
  background-color: #ade0ff;
  color: #000;
}
.investi_pdf_list::after{
    background-image: url("../images/logo-bg.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:-2;
    content:"";
    opacity: 0.1;
    transition-duration: 0.9s
}
.investi_pdf_list::before{
  background-color:#ffffffa8;
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  z-index:-1;
  content:"";
  transition-duration: 0.5s
}
.investi_pdf_list:hover::after{
    opacity:1;
    background-color:#fff;
    z-index:1;
    border-radius: 15px;
    transition-duration: 0.5s
}
.investi_pdf_list:hover::before{
  background-color:none;
  border-radius: 15px;
  transition-duration: 0.7s
}
.investi_pdf_list:hover .investi_pdf{
  z-index: 2;
  position: relative;
  transition-duration: 0.7s
}
.investi_pdf_list:hover a{
  z-index: 2;
}
.annual_report_box{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.annual_report_box .investi_pdf_list::after{
  display:none;
}
.annual_report_box .investi_pdf_list{
  display: flex;
  padding: 0px;
  align-items: center;
  gap: 30px;
  margin: 0;
  width: 47%;
}
.annual_report_box .investi_pdf {
  margin: 0px;
  padding: 0px;
  border-radius: 100px;
  transition-duration: 0.9s;
  width: 40%;
  background: transparent;
  width: auto;
  height:auto;
}
.annual_report_box .investi_pdf img{
  max-height: 160px;
}
.annual_report_box .pdfdetails{
    width: 60%;
    text-align: start;
}
.annual_report_box .investi_pdf_list a{
  position: inherit;
}
/* ------INVESTORS-PAGE-END---- */


.facilities_li li{
  margin: 0 0 7px 0;
}
.facilities_li li a{
  color: #000;
}

.middlebox_height{
  min-height: 600px;
}

.product_rightbox_bluebox{
  background-color: #00427f;
  margin:-90px 0 0 0;
  position: relative;
  z-index: 0;
  border-radius: 20px;
}

.inner_blue_left{
  background-color: #E6E6E6;;
  position: absolute;
  left: 0;
  width: 20%;
  height: 100%;
}

/* Fortune-START */
.investors_box {
  background-color: #F8F8F8;
  padding: 40px;
  transition-duration: 0.3s;
}
/* Fortune-END */


/* ------INDUSTRIES-START---- */
.industries_section .owl-carousel_automotive .item{
  width: 100%;
  border: 1px solid #ccc;
  min-height: 200px;
}
.industries_imgbox{
min-height: 150px;
  display: flex;
  align-items: center;
}
.industries_section .owl-carousel_automotive .item{
  width: 100%;
  border: 1px solid #ccc;
  min-height: 200px;
}
.industries_section .owl-carousel_automotive img{
  max-height: 150px;
  width: auto !important;
  margin: 0 auto;
}

.industries_section .industries_img_heading{
padding: 20px 0 0px 0;
  float: left;
  width: 100%;
  font-weight: bold;
}
.industry_pro_img{
  max-width: 370px;
  border: 1px solid #ccc;
  float: left;
  min-width: 370px;
  padding: 10px;
}
.industry_pro_img img{
max-width: 300px;
  max-height: 160px;
}
.menu-link.selected {
  color: #fff;
  background-color: #1700c0;
}
/* ------INDUSTRIES-END---- */



/* ------FOOTER-START---- */
footer{
    background-color: #1700C0;
    position: relative;
    color: #fff;
    z-index: 50;
    font-size: 14px;
    line-height: 21px;
}
footer::after{
    content: "";
    background-image: url(../images/footer_bg.png);
background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    left: 0;
    top: 0;
}
.copyright_box{
background-color: #ffffff1c;
  border-top: 1px solid #ffffff1a;
}
.copyright_box a{
  color: #fff;
  text-decoration: none;
}
.copyright_text{
  text-align: right;
}
/* ------FOOTER-END---- */


/* ------FOOTER-VALUE-SECTION-START---- */
.value_section{
border-bottom: 1px solid #ffffff52;
  color: #fff;
  font-family: Gotham-Bold;
  font-size: 28px;
  line-height: normal;
}
.value_section span{
float: left;
  width: 100%;
  font-size: 15px;
  font-family: GothamBook;
  margin: 10px 0 0 0;
}
.value_section .col-6{
    position: relative;
}
.value_section .col-6::after{
    content: "";
border-right: 1px solid #ffffff52;
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
}
.value_last::after{
    display: none;
}

.footer_boxlist{
  width: 30%;
  float: left;
  padding: 0 50px;
}
.footer_box2{
  width: 20%;
}
.footer_box3{
  width: 25%;
}
.footer_box4{
  width: 25%;
}

.footer_boxlist a{
  color: #fff;
  text-decoration: none;
}

.footer_heading{
  font-family: Gotham-Bold;
  font-size: 21px;
}

.footer_menu_box{
  margin: 0;
  padding: 0;
  line-height: normal;
}
.footer_menu_box li{
margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer_menu_box li a{
margin: 0 0 10px 0;
  padding: 0 0 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
  float: left;
  position: relative;
}
.footer_menu_box li a:hover{
  color: #F26A21;
}
.footer_menu_box li a::before{
  content: "";
background-color: #fff;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  border-radius: 100px;
  margin: 7px 0 0 0;
}

/* ------FOOTER-VALUE-SECTION-END---- */
/*---------- Career Page Start----------*/
  .careers_inner_header{
    background-color: #1700C0;
    background-image: url(../images/career-banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 130px 0 30px 0;
    height: 60vh;
}
 .careers_sectioninner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 0px;
      gap: 40px;
  }
  /* LEFT TEXT */
  .careers_section .content {
      flex: 1;
  }
  /* RIGHT COLLAGE */
  .careers_section .collage {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 15px;
  }
  .careers_section .collage img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      transition: 0.3s;
  }
  .careers_section .collage img:hover {
      transform: scale(1.05);
  }
  /* DIFFERENT SIZES */
  .careers_section .collage img:nth-child(1) {
      grid-column: span 2;
      height: 220px;
  }
  .career-resume-text{
    font-size:11px;
  }
/*---------- Career Page End----------*/



@media screen and (min-width: 1000px) and (max-width: 1500px) {

body{
  font-size: 13px;
}
.management_list_label{
  font-size: 12px;
}
.banner_text1{
  font-size: 41px;
}
.org_btn{
  font-size: 13px;
}
.heading40_blue{
  font-size: 31px;
}
.heading40_white{
  font-size: 31px;
}
.heading20_grey{
  font-size: 16px;
}
.inner_heading{
  font-size: 31px;
}
.milestore_white{
  font-size: 13px;
}
.footer_heading{
  font-size: 16px;
}


/* -----------------MAIN-MENU-START -------------*/
.menu_mainbox ul li a{
  font-size: 13px;
}
/* -----------------MAIN-MENU-END -------------*/

/* ------PRODUCT-PAGE-START---- */
.inner_product_leftbox a{
  font-size: 11px;
}
.inner_pro_img{
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
}
.inner_product_leftbox span{
  margin: 8px 0;
}
.inner_product_leftbox_inner {
  margin: 0 0 10px 0;
}
/* ------PRODUCT-PAGE-END---- */


/* ------CONTACT-US-START---- */
.help_list label{
  font-size: 12px;
}
.contactus_section .input_text{
  font-size: 12px;
  padding: 12px 15px;
}
/* ------CONTACT-US-END---- */


/* ------HOME-CUSTOMER-SLIDER-START---- */
.customer_logobox_inner img{
  max-height: 60px;
}
/* ------HOME-CUSTOMER-SLIDER-END---- */

footer{
  line-height: normal;
}


}
@media screen and (min-width:1281px) {
  .main_banner .owl-carousel_banner .owl-controls {
    max-width: 1320px; /* same as your container width */
  }
}
@media screen and (max-width:1200px) {


/* -------MARNUFACTURE-SECTION-START--- */
.manufacture_heading{
  font-size: 41px;
}
/* -------MARNUFACTURE-SECTION-END--- */


/* -------FACILITIES-SECTION-START--- */
.facilites_head{
  overflow-y: hidden;
  max-height: 30px;
}
/* -------FACILITIES-SECTION-ENd--- */


}



@media screen and (max-width:992px) {
body{
  font-size: 13px;
}
.heading20_grey{
  font-size: 18px;
}
/* -----------------HEADER-START -------------*/


.header_top .top_right_box{
position: fixed;
  right: 0;
  top: 40%;
  z-index: 5;
}
.header_top .social_box a{
clear: both;
  margin: 0 5px 5px 0;
  width: 26px;
  height: 27px;
  padding: 3px 0 0 0;
}
.header_top .social_box a img{
max-width: 13px;
  max-height: 13px;
}

/* -----------------HEADER-END -------------*/


/* -----------------MAIN-MENU-START -------------*/
/* .menu_box {
  overflow-y: scroll;
  padding: 60px 0 0 25px;
}
.dropdown_menu a::after{
  right: 0;
  left: inherit;
  transform: rotate(90deg);
}
.drop_box{
  position: relative;
  left: 0;
  min-width: inherit;
  padding: 0;
  width: 100%;
  background-color: #444;
  float: right;
}
.menu_mainbox ul .drop_box a{
  padding: 10px 0 10px 20px;
}
.menu_mainbox ul li a{
  padding: 10px 0 10px 10px;
} */

.menu_box {
    overflow-y: scroll;
    padding: 60px 20px 0 20px;
    width: 100%;
  }
  .menu_mainbox ul{
    width: 100%;
  }

  .menu_mainbox ul li a{
    padding: 10px 0 10px 10px;
  }

  /* arrow */
  .dropdown_menu > a::after{
    right: 0;
    transform: rotate(90deg);
  }

  /* LEVEL 2 */
  .drop_box{
    display: none;
    position: relative;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: #444;
  }

  .menu_mainbox ul .drop_box a{
    padding: 10px 0 10px 20px;
    font-size:14px;
  }

  /* LEVEL 3 */
  .nested_box{
    display: none;
    position: relative;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: #555;
  }

  .nested_box a{
    padding: 10px 0 10px 30px;
  }

  /* ACTIVE STATES */
  .dropdown_menu.active > .drop_box{
    display: block;
  }

  .nested_level.active > .nested_box{
    display: block;
  }

  /* arrow rotate when open */
  .dropdown_menu.active > a::after{
    transform: rotate(-90deg);
  }

  .nested_level.active > a::after{
    transform: rotate(-90deg);
  }

-----------------MAIN-MENU-END -------------



/* -------MARNUFACTURE-SECTION-START--- */
.manufacture_img{
  margin: 0;
}
/* -------MARNUFACTURE-SECTION-END--- */

/* ----HOME-PRODUCT-MAINBOX-START------ */
.product_mainbox .col-lg-1{
  display: none;
}
/* ----HOME-PRODUCT-MAINBOX-END------ */


/* ------HOME-MANAGEMENT-SECTION-START---- */
.management_label {
  position: relative;
}
/* .owl-carousel_home_management {
  margin: 60px 0 0 0;
} */
.owl-carousel_home_management {
  margin: 0 0 0 0;
}
/* ------HOME-MANAGEMENT-SECTION-END---- */


/* -----------------MARQUEE-START -------------*/
.announcement_box{
margin: 0;
  background-color: #000;
}
.announcement_marquee{
  min-height: 27px;
}
/* -----------------MARQUEE-END -------------*/

/* ------CLIENTS-START---- */
.client_list{
  width: 20%;
}
/* ------CLIENTS-END---- */

/* ------PRODUCT-PAGE-RIGHT-MENU-START---- */
.product_menuicon {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: #1700C0;
  padding: 10px 15px 12px 15px;
  /* border-radius: 10px; */
  margin: 0 10px 10px 0px;
  cursor: pointer;
}

.product_menuicon img {
  max-height: 13px;
}
.product_rightbox_menubox{
  display: none;
}
.product_rightbox_menubox .heading40_blue {
  display: none;
}
.product_rightbox_menubox_open{
display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 230px;
  background-color: #201c3a;
  max-height: 290px;
  overflow-y: scroll;
  margin: 0 60px 20px 0;
  border-radius: 20px 20px 0px 20px;
  padding: 30px 20px 20px 20px;
  height: auto;
}
.product_rightbox_menubox a{
  padding: 6px 10px;
  font-size: 12px;
  color: #fff;
}
.product_rightbox_menubox a:hover {
  background-color: #312d51;
}
.product_menuicon_close{
display: block;
  color: #fff;
  cursor: pointer;
  float: right;
  position: sticky;
  top: -24px;
  right: 0;
  margin: -50px 0 0 0;
  font-size: 20px;
}
.product_rightbox_menubox .selected{
  /* border-radius: 4px; */
  font-family: GothamBook;
}
.industry-menu-inner{
  color: #fff;
  padding: 10px;
  background-color: #332e56;
}




/* ------PRODUCT-PAGE-RIGHT-MENU-END---- */



/* ------PRODUCT-PAGE-START---- */
.inner_product_leftbox{
  width: 100%;
  margin: 0 0 30px 0;
}
.inner_product_rightbox{
  width: 100%;
}
.inner_product_leftbox a{
  width: 33%;
  font-size: 13px;
}
.inner_product_mainbox{
  padding: 40px 10px 30px 10px;
}
/* ------PRODUCT-PAGE-END---- */




/* ------CONTACT-US-START---- */

.help_list label{
  width: 100%;
  text-align: center;
}
/* ------CONTACT-US-END---- */

/* ------FOOTER-START---- */
.copyright_box{
  text-align: center;
}
.copyright_text{
  text-align: center;
  font-size: 13px;
}


.footer_boxlist{
  width: 50%;
  margin: 0 0 30px 0;
}
.footer_box2{
  width: 50%;
}
.footer_box3{
  clear: both;
  width: 50%;
}
.footer_box4{
  width: 50%;
}
.footer_menu_box li{
  width: 50%;
  float: left;
}

/* ------FOOTER-END---- */

.inner_blue_left{
  display: none;
}
.careers_sectioninner{
  padding: 30px 0px;
}
.careers_sectioninner{
  gap: 25px;
}
.careers_inner_header{
  height: 40vh;
}
.manufacture_img_box{
  width: 30%;
}
/* MD Section Start */
.md_messege_section .md_grid{
  gap:30px;
}
.md_messege_section::after{
  width: 220px;
}

}
@media screen and (max-width:768px) {

.logo{
max-width: 200px;
  float: none;
  margin: 0 auto;
}

/* -----------------MAIN-MENU-START -------------*/
.header_top{
  padding: 10px 0;
}
.toggle_menu{
  margin: 20px 0 0 20px;
}
/* -----------------MAIN-MENU-END -------------*/

/* -----------------BANNER-START -------------*/
.banner_slide::after{
  opacity: 0.4;
}
.main_banner{
  height: auto;
}
.banner_slide{
  text-align: center;
  height: auto;
  min-height: 500px;
  position: relative;
}
.banner_text1{
  font-size: 26px;
}
.banner_text2{
  font-size: 21px;
}
.since_text{
  font-size: 26px;
}
/* -----------------BANNER-END -------------*/

/* -----------------MARQUEE-START -------------*/
.announcement_heading{
  font-size: 0;
  width: 50px;
  height: 36px;
  padding: 0;
}
/* -----------------MARQUEE-END -------------*/


/* -----------------INNER-HEADER-START -------------*/
.inner_header{
  padding: 150px 0 30px 0;
}
.inner_heading{
  font-size: 31px;
  text-align: center;
}
/* -----------------INNER-HEADER-END -------------*/

/* ------CLIENTS-START---- */
.client_list {
  width: 25%;
}

/* ------CLIENTS-END-----*/


/* ------CONTACT-US-START---- */
.help_list{
  width: 100%;
}
/* ------CONTACT-US-END---- */
.careers_sectioninner{
  flex-wrap:wrap;
}
.careers_section .content {
    flex: 0 0 100%;
    max-width: 100%;
}
.manufacture_img_box{
  min-height: 170px;
  max-height: 170px;
}
/* MD Section Start */
.md_messege_section::after{
  right: 6%;
  width: 210px;
}
.md_messege_section .md_grid{
  grid-template-columns: 1fr;
}
.md_messege_section .md_grid .md_content{
    order: 2;
}
.md_messege_section::after {
    left: 50%;
    width: 70%;
    height: 350px;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%);
}
.industry_pro_img{
  width:100%;
  max-width:100%;
  min-width:100%;
}

}
@media screen and (max-width:580px) {
.heading40_blue {
    font-size: 28px;
}
.manufacture_heading {
    font-size: 31px;
}
.welcome_section{
  text-align: center;
}
/* -------MARNUFACTURE-SECTION-START--- */
.manufacture_section{
  text-align: center;
  margin: 0 0 40px 0;
}
/* -------MARNUFACTURE-SECTION-END--- */

/* ----HOME-PRODUCT-MAINBOX-START------ */
.product_mainbox{
clip-path: polygon(50% 2%, 100% 0, 100% 100%, 50% 98%, 0 100%, 0 0);
  padding: 30px 0;
}
/* ----HOME-PRODUCT-MAINBOX-END------ */

.creane_animation_box img{
  display: none;
}

/* ------HOME-MILESTONE-START---- */
.milestone_mainbox{
clip-path: polygon(50% 6%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding: 80px 0 0 0;
}
.milestore_white {
  margin: 0 !important;
}
/* ------HOME-MILESTONE-END---- */


/* ------CLIENTS-START---- */
.client_list {
  width: 50%;
}

/* ------CLIENTS-END---- */

/* ------PRODUCT-PAGE-START---- */
.inner_pro_img{
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
}
.inner_product_leftbox_inner li{
  padding: 8px 10px;
  font-size: 12px;
}
.inner_product_leftbox_inner{
  margin: 0 0 10px 0;
}
/* ------PRODUCT-PAGE-END---- */


/* ------FOOTER-VALUE-SECTION-START---- */
.value_section {
  font-size: 31px;
}

/* ------FOOTER-VALUE-SECTION-END---- */

/* ------FOOTER-START---- */
.footer_boxlist{
min-width: 100%;
  border-bottom: 1px solid #ffffff45;
  padding: 0 15px 30px 15px;
}
.footer_menu_box li a{
  font-size: 13px;
}
.copyright_text img{
  margin: 10px 0 0 0;
}
/* ------FOOTER-END---- */
  .manufacture_img_box {
      width: 47%;
  }
  .manufacture_img_box{
    margin:0px;
  }

  .annual_report_box .investi_pdf_list{
    width:100%;
  }

}