@font-face {
  font-family: Gotham-Black;
  src: url(../css/fonts/Gotham-Black.otf);
}

@font-face {
  font-family: Gotham-Bold;
  src: url(../css/fonts/Gotham-Bold.otf);
}

@font-face {
  font-family: Gotham-Regular;
  src: url(../css/fonts/Gotham-Light.otf);
}

@font-face {
  font-family: Gotham-Medium;;
  src: url(../css/fonts/Gotham-Medium.otf);
}

@font-face {
  font-family: Gotham-Book;;
  src: url(../css/fonts/Gotham-Medium.otf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p {
  line-height: 25px;
  margin: 0;
  font-family: Gotham-Regular;
}

body {
  overflow-x: hidden;
  /* line-height: normal; */
}

.container .text-center {
  padding: 0;
  margin: 0;
}

.width100 {
  float: left;
  width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
}
.banner_img {
    height: 100vh;
    width: 100%;
}
.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aerospace_banner {
  background-image: url("../images/aerospace/banner_img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #0e1f46;
  min-height: 750px;
}
.banner_text {
    font-family: Gotham-Black;
    font-size: 46px;
    color: #FFF;
    text-transform: uppercase;
    line-height: 50px;
}
.banner_subText {
    font-family: Gotham-Book;
    font-size: 28px;
    text-transform: none;
    line-height: 37px;
    margin-top: 10px;
}
.page_navigation .breadcrum {
    font-size: 15px;
}
.page_navigation .breadcrum a {
    font-size: 16px;
    text-decoration: none;
    font-family: Gotham-Bold;
    color: #FFF;
}
.page_navigation_aerospace {
    margin: 15px 0 0 0;
}
.banner_heading {
  min-height: 400px;
  text-align: center;
  color: #fff;
  font-size: 71px;
  line-height: normal;
  font-weight: bold;
  padding: 200px 0 0 0;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  font-family: Gotham-Medium;
}
.banner_section {
    background-color: #000;
    margin: 0;
    position: relative;
}
.banner_heading_bold {
  font-family: Gotham-Black;
}

.banner_breadcrumbs {
  color: #fff;
  font-size: 22px;
}
.banner_imgContent {
    position: absolute;
    background-color: #000000a4;
    bottom: 18%;
    left: 5.5%;
    color: #FFF;
    padding: 30px 50px;
}
.banner_imgContent::after {
    content: "";
    width: 8px;
    height: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #124a97;
}
.aerospace_menubox {
  background-color: #fff;
  float: left;
  width: 100%;
  margin: -60px 0 0 0;
  /* padding: 25px 30px 18px 30px; */
  padding: 30px;
  border-radius: 61px;
  position: relative;
  z-index: 1;
}

.aerospace_menubox ul {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

.aerospace_menubox li {
  float: left;
  width: auto;
  text-align: center;
  padding: 0px 14px;
  cursor: pointer;
  filter: grayscale(1);
}

.aerospace_menubox li:hover {
  filter: grayscale(0);
}

.aerospace_menubox li.active {
  filter: grayscale(0);
}

/* .aerospace_menubox.aerospace_menubox_maipage li a {
  opacity: 1;
}

.aerospace_menubox li a {
  opacity: 0.5;
  transition-duration: 0.3s;
}

.aerospace_menubox li a:hover {
  opacity: 1;
}

.aerospace_menubox.aerospace_menubox_maipage li .menu_icon {
  opacity: 0.5;
  transition-duration: 0.3s;
}

.aerospace_menubox.aerospace_menubox_maipage li:hover .menu_icon {
  opacity: 1;
} */

.aerospace_menubox .menu_icon {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
  text-align: center;
  min-height: 40px;
}

.aerospace_menubox .menu_icon img {
  max-width: 100px;
}

.aerospace_menubox .menu_text {
  float: left;
  width: auto;
  font-size: 15px;
  color: #3f8fca;
  clear: both;
  font-family: Gotham-Regular;
}


/* --------AEROPLANE-ANIMATION-START----------- */
.aeroplain_animation .marquee-parent {
  position: relative;
  width: 100%;
  height: 108px;
  overflow: hidden;
  border-bottom: 2px solid #afafaf;
}

.aeroplain_animation .marquee-child {
  display: block;
  width: 431px;
  height: auto;
  position: absolute;
  animation: run 9s linear infinite;
}

.aeroplain_animation .marquee-child:hover {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes run {
  0% {
    right: 100%;
  }

  100% {
    right: -147px;
  }
}


.aeroplain_animation2 .marquee-parent {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-bottom: 2px solid #afafaf;
}

.aeroplain_animation2 .marquee-child {
  display: block;
  width: 400px;
  height: auto;
  position: absolute;
  animation: run2 9s linear infinite;
}

.aeroplain_animation2 .marquee-child:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.aeroplain_animation2 img {
  transform: scaleX(-1)
}

@keyframes run2 {
  0% {
    left: 100%;
  }

  100% {
    left: -147px;
  }
}

/* --------AEROPLANE-ANIMATION-END----------- */

/* --------ROUND-IMAGE-ROTATE-ANIMATION-START----------- */
.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}


.round_img_animation {
  position: absolute;
  right: 0;
  width: auto;
  text-align: right;
  top: 0;
  margin: 0 90px 0 0;
  z-index: -1;
}

.round_img_animation img {
  animation: rotation 20s infinite linear;
  width: 440px;
}

/* --------ROUND-IMAGE-ROTATE-ANIMATION-END----------- */

.capabilities_mainbox {
  /* padding-top: 80px; */
  position: relative;
}

.capabilities_listing {
  float: left;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 0 20px;
  font-family: Gotham-Regular;
  line-height: normal;
}

.capabilities_listing li {
  float: left;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 10px 0;
  list-style-type: disc;
  transition-duration: 0.3s;
  cursor: pointer;
}

.capabilities_listing li:hover {
  color: #4e7779;
  font-weight: bold;
  margin: 0 0 0 10px;
}

.capabilities_listing .active {
  color: #4e7779;
  font-weight: bold;
  margin: 0 0 0 10px;
}

.capabilities_listing .active2 {
  color: #4e7779;
  font-weight: bold;
  margin: 0 0 0 10px;
}

/* --------PRODUCT-3-SLIDES-START----------- */
.product_list_animationbox {
  background-color: #01558c;
  float: left;
  width: 100%;
}

.product_animation_list {
  width: 10%;
  float: left;
  transition-duration: 0.8s;
}

.product_list_animationbox .current {
  background-color: #ccc;
  width: 80%;
}

.product_list {
  float: left;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 580px;
  padding: 0 60px;
  color: #fff;
  overflow: hidden;
}

.product_list_animationbox .product_list_heading {
  float: left;
  width: 100%;
  font-size: 31px;
  margin: 70px 0 20px 0;
  display: block;
  word-wrap: break-word;
}

.product_list_content {
  float: left;
  width: 100%;
  font-size: 18px;
  line-height: normal;
  margin: 0 0 20px 0;
}

.product_list div {
  display: none;
}

.product_list_animationbox .current div {
  display: block;
}

.product_list_animationbox .current .product_list_heading {
  margin: 330px 0 20px 0;
}

/* --------PRODUCT-3-SLIDES-END----------- */




.heading34_black {
  font-family: Gotham-Medium;
  font-size: 44px;
  color: #6D747E;
  line-height: normal;
}
.heading31_black {
  font-family: Gotham-Medium;
  font-size: 31px;
  color: #6D747E;
  line-height: normal;
}
.heading21_black {
  font-family: Gotham-Medium;
  font-size: 21px;
  color: #000000;
  line-height: normal;
}

.heading34_bold_black {
  font-family: Montserrat-bold;
  font-size: 44px;
  color: #6D747E;
  line-height: normal;
}

.heading34_green {
  font-family: Montserrat;
  font-size: 44px;
  color: #4E7779;
  line-height: normal;
}

.heading34_bold_green {
  font-family: Gotham-Bold;
  font-size: 44px;
  color: #4E7779;
  line-height: normal;
}

.readmore_blue_btn {
  background-image: linear-gradient(#80b9bb, #527e82);
  color: #fff;
  font-size: 15px;
  padding: 6px 20px;
  text-decoration: none;
}

.readmore_blue_btn:hover {
  color: #000;
}

.text24_black {
  font-family: Gotham-Medium;
  font-size: 24px;
  color: #282834;
  line-height: normal;
}


/* -----HEADING-ANIMATION-START-------- */
@-webkit-keyframes heading_run {
  0% {
    left: 0;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes heading_mobile_run {
  0% {
    left: 0;
  }

  50% {
    left: 78%;
  }

  100% {
    left: 0;
  }
}

.heading_animation_box {
  float: left;
  width: auto;
  border-bottom: 1px solid #b8c8d5;
  position: relative;
  padding: 0 0 20px 0;
  font-family: 'Gotham-Black';
  text-transform: uppercase;
}

.left_animation_img {
  float: left;
  position: absolute;
  -webkit-animation: linear infinite;
  animation-name: none;
  animation-duration: 0s;
  -webkit-animation-name: heading_run;
  -webkit-animation-duration: 5s;
  width: 80px;
  height: 3px;
  background-color: #23435b;
  bottom: 0;
  margin: 0 0 -2px 0;
}

/* -----HEADING-ANIMATION-END-------- */

/* -------AWARD-START---------- */
.award_mainbox {
  background-image: url("../images/aerospace/award_bg.png");
  padding: 100px 0;
}

.awards_list {
  float: left;
  width: 100%;
  padding: 0 10px;
}

.awards_list_inner {
  float: left;
  width: 100%;
  background-color: #fff;
}

.awards_img {
  background-image: url("../images/aerospace/award_img_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  float: left;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  text-align: center;
  justify-content: center;
}

.awards_img img {
  width: auto !important;
  max-height: 100px;
  display: inline !important;
}

.awards_heading {
  float: left;
  width: 100%;
  min-height: 80px;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.award_mainbox .left_animation_img {
  background-color: #fff;
}

/* -------AWARD-END---------- */

/* -------TESTIMONIALS-START---------- */
.owl-carousel_testimonials_aerospace {
  margin-bottom: 20px;
}


.aerospace_testi_left{
  float: right;
  width: 30%;
}
.aerospace_testi_right{
  float: left;
  width: 70%;
}

.what_customer_text {
  font-family: Gotham-Medium;
  font-size: 40px;
  color: #4E7779;
  line-height: normal;
}

.testi_content {
  font-size: 15px;
  line-height: 21px;
  margin: 0 0 30px 0;
}

.testi_heading {
  font-size: 18px;
  color: #192B43;
  font-weight: 600;
}




/* -------TESTIMONIALS-END---------- */

/* -------NEWS-FEEDS-START---------- */
.press_listing_mainbox {
  background-image: linear-gradient(#84bec0, #507b7f);
  /* margin-bottom: 10px; */
}

.press_img {
  width: 50%;
}

.press_rightbox {
  width: 50%;
  padding: 70px 30px;
  color: #fff;
  line-height: normal;
}

.press_date {
  font-size: 13px;
  padding: 0 0 10px 0;
}

.press_heading {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 10px 0;
}

.press_content {
  font-size: 16px;
  line-height: 23px;
}

.news_box {
  background-color: #6d747e;
  width: 100%;
  padding: 70px 30px 20px 30px;
  height: 100%;
}

.date_content {
  min-height: 170px;
}

/* -------NEWS-FEEDS-END---------- */


/* --------SLIDER-ARROW-START------- */
.owl-nav {
  margin: 30px 0 0 0;
  float: right;
  width: auto;
}

.owl-nav div {
  background-image: url("../images/aerospace/black_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  margin: 0 10px;
  font-size: 0;
  height: 16px;
  float: left;
  transition-duration: 0.3s;
}

.owl-nav div:hover {
  background-image: url("../images/aerospace/black_arrow_hover.png");
  width: 73px;
}

.owl-nav .owl-next {
  transform: scaleX(-1);
}


.owl-carousel_awards_airospace .owl-nav div {
  background-image: url("../images/aerospace/white_arrow.png");
}

.owl-carousel_awards_airospace .owl-nav div:hover {
  background-image: url("../images/aerospace/white_arrow_hover.png");
}


.owl-carousel_testimonials_aerospace .owl-nav {
  margin: 0px 0 0 0;
  position: relative;
}


.owl-carousel_capabilities .owl-nav {
  float: left;
  position: relative;
  margin: -100px 0 0 370px;
}

.owl-carousel_capabilities {
  position: relative;
  z-index: 1;
}

/* --------SLIDER-ARROW-END------- */


/* -------------EMPLOYEE-SLIDER-START---------- */
.employee_slider_mainbox #sync_1 .owl-nav {
  display: none;
}

.employee_slider_mainbox #sync_1 .owl-dots {
  display: none;
}

.employee_slider_mainbox #sync_2 .owl-dots {
  display: none;
}

.employee_slider_mainbox #sync_2 {
  margin: 0 0 -40px 0;
  border: 8px solid #fff;
}

.employee_slider_mainbox #sync_1 {
  background-image: url("../images/aerospace/employee_slider_shadow.png");
  padding: 0 0 70px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.employee_slider_mainbox #sync_2 .owl-nav {
  margin: -40px 0 0 0;
  float: right;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.employee_slider_mainbox #sync_2 .owl-nav div {
  background-image: url("../images/aerospace/black_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  margin: 0 0 0 -80px;
  font-size: 0;
  height: 16px;
  float: left;
  transition-duration: 0.3s;
  background-color: transparent;
}

.employee_slider_mainbox #sync_2 .owl-nav div:hover {
  background-image: url("../images/aerospace/black_arrow_hover.png");
  width: 73px;
}

.employee_slider_mainbox #sync_2 .owl-nav .owl-next {
  transform: scaleX(-1);
  margin: 0 -80px 0 0;
  right: 0;
  float: right;
}

.employee_slider_mainbox .employee_smallimg {
  cursor: pointer;
  padding: 0 5px;
}

/* -------------EMPLOYEE-SLIDER-END---------- */

.news_feeds_mainbox {
  padding: 130px 0 60px 0;
}


/* -------------COMPONENT-DETAILS-MAINBOX-START---------- */
.component_details .fixedwing_sliderbox .owl-nav {
  margin: -120px 0 0 -140px;
}

.component_details .rotorywing_sliderbox .owl-nav {
  margin: -120px -160px 0 0;
  float: right;
}

.owl-carousel_capabilities.carousel_defence_aerospace .owl-nav {
    margin: 30px 0 0 0;
    float: none;
    display: flex;
    justify-content: center;
}
.component_details_tabmainbox button {
  width: 24%;
  background-color: #f2f2f2;
  border: 10px solid #fff;
  font-size: 18px;
  color: #6D747E;
  line-height: normal;
  padding: 23px 0;
  font-weight: 600;
  position: relative;
  margin: 0 0 30px 0;
  font-family: Gotham-Regular;
}

.component_details_tabmainbox .tabcontent {
  display: none;
}

.component_details_tabmainbox .active {
  background-color: #4e7779;
  color: #fff;
}

.component_details_tabmainbox .active::after {
  content: '';
  background-image: url("../images/aerospace/component_button_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 40px;
  height: 20px;
  left: 0;
  right: 0;
  bottom: 1px;
  top: inherit;
  margin: 0 auto -20px;
  z-index: 50;
}

.component_details_tabmainbox .tabcontent2 {
  display: none;
}

.component_details_tabmainbox .active2 {
  background-color: #4e7779;
  color: #fff;
}

.component_details_tabmainbox .active2::after {
  content: '';
  background-image: url("../images/aerospace/component_button_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 40px;
  height: 20px;
  left: 0;
  right: 0;
  bottom: 1px;
  top: inherit;
  margin: 0 auto -20px;
  z-index: 50;
}


.component_details_tabmainbox .tabcontent3 {
  display: none;
}

.component_details_tabmainbox .active3 {
  background-color: #4e7779;
  color: #fff;
}

.component_details_tabmainbox .active3::after {
  content: '';
  background-image: url("../images/aerospace/component_button_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 40px;
  height: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  top: inherit;
  margin: 0 auto -20px;
  z-index: 50;
}

.animation_mainbox {
  position: relative;
}

.arrow_animaion_box {
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  margin: 50px 0 0 40px;
  opacity: 0.2;
  transition-duration: 0.3s;
}

.arrow_text {
  float: left;
  background-color: #4e7779;
  width: 100%;
  height: auto;
  font-size: 21px;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}

.arrow_symbol {
  float: left;
  background-image: url("../images/aerospace/animation_arrow.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  width: 230px;
  position: absolute;
  height: 30px;
  margin: 69px 0 0 270px;
  transform: scale(0);
}


.arrow_animaion_box:hover {
  opacity: 1;
}

.arrow_ani_1:hover .arrow_symbol {
  transform: rotate(-346deg);
}


.arrow_ani_2 {
  margin: 230px 0 0 90px;
}

.arrow_ani_2:hover .arrow_symbol {
  transform: rotate(-356deg);
  width: 100px;
  margin: 20px 0 0 160px;
}


.arrow_ani_3 {
  margin: 380px 0 0 180px;
}

.arrow_ani_3:hover .arrow_symbol {
  transform: rotate(-376deg);
  width: 160px;
  margin: -20px 0 0 120px;
}


.arrow_ani_4 {
  margin: 30px 0 0 650px;
}

.arrow_ani_4:hover .arrow_symbol {
  transform: rotate(-220deg);
  width: 285px;
  margin: 131px 0 0 -206px;
}



.arrow_ani_5 {
  margin: 30px 0 0 840px;
}

.arrow_ani_5:hover .arrow_symbol {
  transform: rotate(-220deg);
  width: 275px;
  margin: 121px 0 0 -246px;
}


.arrow_ani_6 {
  margin: 280px 0 0 1020px;
}

.arrow_ani_6:hover .arrow_symbol {
  transform: rotate(-170deg);
  width: 305px;
  margin: -9px 0 0 -306px;
}


.arrow_ani_7 {
  margin: 440px 0 0 930px;
}

.arrow_ani_7:hover .arrow_symbol {
  transform: rotate(-156deg);
  width: 435px;
  margin: -96px 0 0 -441px;
}

.arrow_ani_8 {
  margin: 500px 0 0 500px;
}

.arrow_ani_8:hover .arrow_symbol {
  transform: rotate(-110deg);
  width: 130px;
  margin: -80px 0 0 -26px;
}

.arrow_ani_8:hover .arrow_symbol2 {
  transform: rotate(-52deg);
  margin: -136px 0 0 43px;
  width: 296px;
}

/* -------------COMPONENT-DETAILS-MAINBOX-END---------- */

/* -------------VERTICAL-TABBING-START---------- */
.vertical_tabbing_box .tabcontent {
  display: none;
}

.vertical_tabbox {
  float: left;
}

.vertical_tabbox button {
  float: left;
  clear: both;
  background: none;
  border: 0;
}

.vertical_tabbing_box .tabcontent2 {
  display: none;
}

/* -------------VERTICAL-TABBING-END---------- */



html {
  scroll-behavior: smooth;
}

.top_icon {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #4e7779;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding: 14px;
  opacity: 0.3;
  margin: 0 10px 10px 0;
}

.top_icon:hover {
  opacity: 1;
}

.top_icon img {
  float: left;
}

.aerospace_menufix {
  border-bottom: 2px solid #6191af;
  text-align: center;
  margin-bottom: 40px;
}

.aerospace_menufix_inner {
  /* max-width: 780px;
  margin: 0 auto; */
  display: flex;
  justify-content: center;
}

.aerospace_menufix span {
  background-color: #f1f1f1;
  font-size: 16px;
  color: #000;
  padding: 15px 40px;
  line-height: normal;
  border-radius: 10px 10px 0 0;
  float: left;
  margin: 0 5px;
  font-weight: 600;
  font-family: Gotham-Regular;
  text-decoration: none;
  cursor: pointer;
}

.aerospace_menufix span:hover {
  background-color: #4e7779;
  color: #fff;
}

/* ------------------ */
.press_list {
  display: flex;
  align-items: center;
}

.page_navigation {
  color: #fff;
}

.aerospace_about_rightbox {
  padding: 0 0 0 50px;
}

.breadcrum {
  font-family: Gotham-Regular;
}

.heading_center {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* quility certification start */

.qauality_content.what_customer_text {
  font-size: 13px;
}

.quality_imgbox {
  position: relative;
}

.qauality_content {
  position: absolute;
  left: 0;
  top: 33%;
  text-align: center;
  width: 100%;
  height: 100%;
}

/* .qauality_img img {
  max-width: 180px;
} */

.qauality_img {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.quality_left_mainbox {*/
/*  background-color: #f9f9f9;*/
/*  padding: 20px;*/
/*  height: 100%;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*}*/
.quility_section_mainbox{
        background: #f9f9f9;
}
.quality_left_mainbox {
    background-color: #f9f9f9;
    padding: 20px;
    height: 100%;
    vertical-align: middle;
    min-height: 640px;
    float: none;
    align-content: center;
}
.quality_listing {
    background-color: #f9f9f9;
}
.quality_listing_margin {
  margin: 0 0 20px 0;
}

.quality_right_mainbox {
  background-color: #ccc;
  padding: 20px 20px 40px 20px;
}

.quality_right_contentbox {
  background-color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 10px;
  line-height: 22px;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.owl-carousel_capabilities.carousel_capabilities_quality .owl-nav {
  margin: -26px 0 0 352px;
}

.quality_right_imgbox {
  width: 100%;
  height: 200px;
  padding: 10px;
}

.quality_right_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* quility certification ends */
/* Contact us page start */

.contact_section {
  position: relative;
  padding: 0 0 60px 0;
}

.contact_us_rightbox {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  padding: 40px;
}

.contact_us_rightbox {
  background-color: #fff;
  box-shadow: 0 0 20px #ccc;
}

.contact_us_heading {
  font-size: 44px;
  color: #000000;
  line-height: normal;
  font-family: Gotham-Black;
  text-transform: uppercase;
}

.contact_us_details {
  margin: 20px 0 0 0;
}

.contact_us_adderess {
  margin: 20px 0 0 0;
}

.contact_us_details a {
  text-decoration: none;
  color: #6D747E;
}

.contact_us_details a:hover {
  color: #F57957;
}

.contact_us_details span {
  margin: 0 10px 0 0;
}

/* Contact us page ends */

.our_customer_heading {
  font-family: Gotham-Medium;
  font-size: 20px;
  color: #4E7779;
  line-height: normal;
  margin: 0 0 20px 0;
  text-align: center;
}

.our_customers_section {
  padding: 130px 0 60px 0;
}

.our_customer_listing {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 0px #ccc;
}

.margin_top {
  margin: 20px 0 0 0;
}

.margin_top_10 {
  margin: 10px 0 0 0;
}

.our_customer_imgbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.our_customer_img {
  width: 192px;
  height: 100px;
  padding: 10px;
  border: 1px solid #ccc;
}

.our_customer_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.press_heading a {
  color: #ffffff;
  text-decoration: none;
}

.press_heading a:hover {
  color: #b8c8d5;
}

.press_date a:hover {
  color: #b8c8d5;
}

.press_date a {
  color: #ffffff;
  text-decoration: none;
}

.page_navigation {
  margin: 140px 0 0 0;
}

.our_customers_section .tabcontent2 {
  display: none;
}

.our_customers_section .component_details_tabmainbox button {
  width: 15%;
  font-size: 14px;
  padding: 15px 0;
}

.or_customer_logo_listing {
  border: 1px solid #b8c8d5;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.or_customer_logo_listing img {
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: contain;
}

.process_page_section {
  padding: 0 0 60px 0;
}

.wings_mainbox {
  position: relative;
}

.wings_content {
  position: absolute;
  bottom: 18%;
  padding: 10px 20px;
  font-weight: bold;
  background-image: linear-gradient(#84bec0, #507b7f);
  color: #fff;
  width: 100%;
  font-family: Gotham-Regular;
  font-size: 14px;
  line-height: normal;
}

.wings_content ul {
  list-style-type: disclosure-closed;
  margin: 0;
  padding: 0 10px;
}

.Differentiator {
  padding: 0 0 60px 0;
}

/* sticky header starts */

.sticky_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  transition: all 0.5s ease;
  animation: smoothScroll 1s forwards;
  z-index: 9999;
  box-shadow: 5px 5px 10px #ccc;
  border-radius: 0;
}

.aerospace_menubox.sticky_menu {
  padding: 10px 0;
}

.sticky_menu .menu_icon {
  display: none;
}

.aerospace_menubox .active .menu_text {
  font-weight: bold;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-142px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* sticky header ends  */

.scroll_hide {
  visibility: hidden;
}

.current .scroll_hide {
  visibility: visible;
}

.banner_imgContent {
  bottom: 18%;
}

.page_navigation_aerospace {
  margin: 15px 0 0 0;
  /* position: absolute;
  bottom: 12%;
  left: 5.5%; */
}

.quility_section .carousel_capabilities_quality {
  background-color: #ccc;
}

.banner_subText {
  margin: 10px 0 0 0;
}

.wings_content ul li {
  padding: 0 0 10px 0;
}

.diff_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* menu bar start */
.aerospace_mainbox {
  color: #6D747E;
  font-size: 18px;
  line-height: 28px;
}


.othermenu_heading {
  display: none;
}

.othermenu_close {
  display: none;
}

/* menu bar ends */

.product_details_main .text24_black {
  display: block;
  margin: 0 0 10px 0;
}

.defence_para {
  height: 100%;
  display: flex;
  align-items: center;
}


/* -----------DEFANCE-PAGE-START-------- */
.defence_main .defence button{
  width: auto;
  padding: 23px 30px;
}
.dot_list{
  padding-left: 35px;
}
.dot_list::before{
  content: '';
  width: 8px;
  height: 8px;
  background-color: #4e7779;
  float: left;
  border-radius: 100px;
  margin: 10px 0 0 -20px;
  position: absolute;
}
.defance_color_box{
  background-color: #fdfaf5;
  padding: 30px;
  border-radius: 10px;
}
/* -----------DEFANCE-PAGE-END-------- */

/*Slick slider menu start*/

.mobile_tabing_listing {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    background-color: #f2f2f2;
    margin: 0 10px;
    line-height: normal;
    font-weight: 600;
}

.slick-current .mobile_tabing_listing {
    position: relative;
    background-color: #4e7779;
    color: #ffffff;
    margin: 0 10px 20px 10px;
}

.slick-current .mobile_tabing_listing::after {
    content: '';
    background-image: url(../images/aerospace/component_button_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 40px;
    height: 20px;
    left: 0;
    right: 0;
    bottom: 1px;
    top: inherit;
    margin: 0 auto -20px;
    z-index: 50;
}

.slider-for {
    margin: 20px 0 0 0;
}

.slider-for {
    margin: 20px 0 0 0;
}

/*Slick slider menu ends*/

.float_right {
    float: right;
}

.float_left {
    float: left;
}

.owl-carousel_capabilities_mobile.owl-carousel.owl-loaded {
    display: none;
}


@media screen and (max-width:1400px) {
  .aerospace_menubox li {
    float: left;
    width: auto;
    text-align: center;
    padding: 0px 12px;
  }

  .owl-carousel_capabilities.carousel_capabilities_quality .owl-nav {
    margin: -26px 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .wings_content p {
    line-height: 22px;
  }

  .product_details_main.component_details .fixedwing_sliderbox .owl-nav {
    margin: -95px 0 0 -140px;
  }

  .product_details_main.component_details .rotorywing_sliderbox .owl-nav {
    margin: -95px -160px 0 0;
  }

  .quality_right_contentbox {
    min-height: 84px;
  }

  .qauality_content.what_customer_text {
    font-size: 12px;
  }

  .awards_heading {
    font-size: 16px;
}

/*.round_img_animation {*/
/*  margin: 0 0 0 0;*/
/*}*/

}

@media screen and (max-width:1200px) {

  .aerospace_menubox .menu_icon {
    margin: 0 0 5px 0;
  }

  .aerospace_menubox li {
    padding: 0px 8px;
  }

  .aerospace_menubox .menu_icon img {
    max-width: 30px;
  }

  .qauality_content.what_customer_text {
    font-size: 13px;
  }

  .our_customers_section .component_details_tabmainbox button {
    width: 16%;
    font-size: 13px;
  }

  .quality_right_imgbox {
    height: 120px;
  }

  .quality_right_contentbox {
    font-size: 12px;
  }

  .aerospace_menubox {
    padding: 25px 10px 18px 10px;
  }

  .wings_content p {
    line-height: 20px;
  }

  .wings_content {
    font-size: 12px;
  }

  .component_details_tabmainbox button {
    border: 0px solid #fff;
    font-size: 16px;
  }

  .product_details_main.component_details .fixedwing_sliderbox .owl-nav {
    margin: 5px 0 0 -140px;
}

.product_details_main.component_details .rotorywing_sliderbox .owl-nav {
  margin: 30px -160px 0 0;
}

.product_list_animationbox .product_list_heading {
  margin: 70px 0 20px -10px;
}

.qauality_img img {
  max-width: 120px;
}

.qauality_content.what_customer_text {
  font-size: 10px;
}

.heading34_black {
  font-size: 35px;
  line-height: normal;
}
.heading34_bold_green {
  font-size: 35px;
}

.heading34_bold_black {
  font-size: 35px;
}

.contact_us_heading {
  font-size: 35px;
}

.mobile_tabing_listing {
    font-size: 12px;
}

}

@media screen and (max-width:992px) {


  .heading_animation_box {
    width: 100%;
    margin-bottom: 20px;
  }

  /* --------PRODUCT-3-SLIDES-START----------- */
  .product_animation_list {
    min-width: 100%;
  }

  .product_list {
    height: auto;
    padding: 30px 60px;
  }

  .product_list div {
    display: block;
  }

  .product_list_heading {
    margin-top: 10px !important;
  }

  /* --------PRODUCT-3-SLIDES-END----------- */


  /* -------AWARD-START---------- */
  .award_mainbox {
    padding: 30px 0;
  }

  /* -------AWARD-END---------- */


  /* -------TESTIMONIALS-START---------- */
  .owl-carousel_testimonials_aerospace {
    margin-bottom: 70px;
  }
  .aerospace_testi_left{
    width: 100%;
    text-align: center;
  }
  .aerospace_testi_right{
    width: 100%;
  }
  .aerospace_testi_quote{
    display: none;
  }

  /* -------TESTIMONIALS-END---------- */


  /* -------NEWS-FEEDS-START---------- */
  .press_rightbox {
    padding: 40px 30px;
  }

  /* -------AEROSPACE-MENU-START---------- */
  .aerospace_menubox ul {
    /* max-width: 300px; */
    margin: 0 auto;
    float: none;
  }

  .aerospace_menubox li {
    width: 50%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 0 0 10px 0;
    margin: 7px 0 0 0;
    display: flex;
    align-items: center;
  }

  .aerospace_menubox li a {
    display: flex;
    align-items: center;
  }

  .aerospace_menubox .menu_icon {
    width: 26px;
    margin: 0 10px 0 0;
    min-height: inherit;
  }

  .aerospace_menubox .menu_icon img {
    max-width: 20px;
    aspect-ratio: 2/2;
    object-fit: contain;
  }

  .aerospace_menubox .menu_text {
    clear: none;
    color: #000;
    text-align: left;
    width: auto;
  }

  .aerospace_menubox ul {
    display: block;
  }

  /* -------AEROSPACE-MENU-END---------- */

  .aerospace_menubox.aerospace_menubox_maipage li .menu_icon {
    opacity: 1;
  }

  .padding_mobile {
    padding-bottom: 0 !important;
  }

  .qauality_content.what_customer_text {
    font-size: 16px;
  }

  .quality_right_imgbox {
    height: 200px;
  }

  .our_customers_section .component_details_tabmainbox button {
    border: 0;
  }

  .our_customers_section .component_details_tabmainbox button {
    width: 17%;
    font-size: 11px;
    margin: 0 0 20px 0;
  }

  .our_customers_section .component_details_tabmainbox .active2::after {
    display: none;
  }

  .aerospace_menubox {
    padding: 25px 30px 18px 30px;
  }

  .banner_subText {
    margin: 0;
  }

  .or_customer_logo_listing {
    margin: 20px 0 0 0;
  }

  .heading_animation_box {
    padding: 0 0 10px 0;
  }

  .heading34_bold_green {
    font-size: 35px;
  }

  .heading34_bold_black {
    font-size: 35px;
  }

  .contact_us_heading {
    font-size: 35px;
  }

  .contact_us_rightbox {
    position: unset;
    transform: translateY(0);
    width: 100%;
    padding: 40px;
  }

  .contact_us_leftbox iframe {
    height: 400px !important;
  }

  .contact_section {
    padding: 0 0 0px 0;
  }

  .component_details_tabmainbox button {
    width: 19%;
    font-size: 14px;
    padding: 15px 0;
    margin: 0 0 20px 0;
  }

  .component_details_tabmainbox .active::after {
    display: none;
  }

  .defence {
    padding: 0 20px 0 0 !important;
  }

  .defence_para {
    font-size: 16px;
    min-height: 75px;
  }

  .aerospace_menufix span {
    padding: 15px 10px;
    width: 30%;
}

  .product_details_main.component_details .fixedwing_sliderbox .owl-nav {
    margin: 0 0 40px 0;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .product_details_main.component_details .rotorywing_sliderbox .owl-nav {
    margin: 0 0 40px 0;
    display: flex;
    width: 100%;
    justify-content: center;
}

.component_details_tabmainbox .active2::after {
  display: none;
}

.component_details_tabmainbox .active3::after {
  display: none;
}

.heading34_black {
  font-size: 35px;
}

.quality_right_contentbox {
  justify-content: center;
}

.mobile_below_margin {
  margin: 20px 0 0 0;
}

.order-below-sm-1 {
  order: 1;
}

.order-below-sm-2 {
  order: 2;
}

.padding_zero {
  padding: 0!important;
}

.aerospace_about_rightbox {
  padding: 0;
  text-align: center;
}

.owl-carousel_testimonials_aerospace .owl-nav {
  margin: 0px 0 0 0;
}


/* --------SLIDER-ARROW-START------- */
.owl-nav{
  margin: 30px auto 0 !important;
  float: none;
  width: 110px;
}

.owl-nav div {
  background-image: url("../images/aerospace/white_arrow.png") !important;
  width: 30px !important;
  background-color: #4e7779!important;
  height: 30px !important;
  background-size: 11px!important;
  border-radius: 0!important;
}
/* --------SLIDER-ARROW-END------- */

.product_list_animationbox .product_list_heading {
  margin: 70px 0 20px 0;
}

/*.round_img_animation {*/
/*  margin: 0 10px 0 0;*/
/*}*/

.qauality_img img {
  max-width: 100%;
}

.owl-carousel_capabilities.carousel_capabilities_quality .owl-nav {
  margin: 20px 0 !important;
}

.owl-carousel_testimonials_aerospace .owl-nav {
  margin: 20px 0 0 0!important;
  display: flex;
  width: 100%;
  justify-content: center;
}

.defence_main .owl-carousel_capabilities .owl-nav {
  margin: 10px 0 10px 0 !important;
  display: flex;
  width: 100%;
  justify-content: center;
}

.product_details_main .owl-carousel_capabilities .owl-nav {
  margin: 0px 0 10px 0 !important;
}

.owl-carousel_awards_airospace .owl-nav {
  display: flex;
  width: 100%;
  justify-content: center;
}

.banner_imgContent {
    width: 95%;
    margin: 0 auto;
    float: none;
    bottom: 5%;
    right: 0%;
    left: 0%;
    padding: 10px 20px;
}

}

@media screen and (max-width:768px) {

  /* -------NEWS-FEEDS-START---------- */
  .press_img {
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
  }

  .press_img img {
    max-height: 260px;
  }

  .press_rightbox {
    width: 100%;
    text-align: center;
  }

  .date_content {
    min-height: inherit;
  }

  /* -------NEWS-FEEDS-END---------- */

  .banner_heading {
    font-size: 41px;
  }

  .our_customers_section .component_details_tabmainbox button {
    width: 100%;
    font-size: 13px;
  }

  .our_customers_section .component_details_tabmainbox button {
    margin: 0 0 10px 0;
  }

  .employee_slider_mainbox #sync_2 .owl-nav {
    margin: 30px 0 0 0;
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .banner_text {
    font-size: 20px;
  }

  .page_navigation_aerospace {
    margin: 10px 0 0 0;
  }

  .wings_content {
    bottom: 10%;
  }

  .defence button {
    width: 24% !important;
  }

  .defence_para {
    font-size: 13px;
  }

  .aerospace_menufix span {
    padding: 15px 10px;
    font-size: 14px;
    width: auto;
}

.heading34_black {
  font-size: 25px;
  line-height: normal;
}
.heading34_bold_green {
  font-size: 25px;
}

.heading34_bold_black {
  font-size: 25px;
}

.contact_us_heading {
  font-size: 25px;
}

  /* -------TESTIMONIALS-START---------- */
  .what_customer_text {
    font-size: 30px;
  }

  /* -------TESTIMONIALS-END---------- */
    /* menu bar start */
    .othermenu_heading {
      background-image: url("../images/aerospace/toggle_menu_icon.png");
      background-position: 116px 12px;
      background-size: 11px;
      background-repeat: no-repeat;
      display: block;
      padding: 8px 11px 8px 0;
      font-size: 13px;
      line-height: normal;
      background-color: #4E7779;
      color: #fff;
      border-radius: 15px 15px 0 0;
      width: 140px;
      cursor: pointer;
      margin: 0 auto 0;
      left: 0;
      right: 0;
      position: absolute;
      z-index: 5000000;
      bottom: 0;
      font-family: Gotham-Regular;
    }
  
    .othermenu_close {
      position: relative;
      color: #fff;
      font-weight: bold;
      line-height: normal;
      padding: 4px 0;
      background-color: #000;
      float: left;
      width: 100%;
      display: block;
    }
  
    .below_banner_menu {
      position: fixed;
      left: 0;
      z-index: 5;
      width: 100%;
      top: inherit;
      text-align: center;
      bottom: 0;
    }
  
    .below_banner_menu .aerospace_menubox {
      border-radius: 0;
      background-color: #41686a;
      width: 170px;
      margin: 0 auto -420px;
      position: absolute;
      left: 0;
      right: 0;
      padding: 0px 0 50px 0;
      transition-duration: 0.3s;
      bottom: 0;
    }
  
    .below_banner_menu_open .aerospace_menubox {
      margin: 38px auto 0;
    }
  
    .aerospace_menubox li {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  
    .below_banner_menu_open .aerospace_menubox li .menu_icon {
      display: none;
    }
  
    .below_banner_menu_open .aerospace_menubox li a {
      width: 100%;
      text-decoration: none;
    }
  
    .below_banner_menu_open .aerospace_menubox li .menu_text {
      color: #fff;
      padding: 6px 0 6px 0;
      font-size: 12px;
      width: 100%;
      text-align: center;
    }
  
    .aerospace_menubox .menu_icon img {
      max-width: 10px;
    }

    .aeroplain_animation .marquee-parent {
      height: 63px;
  }

  .aeroplain_animation .marquee-child {
    width: 250px;
  }

  .aeroplain_animation2 .marquee-parent {
    height: 63px;
  }

  .aeroplain_animation2 .marquee-child {
    width: 250px;
  }
  
      .banner_img {
        height: auto;
    }
    
    .banner_text {
    font-size: 20px;
    }
    
    .banner_subText {
    margin: 0;
    font-size: 20px;
    }
    
    .page_navigation_aerospace {
    margin: 10px 0 0 0;
    }
    
    .diff_content {
    justify-content: center;
    align-items: center;
    text-align: center;
    }
    
    .banner_img img {
    height: auto;
}
  
    /* menu bar ends */
    
    .float_right {
    float: none;
}

.float_left {
    float: none;
}

.list_margin_bottom {
    margin: 20px 0 0 0;
}

}

@media screen and (max-width:576px) {
  .qauality_img img {
    max-width: 150px;
  }

  .aerospace_menubox li {
    width: 100%;
  }

  .aerospace_menubox ul {
    max-width: 300px;
  }

  .aerospace_menubox .menu_icon {
    margin: 0 40px 0 0;
  }

  .aerospace_menubox .menu_icon img {
    max-width: 100%;
  }

  .banner_imgContent {
    bottom: 30%;
  }

  .wings_content {
    position: relative;
  }

  .wings_imgbox {
    width: 100%;
    height: 160px;
  }

  .wings_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .defence button {
    width: 100% !important;
    margin: 0 0 10px 0px;
  }

  .defence {
    padding: 0 20px !important;
  }

  .defence_para {
    font-size: 16px;
  }

  .aerospace_menufix {
    border-bottom: 0;
    margin-bottom: 0px;
}

.aerospace_menufix span {
  font-size: 14px;
  width: 100%;
  margin: 0 0 10px 0;
  border-radius: 10px;
}

.component_details_tabmainbox button {
  width: 100%;
  margin: 0 0 10px 0;
}

.component_details_mainbox .aeroplain_animation {
  margin: 20px 0 0 0;
}

.diff_content {
  gap: 10px;
  margin: 0 0 10px 0;
}

.defence_para {
    min-height: unset;
    margin: 0 0 20px 0;
}

.aerospace_menufix_inner {
  display: block;
}

.banner_subText {
    font-size: 14px;
    padding: 1px 0 0 0;
    line-height: 20px;
}

.component_details_mainbox .heading_animation_box {
    margin: 0 0 30px 0;
}

.component_details_mainbox .rotorywing_sliderbox {
    margin:140px 0 0 0;
}

.or_customer_logo_listing img {
    aspect-ratio: 3/1;
}

.round_img_animation {
    display: none;
}

.what_customer_text {
    margin: 0 0 10px 0;
}

.testi_content {
    text-align: center;
}

.testi_heading {
    text-align: center;
}

.banner_imgContent {
    bottom: 15%;
}

.left_animation_img {
    -webkit-animation-name: heading_mobile_run;
}

.or_customer_logo_listing {
    margin: 20px 5px 0 5px;
}

/*.product_details_main_new p {*/
/*    text-align: center;*/
/*}*/

.product_details_main.product_details_main_new .owl-carousel_capabilities .owl-nav {
    margin: 0px 0 20px 0 !important;
}

.pb-5.heading34_black {
    padding-bottom: 20px !important;
}

.heading34_bold_green.pb-5 {
    padding-bottom: 20px !important;
}

.heading34_bold_black.pb-5 {
    padding-bottom: 20px !important;
}

.pb-5.mobile_padd_bottom {
    padding-bottom: 20px !important;
}

.pb-4.mobile_padd_bottom {
    padding-bottom: 20px !important;
}

.pb-4.mobile_padd_bottom_home {
    padding-bottom: 20px !important;
}

.pb-4.mobile_padd_bottom_product {
    padding-bottom: 0px !important;
}

.pt-5.mobile_padd_top {
    padding-top: 0px !important;
}

.pt-5.mobile_padd_top_product {
    padding-top: 20px !important;
}

.pt-4.mobile_padd_top {
    padding-top: 0px !important;
}

.pb-3.mobile_padd_bottom {
    padding-bottom: 0px !important;
}

.pb-4.mobile_padd_bottom {
    padding-bottom: 0px !important;
}

.margin_top_new {
    margin:0;
}

.diff_img {
    margin: 0 0 10px 0;
}

.defence_para {
    max-width: 230px;
}

.owl-carousel_capabilities_desk.owl-carousel.owl-loaded {
    display: none;
}

.owl-carousel_capabilities_mobile.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel_capabilities_mobile .mobile_below_margin {
    margin: 0;
}

.owl-carousel_capabilities_mobile .owl-nav div {
    position: relative;
}

.owl-carousel_capabilities_mobile .owl-nav {
    margin: -44px auto 0 !important;
}

.award_mainbox {
    margin: 80px 0 0 0;
}

.owl-carousel_capabilities_mobile .quality_right_contentbox {
    text-align: center;
}

.owl-carousel_testimonials_aerospace {
    margin-bottom: 20px;
}

.our_customers_section {
    padding: 134px 0 60px 0;
}

.heading_animation_box {
    margin-bottom: 0px;
}

#capability_section .heading_animation_box {
    margin-bottom: 20px;
}

#testimonial_section .heading_animation_box {
    margin-bottom: 20px;
}

#landapplications .heading_animation_box {
    margin-bottom: 20px;
}

#marineapplications .heading_animation_box {
    margin-bottom: 20px;
}

#aviationaapplication .heading_animation_box {
    margin-bottom: 20px;
}

.or_customer_logo_listing {
    padding: 10px;
}

.Differentiator {
    padding: 0 0 20px 0;
}

.component_details_mainbox .heading_animation_box {
    margin: 0 0 20px 0;
}

.para_center {
    text-align: center;
}

.para_group_padd {
    padding: 0 0 30px 0;
}

.list_margin_bottom.common_margin_bottom {
    margin: 20px 0;
}

.common_margin_bottom {
    margin:0 0 20px 0;
}

.ring_assembly_mainbox {
    display: flex;
    flex-direction: column;
}

.footer_padding {
    padding: 0 0 40px 0;
}

.product_detail_mobile_heading {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact_section {
    padding: 0 0 48px 0;
}

.qauality_content.what_customer_text {
    font-size: 13px;
}

.land_application_margin_top {
    margin: 20px 0 0 0;
}

.aero_marin10 {
    margin: 10px 0 0 0;
}
.aero_marin20 {
    margin: 20px 0 0 0;
}

.container .text-center.aero_marin_new10 {
    margin: 20px 0 0 0;
}

.container .text-center.aero_marin_new20 {
    margin: 10px 0 0 0;
}

}


/*container css start*/

/*@media (min-width: 1400px) {*/
/*    .container{*/
/*        max-width: 1320px;*/
/*    }*/
/*}*/
/*@media (min-width: 1200px) {*/
/*    .container{*/
/*        max-width: 1140px;*/
/*    }*/
/*}*/
/*@media (min-width: 992px) {*/
/*    .container {*/
/*        max-width: 960px;*/
/*    }*/
/*}*/
/*@media (min-width: 768px) {*/
/*    .container {*/
/*        max-width: 720px;*/
/*    }*/
/*}*/
/*@media (min-width: 576px) {*/
/*    .container {*/
/*        max-width: 540px;*/
/*    }*/
/*}*/

/*container css end*/

