@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red-color: #cc121b;
  --light-red-color: #ffe1e2;
  --black-color: #222;
  --light-black-color: #252525;
  --white-color: #ffffff;
  --light-gray: #555;
  --light-white-color: #eee;
  --light-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
  --red-box-shadow: 0 7px 20px -3px #d8232a7d;
  --broad-box-shadow: 0 8px 100px -50px #bdbdbd;
  --border-radius: 8px;
  --main-font: 'Poppins', sans-serif;
  --para-font: "Poppins", sans-serif;
  --blue-color: #140030;
  --bg-gradient:#F07957;
  --bg-gradient: linear-gradient(90deg,rgba(242, 126, 93) 0%, rgba(234, 31, 39) 50%, rgba(206, 34, 42) 100%);
}

::selection {
  color: #fff;
  background: var(--red-color);
}

::-webkit-scrollbar {
  background: #eee;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--red-color);
  border-radius: 20px;
}

/* @font-face {
  font-family: "fibrefont";
  src: url("../fonts/fibrefont.ttf");
}

@font-face {
  font-family: "NexaBold";
  src: url("../fonts/fibrefont.ttf");
}

@font-face {
  font-family: fibrefont;
  src: url("../fonts/fibrefont.ttf");
} */

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3{
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  margin: 0;
}

p {
  font-family: var(--para-font);
  margin: 0;
  color: var(--black-color);
  margin-bottom: 10px;
  font-size: 17px;
}

a {
  text-decoration: none;
}

.section {
  padding: 80px 0px;
  background-image: url(../image/section-bg.png); background-repeat: no-repeat;
}
.main-section {padding-top: 12%;}
.main-section-solution {padding-top: 8% !important;}
.section-heading {background-image: url(../image/heading-bg.png); background-repeat: no-repeat;}
.section-heading h2 {color: #fff;
  font-size: 18px;
  padding: 8px;
  padding-left: 4%;
}

.section-heading-right {background-image: url(../image/heading-bg-right.png); background-repeat: no-repeat; background-position: right;}
.section-heading-right h2 {color: #fff;
  font-size: 18px;
  padding: 8px;
  padding-right: 4%;
  text-align: right;
}

img {
  width: 100%;
}

.theme_btn {
  padding: 7px 20px;
  color: var(--white-color);
  background: var(--bg-gradient);
  display: inline-block;
  font-family: var(--main-font);
  font-weight: 500;
  border: none;
  border-radius: 50px;
  transition: all 0.3s linear;
  /* clip-path: polygon(10% 0, 100% 0, 100% 75%, 95% 100%, 0 100%, 0 41%); */
  position: relative;
  z-index: 1;
  border: 1px solid #0000;
}
.theme_btn a{
  color: var(--white-color);
}


header {
  box-shadow: 0 5px 25px -10px #ddd;
  background: #181b1d;
  z-index: 11;
  position: fixed;
  overflow-x: hidden;
  width: 100%;
}

.sub_heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}


.span_line {
  max-width: 100px;
  margin-top: -40px;
}

.sec_span {
  color: var(--red-color);
  font-weight: 700;
  font-size: 22px;
}

.sec_head {
  color: var(--light-black-color);
  font-weight: 900;
}

.sec_span_title {
  color: var(--red-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  display: none;
}
.toggle_logo img{
    max-width: 100px;
}
h2.sec_head_title {
  color: var(--red-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 36px;
}
.acoustice-para h5 {color:var(--light-white-color); margin-bottom: 15px;}
.acoustice-para p {color:var(--light-white-color);}

.top_header {
  padding: 0 10px 10px 10px;
}

.top_header .header_design {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top_header .menu_design ul {
  display: flex;
  background-color: #333333;
    padding: 2px 25px;
    border-radius: 50px;
}

.top_header .menu_design li {
  margin-right: 20px;
}

.top_header .menu_design li a {
  color: #a7a8a9;
  font-family: var(--main-font);
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease-in-out;
}

.top_header .menu_design li a::before {
  position: absolute;
  content: "";
  width: 0;
  background-color: var(--red-color);
  height: 2px;
  border-radius: 20px;
  bottom: -20px;
  left: 50%;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.top_header .menu_design li a:hover::before {
  position: absolute;
  content: "";
  width: 100%;
  background-color: var(--red-color);
  height: 2px;
  border-radius: 20px;
  opacity: 1;
  left: 0;
  bottom: -4px;
}
.top_header .menu_design li a.active {color: var(--white-color);}
.top_header .menu_design li a.active::before {
  position: absolute;
  content: "";
  width: 100%;  
  background-color: var(--red-color);
  height: 2px;
  border-radius: 20px;
  opacity: 1;
  left: 0;
  bottom: -4px;
}

.top_header .menu_design li a:hover {
  color: var(--white-color);
}

.top_header .toggle_btn {
  display: none;
}

.mobile_device {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient);
  /* border-radius: 0 var(--border-radius) var(--border-radius) 0; */
  /* display: none; */
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transform: translateX(-100%);
  z-index: 999;
}

.mobile_device .toggle_close {
  position: absolute;
  top: 10px;
  right: 18px;
  color: #fff;
  font-size: 28px;
}

.mobile_device .mobile_device_logo img {
  background: #fff;
  border-radius: 4px;
  width: 100px;
  transform: translateY(-8px);
}

.mobile_device_menu {
  height: 70%;
}

.mobile_device_menu ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile_device_menu ul li {
  text-align: center;
  /* margin-bottom: 8px; */
  border-radius: 4px;
  padding-inline: 10px;
}

.mobile_device .mobile_device_menu ul li a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 3px 0;
  display: block;
}

.industries_section .industries_content .industries_head h2 {
  color: var(--light-black-color);
  font-weight: 700;
  font-size: 90px;
  margin-bottom: 15px;
}

.industries_section .swiper-button-next,
.industries_section .swiper-button-prev {
  color: var(--light-black-color) !important;
}

.industries_image img {
  max-width: 100%;
  border-radius: 20px;
}

.satisfication .satisfication_box {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  background: #0000;
  backdrop-filter: blur(25px);
  color: #fff;
  border: 1px solid #eeeeee26;
}

.satisfication .satisfication_box .satisfication_icon i {
  color: var(--red-color);
  font-size: 40px;
  text-shadow: 1px 1px #fff;
}

.satisfication .satisfication_box .satisfication_head h3 {
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  font-family: sans-serif;
}

.satisfication_para p {
  margin: 10px 0;
  color: #fff;
}

.service .service_box {
  background: #ffe4e6;
  border-radius: var(--border-radius);
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  padding: 20px;
  height: 100%;
  outline: 1.5px dashed #d8232a;
  outline-offset: 2px;
}

.service .service_box::before {
  position: absolute;
  content: "";
  background: #d8232a;
  z-index: -1;
  top: -100%;
  left: 0;
  width: 100%;
  transition: 0.4s ease-out;
  height: 100%;
  opacity: 1;
}

.service .service_box:hover {
  outline-offset: 5px;
}

.service .service_box:hover::before {
  top: 0;
}

.service .service_box .service_icon i {
  color: var(--red-color);
  text-align: center;
  font-size: 35px;
  width: 80px;
  height: 80px;
  background: var(--white-color);
  line-height: 80px;
  border-radius: 50%;
}

.service .service_box .service_head h5 {
  color: var(--light-black-color);
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.service .service_box:hover .service_head h5,
.service .service_box:hover .service_para p {
  color: var(--white-color);
}

.service .service_box .service_para p {
  text-align: justify;
}

.acoustice_list ul li {
  position: relative;
  line-height: 2;
  list-style: disc;
}

.acoustice_list ul li p {
  margin: 0;
}

.acoustice_list .div_item p {
  color: var(--light-black-color);
  font-weight: 700;
  margin-left: 30px;
}

.acoustics {margin-top: -10px;}
.acoustics-box-row {padding-top: 50px;}
.acoustics-box {background: var(--bg-gradient); border-radius: 20px; padding: 20px; height:450px;}
.acoustics-box img {width: 25%; filter: brightness(0) invert(1);}
.acoustics-box h5 {color: var(--light-white-color); font-size: 17px; font-weight: bold;}
.acoustics-box p {color: var(--light-white-color); font-size: 17px;}

.about-box-row {padding-top: 50px;}
.about-box {background: var(--bg-gradient); border-radius: 20px; padding: 20px;}
.about-text {font-size: 17px;}
.about-box img {width: 13%; filter: brightness(0) invert(1); padding-bottom: 10px;}
.about-box h5 {color: var(--light-white-color); font-size: 17px; font-weight: bold;}
.about-box p {color: var(--light-white-color); font-size: 17px;}

.why-box-row {padding-top: 20px;}
.why-text {font-size: 17px; color: var(--black-color);}
.why-key h3 {
  background: var(--bg-gradient);
  width: 130px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  padding: 5px;
  margin: 20px 0;
}
.why-box {background: var(--bg-gradient); border-radius: 20px; padding: 20px; margin: 10px 0; height:110px}
.why-box img {width: 60%; filter: brightness(0) invert(1); margin: 0 auto; display: flex;}
.why-box h5 {color: var(--light-white-color); font-size: 17px; font-weight: bold;}
.why-box p {color: var(--light-white-color); font-size: 17px;}

.projects-box-row {margin-top: -80px;}
.projects-text ul {margin-top: 30%;}
.projects-text ul li {font-size: 17px; color: var(--black-color); line-height: 28px;
  background-color: #dcdfe4;
  margin: 10px;
  padding: 5px;
  border-radius: 10px;
  padding-left: 16px;
}


.achievements ul li {font-size: 17px; color: var(--black-color); line-height: 28px;
  background-color: #dcdfe4;
  margin: 10px;
  padding: 5px;
  border-radius: 10px;
  padding-left: 16px;
  margin-left: 0px;
}
.achievements ul li img {width: 47px;float: right; margin-right: 5px;}

.case-heading-up {background-image: url(../image/case-headng-bg-up.png); background-repeat: no-repeat;}
.case-heading-up h3 {color: #fff;
  font-size: 16px;
  padding: 0;
  padding-left: 25%;
}
.case-box { background-color: #ced1d2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px;}
.desk-tm {margin-top: 20px;}
.case-heading-down {background-image: url(../image/case-headng-bg-down.png); background-repeat: no-repeat; background-position:right ;}
.case-heading-down h4 {color: #fff;
  font-size: 13px;
  padding: 6px;
  padding-right: 2%;
  text-align: right;
  font-weight: bold;
}
.case-detail {padding:20px; min-height: 325px;}
.case-detail p {font-size: 17px; margin-bottom: 0;}
.case-detail h5 {font-size: 12px;}
.case-bg {background: var(--bg-gradient); padding: 50px 20px;}
.case-bg p {color: var(--light-white-color); font-size: 16px; line-height: 18px;}

.client-row {margin-top: 40px; padding: 10px; border: 1px #838383 solid; border-radius: 30px; background: #ffff;}
.client-row-bt {border-top: 1px #838383 solid;}

.apart-box-row {padding-top: 20px;}
.apart {margin-top: 10px;}
.apart h5 {font-size: 18px; color: var(--black-color);}

.future-box-row {padding-top: 20px;}
.future-box-row h5 {font-size: 20px; text-align: center; color: var(--black-color);}
.future-box-row p {font-size: 17px; text-align: center;  var(--black-color);}

.dedicated-box {background: var(--bg-gradient); padding:30px 10px; border-radius: 10px; margin-top: 80%; min-height: 290px; text-align: center;}
.dedicated-box img {width: 45%;}
.dedicated-box h5 {font-size: 17px; color: #fff; font-weight: 600; padding-top: 10px;}
.dedicated-box p {font-size: 17px; color: #fff;}

.contact-box-row {padding-top: 80px;}
.contact-box-row a {color: #606161;}
.contact-box-row a:hover {color: #eb1c24;}

.contact-logo-sec img {width: 70%; margin-top: 25%;}

.director-sec {text-align: center;}
.director-sec img {width: 70%; text-align: center;}
.director-sec h4 {font-weight: 600; text-align: center;}
.director-sec p {text-align: center;}

.contact-sec img {width: 100%; margin-bottom: 20px;}
.contact-sec-qr img {width: 100%; margin-top: 20px;}
.contact-sec-qr a {display: flex; padding-top: 35%;}

.areaof-acoustic {margin-top: 40px;}
.areaof-acoustic-heading {margin: 0 auto; text-align: center;}
.areaof-acoustic-heading h3 {
  background: var(--bg-gradient);
  width: 30%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 22px;
  padding: 5px;
}
.contact-heading {margin: 20px 0;}
.contact-heading h3 {
  background: var(--bg-gradient);
  width: 200px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
  padding: 10px;
  margin: auto;
}

.direction-heading h3 {
  background: var(--bg-gradient);
  width: 320px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
  padding: 10px;
  margin: auto;
}


.nav-link i {
  font-size: 30px;
}

.motto_content {margin-bottom: 40px;}

.motto_content_box .nav-link {
  font-weight: 700;
  color: var(--light-black-color);
  text-align: left;
  padding: 5px 0 20px 20px;
  font-size: 20px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  border: 1px #cd4c24 solid;
  margin: 2px 0;
}
.motto_content_box .nav-link img {width: 15%; margin-right: 20px;}
.motto_content_box .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: var(--red-color);
  border-radius: var(--border-radius);
  /* box-shadow: 0 7px 50px -20px #d8232a; */
}
.motto_content_box .nav-pills .nav-link.active img {filter: brightness(0) invert(1); margin-right: 20px;}


    .thank-you {
      display: none;
      color: green;
      font-weight: bold;
      margin-top: 15px;
    }

.motto_rightside {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  text-align: left;
  background: #fff;
  /* flex-direction: column; */
  /* padding: 20px; */
  /* border-radius: 20px;
  border: 1px dashed #ffe4e6;
  box-shadow: 0 15px 30px -20px #ffe4e6; */
}

.motto_rightside .motto_icon i {
  color: var(--red-color);
  font-size: 50px;
}

.motto_rightside .motto_head h4 {
  font-weight: 700;
  margin: 15px 0;
}

.motto_rightside .motto_para p {
  text-align: left;
}

.product_slider img.slick-prev {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 20px;
  z-index: 11;
}

.product_slider img.slick-next {
  position: absolute;
  top: 50%;
  right: -10px;
  transform:translateY(-50%);
  width: 20px;
  z-index: 11;
}
.slider-icons {text-align: center;}
.slider-icons img {width: 50%;}
.slider-icons p {font-size: 14px !important;}
.product_box .products_content {
  padding: 20px;
}

.product_box .products_content .design_btn a {
  color: var(--red-color);
  font-weight: 700;
}

.featur_box {
  margin-bottom: 20px;
}

.feature_box .feature_box_service {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
}

.feature_box .feature_box_service .feature_icon i {
  color: var(--red-color);
  font-size: 30px;
}

.feature_box .feature_box_service .feature_head h4 {
  font-weight: 700;
}

.feature_box .feature_para p {
  padding-left: 50px;
}

.feature_image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature_image img {
  border-radius: 20px;
  max-width: 100%;
}

.gallery_box {
  position: relative;
  max-width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_image {
  background: url("../image/products/product-1.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

.gallery_head {
  background: var(--white-color);
  padding: 12px;
  border-radius: var(--border-radius);
  position: absolute;
  bottom: 10px;
}

.gallery_head h5 {
  color: var(--light-black-color);
  font-weight: 700;
  text-align: center;
}

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

.pleasure_section {
  background: var(--bg-gradient);
  /* background: linear-gradient(to right, var(--light-red-color), transparent); */
  overflow: hidden;
  border-radius: var(--border-radius);
}

.pleasure_section .pleasure_content {
  padding: 40px;
}

.pleasure_content h1 {color: #fff;}
.pleasure_para p {color: #fff;}
.pleasure_image img {
  width: 100%;
  padding-right: 10px;
}
/* .heading{
  position: relative;
  z-index: 5;
}
.heading::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50%;
  height: 1px;
  background-color: var(--red-color);
  z-index: -1;
} */

.heading h2 {
  background: var(--bg-gradient);
  width: 320px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
  padding: 10px;
  margin: auto;
}
.project-card{
  position: relative;
  z-index: 5;
}
.project-card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    /* background: rgba(0,0,0,0.4); */
    border-radius: var(--border-radius);
}
.project-card .project-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--light-box-shadow);
  perspective: 2000px;
}

.project-name{
  position: absolute;
  bottom: 5px;
  left: 10px;
  text-align: left;
  z-index: 5;
}
.project-name h5{
  color: #fff;
  text-transform: capitalize;
  text-align: left;
}
footer {
  background: url(../image/footer-bg.jpg);
  background-attachment: fixed;
  background-position: center center;
  padding: 60px 20px 20px 20px;
  /* border-radius: 20px 20px 0 0; */
  margin-top: 30px;
}
footer .footer_logo {margin: 0 auto; text-align: center;}
footer .footer_logo img {
  max-width: 55%;
  /* margin-bottom: -15px; */
}

footer .footer_heading h5 {
  color: var(--white-color);
  font-weight: 700;
  color: var(--red-color);
}

footer .footer_links ul li a {
  color: var(--light-white-color);
  padding: 5px 0;
  display: block;
  transition: 0.3s ease-out;
  position: relative;
}

footer .footer_links ul li a::before {
  position: absolute;
  content: "//";
  height: 100%;
  width: 100%;
  color: #fff;
  top: 5px;
  left: -25px;
  background: #0000;
  opacity: 0;
  transition: 0.3s ease-out;
}

footer .footer_links ul li a:hover::before {
  left: -15px;
  top: 5px;
  opacity: 1;
}

footer .footer_links ul li a:hover {
  color: var(--white-color);
  transform: translateX(10px);
  text-shadow: -1px -1px 0px #000;
  color: #d8232a;
}

footer .footer_info a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

footer .footer_info .footer_icon i {
  color: var(--red-color);
  margin-right: 20px;
}

footer .footer_info .footer_number p {
  color: var(--light-white-color);
}
.footer_number p b{
  /* color: #4169E1; */
  color: var(--light-white-color);
}
footer .footer_info .footer_number p:hover {
  color: var(--white-color);
}

footer .bottom_footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.copy_right {
  padding: 15px 10px 45px 10px;
  align-items: center;
  text-align: center;
  color: white;
  background: var(--red-color);
}

footer .bottom_footer_content .social_links i {
  color: var(--white-color);
  margin-right: 20px;
}

.slick-active.product_box {
  display: none;
}

.product_box {
  margin: 10px;
  border-radius: 20px;
}

.div-table {
  display: table;         
  width: auto;        
  border: 1px solid #f2f2f2;         
  border-spacing: 5px; 
  margin-bottom: 20px;
}
.div-table-row {
  display: inline-flex;
  width: 100%;
  clear: both;

}

.div-table-col {
  float: left; 
  display: table-column;         
  width: 50%; 
  padding-left: 10px;
  border-bottom: 1px solid #f7f7f7;
}

.hero-image img{
  max-width: 100%;
  position: relative;
}
.hero-image .hero-box {
  position: absolute;
  z-index: 9;
  margin: 0 0 2% 8%;
  bottom: 0;
  width: 40%;
}
.hero-image .hero-box h2 {font-family: var(--main-font); font-size: 2.2rem; color: #fff;}
.hero-image .hero-box p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

h2.hero-title {
  color: var(--light-black-color);
  font-size: 40px;
  font-weight: 800;
}

.clientglipse {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 30px;
}

ul.clienticons li {
  display: inline-block;
  margin-right: -15px;
}

ul.clienticons li img {
  border-radius: 50%;
}

ul.clienticons li img {
  border-radius: 50%;
  width: 40px;
  box-shadow: 5px 5px 5px -3px #bdbdbd;
}

.spanheading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile_header {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99;
}
.fotter-bg-line {background-image: url("../image/fibertecx-bg.png"); background-position: bottom; background-repeat:repeat-x;}
.fottrer-fibr-image img {width: auto; float: right;}
.toggle_btn-menu {display: none;}
.footer_logo img {
  width: 250px;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
}

.viewmore {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}

.feature_box_service img {
  width: 40px;
}

.feature_image img {
  border-radius: 20px;
  max-width: 100%;
  box-shadow: 0 7px 40px -10px #bdbdbd;
}

/* .centerit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
} */

.feature_box_service {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.feature_para p {
  padding-left: 50px;
}

.gap-vertical {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.product_box .product_image img {
  width: 100%;
  transition: 0.2s ease-in-out;
  border-radius: 20px;
  box-shadow: 0 5px 20px -5px #bdbdbd;
}
.product_box .product_image img:hover {
  /* transform: scale(1.05); */
  filter: contrast(1.7);
}


.product_image {
  overflow: hidden;
  border-radius: 20px;
}

.product_box:hover img {
  transform: scale(1.05);
}

a.theme_btn_2 i {
  transition: 0.4s ease-in-out;
}

/* a.theme_btn_2:hover i {
  transform: translate(10px, -10px) rotate(-45deg);
} */

ul.timelist {
  height: 100%;
  width: 100%;
  border-left: 5px dashed #003050;
  padding-left: 30px;
}

.sub_heading_right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}

/* Input container */
.input-container {
  position: relative;
  margin: 20px 0;
}

/* Input field */
.input-field {
  /* display: block; */
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgb(94, 94, 94);
  pointer-events: none;
  transition: all 0.3s ease;
  translate: 0 10px;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--red-color);
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus+.input-label,
.input-field:valid~.input-label {
  top: -20px;
  font-size: 12px;
  color: var(--red-color);
}

.input-field:focus+.input-label+.input-highlight,
.input-field:valid+.input-label+.input-highlight {
  width: 100%;
}


button.submitbutton {
  color: #fff;
  background: var(--bg-gradient);
  transition: 0.4s ease-in-out;
  padding: 7px 15px;
  outline: none;
  border-radius: 50px;
  position: relative;
  font-weight: 600;
  border: 1px solid #0000;
}

a.download-brochure {
  color: #fff;
  background: var(--red-color);
  transition: 0.4s ease-in-out;
  padding: 7px 15px;
  outline: none;
  border-radius: 8px;
  position: relative;
  font-weight: 600;
  border: 1px solid #0000;
}

a.download-brochure i {
  transition: 0.4s;
}

button.submitbutton i {
  transition: 0.4s ease-in-out;
}

button.submitbutton:hover,
a.download-brochure:hover {
  box-shadow: 0 8px 20px -5px #ffbdbd;
}

img.span_line.white-sign {
  filter: invert(1);
}

white-span {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card {
  height: 100%;
  background: #d8232a;
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 7px 20px -3px #d8232a7d;
}

/* ul.reachlist li {
  display: flex !important;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
  position: relative;
  line-height: 3;
} */

ul.reachlist li{
  margin: 30px 0;
  display: flex;
  gap: 20px;
}
ul.reachlist li i {
  color: var(--blue-color);
  margin-right: 20px;
}

ul.reachlist li i {
  color: #fff;
  transition: 0.4s ease-in-out;
  font-size: 20px;
}

ul.reachlist li a {
  color: #fff;
  transition: 0.4s ease-in-out;
  font-size: 16px;
}

section.contactus {
  background: #fefefe;
  position: relative;
  padding: 0 20px 60px 20px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.contactrow {
  background: #fff;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: 0 8px 100px -50px #bdbdbd;
  position: relative;
}

.black-heading {
  color: var(--light-black-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline double;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: #d8232a;
}

.contactform {
  padding: 20px;
  height: 100%;
  position: relative;
}

.white-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline double;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: #fff;
}

.product-icons .swiper-slide {
  padding: 5px !important;
}

.product-images .swiper-slide {
  padding: 10px !important;
}

.product-icons .swiper-slide img {
  border-radius: 8px;
  opacity: 0.4;
}

.product-icons .swiper-slide-thumb-active img {
  opacity: 1;
}

.product-images img {
  border-radius: 20px;
}

p.bold-left {
  font-weight: 700;
}

ul.specslist li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
}

.tab-area .nav-tabs {
  border-bottom: 1px solid var(--red-color);
}

.tab-area .nav-link {
  display: block;
  padding: 10px 20px;
  color: #d8232a;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.tab-area .nav-link.active {
  color: #fff !important;
  background-color: #d8232a !important;
}

.tab-area .nav {
  gap: 20px;
}

.product_box.card-2 {
  border: 1px solid #eee;
  box-shadow: 0 7px 20px -10px #ddd;
  padding: 10px;
  margin: 0;
  transition: 0.4s ease-out;
}

.product_box.card-2:hover {
  box-shadow: 0 7px 40px -10px #ddd;
}

section.product-description .tab-content>.active {
  display: block;
  border: 1px solid #d8232a;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  position: relative;
}

.nav-tabs .nav-link:hover {
  color: #d8232a;
  background-color: #ffd6d8 !important;
}

table.entry-table {
  width: 100%;
  margin: 10px 0 30px 0;
}

.tab-area .nav-link.active:hover {
  color: #fff !important;
  background-color: #d8232a !important;
}

table.technical-data {
  width: 100%;
}

table.technical-data thead th {
  background: #d8232a;
  color: #fff;
  padding: 10px;
  border-right: 1px solid #fff;
}

table.technical-data tbody td {
  color: #d8232a;
  padding: 10px;
  border-right: 1px solid #d8232a;
  border-bottom: 1px solid #d8232a;
}

.norighborder {
  border-right: none !important;
}

button.enquiry-btn {
  padding: 5px 15px;
  border: none;
  outline: none;
  background: #d8232a;
  color: #fff;
  font-weight: 600;
  margin: 20px 0;
  border-radius: 7px;
  position: relative;
}

/* table.detail-table td::before {
  position: absolute;
  content: ":";
  left: -10px;
  top: 25%;
  font-weight: 700;
} */

table.detail-table td {
  /* position: relative; */
  padding: 8px; /* Optional: for spacing within cells */
        text-align: left; /* Optional: for text alignment */
        border-left: 1px solid #ddd; /* The column divider */
}

.clientlogo img {
  transition: 0.3s ease-out;
  transform: scale(0.9);
  filter: grayscale(0.7);
}

.clientlogo img:hover {
  transform: scale(1.05);
  filter: contrast(1.3);
}

.clientele-convas {
  border: 1px solid #eeee;
  box-shadow: 0 5px 81px -50px #d8232a70;
  border-radius: 20px;
}

section.founder {
  /* background: url(../image/founder-bg.jpg);
  background-size: cover; */
  background-attachment: fixed;
}

section.clients .swiper-slide {
  padding: 5px !important;
}

.clientbg {
  padding: 20px 30px;
  /* padding: 20px 0px; */
  background: #ffdee0;
  border-radius: 100px;
}

.slider-clients img {
  border-radius: 39px;
  width: 150px;
  /* padding: 0 23px; */
  padding: 0 23px;
  background: #fff;
  box-shadow: 0 7px 40px -25px #555;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #d8232a !important;
}

.founderpic img {
  /* box-shadow: 0px 7px 20px -9px #d8232a7d;
  background: #0000;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  outline-offset: 8px;
  border: 1px solid #ddd;
  transition: 0.4s; */
  max-width: 350px;
}

.founderpic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.founder-name h3 {
  font-weight: 700;
}

.founder-name h5 {
  font-weight: 600;
  /* text-decoration: underline double; */
  text-decoration-color: var(--red-color);
  text-underline-offset: 5px;
}

section.satisfication {
  background: url(../image/bgcommon.jpg);
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}

/* 
section.satisfication::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    opacity: 0.2;
    z-index: -1;
} */

section.section.service {
  background: var(--bg-gradient);
  /*
  background: url(../image/statics-bg.jpg);
  
   background-attachment: fixed;
  background-position: center center;
  background-size: cover; */
}

.footer_about_content {
  background: rgb(255, 255, 255);
  padding: 10px;
  /* border-radius: 0px 20px 20px; */
  position: relative;
  border: 1px solid rgb(238, 238, 238);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: rgb(189, 189, 189) 0px 5px 30px -10px;
  top: -62px;
  left: -15px;
}

footer .footer_about p {
  color: #808080;
  font-size: 12px;
  text-align: center;
  padding: 0 25px;
}

/* .footer_about_content::before {
  position: absolute;
  content: "";
  top: 0;
  left: -35px;
  z-index: -1;
  background: #d8232a;
  width: 35px;
  height: 40px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
} */

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.social-links i {
  color: #fff;
  transition: 0.3s ease-out;
  font-size: 16px;
  height: 40px;
  width: 40px;
  background: #0000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links i:hover {
  transform: translateY(-10px);
  background: var(--red-color);
  border-radius: 50%;
  box-shadow: 0 5px 30px -10px #bdbdbd;
}

.footer_info p {
  margin: 0;
}

.footer_content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}


a.theme_btn1 {
  display: inline-block;
  padding: 0.6em 1.75em;
  /* background-color: var(--red-color); */
  background: var(--bg-gradient);
  border-radius: 50px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 600;
  color: #fff;
}


.theme_btn1:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px -10px #ff777c;
}

.theme_btn1:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

.subheading {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.centerwhiteheading .subheading img {
  max-width: 100px;
  filter: invert(1);
}

.subheading img {
  max-width: 100px;
}

.subheading span {
  margin-bottom: -7px;
  z-index: 111;
  position: relative;
  color: #d8232a;
  font-weight: 600;
}

.centerwhiteheading {
  text-align: center;
  padding: 10px;
  color: #fff;
}

.centerwhiteheading h2 {
  font-size: 36px;
  margin: 20px 0;
}

span.redspan {
  background: #fff;
  color: #d8232a;
  padding: 0 5px;
}

.leftheading h2 {
  color: #252525;
  font-size: 36px;
}

.leftheading {
  text-align: left;
  margin: 20px 0;
}

.leftheading h1 {font-family: "Montserrat", sans-serif; font-size: 1.5rem; line-height: 22px;}
.leftheading h1 span {font-size: 3rem; color: #ce232b !important;}
.leftheading h1 span::after {
  content: "";       /* creates an empty element after the span */
  display: block;    /* forces whatever comes next onto a new line */
}

.centerwhiteheading p {
  color: #fff;
}

.centerheading {
  text-align: center;
  color: #252525;
  padding: 10px;
}

span.whitespan {
  /* background: var(--red-color); */
  color: #ce232b;
  /* padding: 0 5px; */
  /* font-weight: 400; */
}




.acoustice_list ul {
  margin: 20px 0;
  padding-left: 25px;
}

section.products {
  padding: 60px 0 0;
  background: url(../image/product-bg.jpg);
  background-attachment: fixed;
}

.certificate-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: relative;
  border-radius: 20px;
  transition: 0.3s ease-out;
  border: 1px solid #eee;
  z-index: 2;
  background: #ffdee0;
  overflow: hidden;
}

.certificate-card::before {
  position: absolute;
  content: "";
  background: #fff;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-out;
}

.certificate-card:hover {
  box-shadow: 0 8px 26px -15px #bdbdbd;
}

.certificate-card:hover::before {
  height: 0;
}

.certificate-card img {
  border-radius: 20px;
}

a.downloadbtn {
  background: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease-out;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

a.downloadbtn::before {
  position: absolute;
  content: "";
  z-index: -1;
  content: "";
  background-color: var(--red-color);
  height: 100%;
  width: 100%;
  transition: 0.3s ease-out;
  top: 0;
  left: 0;
}

a.downloadbtn i {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.downloadbtn:hover i {
  color: #fff;
  background: var(--red-color);
}

a.downloadbtn:hover {
  color: var(--red-color);
  transform: translateY(-7px);
}

a.downloadbtn:hover::before {
  width: 0;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--red-color);
  transform: scale(1.5);
}

.certificate-slider .swiper-slide {
  padding: 1px;
}

.timeline-container .vertical-scrollable-timeline {
  width: 100%;
  list-style-type: none;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 100%;
  background-color: #d8232a;
  position: absolute;
  left: 48px;
  border-radius: 100px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #c5c3cb;
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  /* padding: 20px; */
  padding-left: 150px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li h2 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #252525;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 1.5;
  color: #252525;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 23px;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c5c3cb;
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

ul.vertical-scrollable-timeline li.active i {
  color: #fff !important;
}

.timeline-container .vertical-scrollable-timeline li h2 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
  background: #d8232a;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 60px;
  box-shadow: var(--red-box-shadow);
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: #252525;
}

.timeline-container .vertical-scrollable-timeline li:last-child::before {
  width: 58px;
  left: 48px;
  background-color: #222;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: #d8232a;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: #d8232a;
}

.timebox {
  padding: 10px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
}

table.detail-table {
  width: 100%;
}

table.detail-table tr:nth-child(odd) {
  background: #eee;
}

.clientlogo {
  width: 100%;
  display: flex;
  margin: 10px 0;
  justify-content: center;
  align-items: center;
}

.slider-clients {
  /* display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; */
}

input.input-field.disabled-input {
  background: #eee;
  color: #d8232a;
  font-weight: 600;
}

table.detail-table td,
table.detail-table th {
  padding: 10px;
}

span.productName {
  color: #d8232a;
  font-weight: 700;
  border-left: 3px solid;
  font-size: 24px;
  padding-left: 5px;
  margin-left: -5px;
  text-transform: capitalize;
}

.product_box .products_content .product_head h5 {
  color: var(--light-black-color);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 900;
}

.product_box.card-2 .products_content {
  padding: 10px;
}

table.entry-table td {
  margin-left: 30px;
  display: block;
  position: relative;
}

table.entry-table td::before {
  position: absolute;
  content: ":";
  top: 0;
  left: -10px;
  color: var(--red-color);
  font-weight: 700;
}

table.flatTable td {
  width: 20%;
  border-right: 1px solid var(--light-white-color);
  border-bottom: 1px solid var(--light-white-color);
  background: white;
  padding: 10px;
}

table.flatTable td:first-child {
  border-left: 1px solid var(--light-white-color);
}

table.flatTable th {
  width: 20%;
  padding: 10px;
  font-weight: 500;
  border-right: 1px solid var(--light-white-color);
}

table.flatTable th:first-child {
  border-left: 1px solid var(--light-white-color);
}

table.flatTable thead tr {
  background: var(--red-color);
  color: #fff;
}

.features-list>li {
  padding: 10px;
  /* font-weight: bold; */
}

.features-list>li:nth-child(odd) {
  background: #eee;
  padding: 10px;
}

.service .service_box .service_head h5 {
  font-size: 1rem;
}

.industries_para p {
  font-size: 16px;
}

.download-brochure a {
  text-decoration: none;
  color: var(--color2);
}

.slider-clients {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map {
  margin: 20px 0 60px;
}
.map-new {margin-bottom: -36px;}
.contactus .social_links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  gap: 1.5rem;
}

.contactus .social_links i {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: color 0.2s ease-in-out;
}

.contactus .social_links a {
  background-color: transparent;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
}

.contactus .contact-card .social_links a:hover {
  background-color: #fff;
}

.contactus .contact-card .social_links a:hover i {
  color: var(--red-color);
}

.our-vision {
  margin-bottom: 20px;
}

.motto_para {
  text-align: center;
}

.products_content_box {
  padding-inline: 30px;
}

.socials {
  margin-top: 20px;
}

.socials .reach-us-social-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.socials .reach-us-social-links a {
  background-color: var(--red-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.socials .reach-us-social-links a:hover {
  background-color: #fff;
  translate: 0 -5px;
}

.socials .reach-us-social-links a:hover i {
  color: var(--red-color);
}

.reach-us-social-links a i {
  font-size: 1rem;
  color: #2f0000;
}

.socials h5 {
  color: var(--red-color);
}

.timeline-img {
  display: flex;
  align-items: end;
}

.hero-swiper-pagination {
  text-align: center;
  margin-top: -24px;
  z-index: 9;
  position: absolute;
}

.section.clientele {
  padding: 30px 20px;
}

.product_cta {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.product_cta>button:nth-child(1) {
  grid-column: 1 / 4;
}

.product_cta>button:nth-child(2) {
  grid-column: 4 / 9;
}

section.thankyou {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  height: 100vh;
  background: url(../image/white-bg.jpg);
  text-align: center;
}

.thankbtn {
  text-align: center;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both 1s;
}

section.thankyou h1 {
  background-image: url(../image/thank-bg.jpg);
  background-color: #df000f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 150px;
  line-height: 200px;
  position: relative;
  z-index: 1;
  cursor: none;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-stroke: 1px;
  animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both 1s;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes tracking-in-contract {
  0% {
    text-align: center;
    letter-spacing: 0.6em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

section.hero>div:first-child {
  flex: 2;
}

section.hero>div:last-child {
  flex: 1;
}

.hero-form-container {
  padding: 1rem;
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: var(--light-box-shadow);
  /* height: 100%; */
}

.hero-form-container form {
  height: 100% !important;
}

.form-heading {
  color: var(--red-color);
  margin: 0;
  text-align: center;
  margin-bottom: 15px;
}

button.formbtn {
  width: 100%;
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
  border-radius: 8px;
  outline: none;
  padding-block: 8px;
  color: var(--white-color);
  transition: background-color 0.2s;
}

button.formbtn:hover {
  background-color: var(--white-color);
  color: var(--red-color);
}

/* custom form inputs */
.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}


.my-input {
  width: 100%;
  border: solid 1.5px #f2f2f2;
  border-radius: 8px !important;
  background: none;
  padding: 0.7rem;
  font-size: 16px;
  color: #222;
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}


.user-label {
  position: absolute;
  left: 15px;
  font-size: 14px;
  color: #222;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.my-input:focus,
.my-input:valid {
  outline: none;
  border: 1.5px solid var(--red-color);
}

.my-input:focus~label,
.my-input:valid~label {
  transform: translateY(-50%);
  background-color: #fff;
  padding: 0 0.2em;
  color: var(--red-color);
}

img.heropics {
  height: 100%;
  object-fit: contain;
}

.footer_about_container {
  position: relative;
}

.profile-download-btn {
  /* position: absolute; */
  padding: 1px 11px;
  left: 5%;
  bottom: 1%;
  translate: -50% 0;
}

.profile-btn-footer {
  /* position: absolute; */
  left: 24%;
  bottom: 2%;
  translate: -55% 0;
}


table.flatTable {
  margin: 40px 0;
  width: 100%;
}

a.viewMore {
  padding: 7px 20px;
  background: var(--bg-gradient);
  color: #fff;
  border-radius:50px;
}

::marker {
  color: var(--red-color);
}
.year-excellance img{
  max-width: 110px;
}

/* .grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 10px;
}

.grid-gallery .grid-item {
  position: relative;
  background: #eee;
  overflow: hidden;
}

.grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-gallery .grid-item img:hover {
  transform: scale(1.1);
}

.grid-gallery .grid-item:nth-child(3n-2) {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-gallery .grid-item a {
  cursor: zoom-in;
} */


.industryCard {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px -10px #777;
}

/* .industryCard::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #999, #0000);
} */


.industryCard img {
  object-fit: cover;
  border: 1px var(--light-white-color) solid;
}

span.industryName {
  position: absolute;
  background: var(--bg-gradient);
  /* background: #0000; */
  border: 1px solid #4545451c;
  z-index: 1;
  width: calc(100% - 80px);
  height: auto;
  font-weight: 500;
  bottom: 10px;
  text-shadow: 2px 2px 5px BLACK;
  color: #fff;
  left: calc(0px - -40px);
  font-size: 16px;
  text-align: center;
  padding: 0;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.industryCard:hover span.industryName {
  background: var(--red-color);
  color: var(--white-color);

}

span.optionspan {
  background: var(--red-color);
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 9999px;
}

p.descriptiontext {
  margin: 8px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.appImg img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

/* section.products-page {
  padding: 20px 0;
} */
.specification-image img{
  box-shadow: var(--light-box-shadow);
  border-radius: 8px;
}
.technical-card .technical-image img{
  box-shadow: 0 0 5px #bdbdbd;
  border-radius: 8px 8px 0 0;
}
.technical-card .technical-para p{
  padding: 20px;
  background: var(--white-color);
  box-shadow: 0 0 5px #bdbdbd;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
}
.ul-box ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ul-box ul li{
  position: relative;
  padding-left: 20px;
}
.ul-box ul li::after{
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-color);
}
.feature-td{
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-profile{
  position: fixed;
  bottom: 60%;
  right: -54px;
  transform: rotate(-90deg);
  z-index: 777;
}
.pleasure-image-content {
  padding: 20px 0;
}
.pleasure-head h4{
  text-align: center;
  color: #fff;
}

.acoustic-card{
  background: var(--white-color);
  box-shadow: var(--light-box-shadow);
  padding: 20px;
  border-top: 1px solid #d2232d;
  border-left: 1px solid #d2232d;
  border-right: 1px solid #d2232d;
  border-bottom: 15px solid transparent;
  border-image: linear-gradient(90deg,rgba(240, 121, 87, 1) 0%, rgba(227, 33, 41, 1) 50%, rgba(210, 35, 42, 1) 100%);
  border-image-slice: 1;
  height: 100%;
  transition: all 0.5s linear;
}
.acoustic-card:hover{
    transform: translateY(5px);
}

.acoustic-icon {
  text-align: center;
  padding-bottom: 5px;
}

.acoustic-icon h5 {padding-top: 10px;}

h3.sec_head {
  background: var(--red-color);
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--white-color);
}

.acoustic-icon-bg {
  background: var(--bg-gradient);
    padding: 10px;
    width: 70px;
    margin: 0 auto;
    border-radius: 20px;
}
.acoustic-icon img{
  max-width: 70px;
  filter: brightness(0) invert(1);
}
.acoustic-name h4{
  margin: 10px 0;
}
.acoustic-para ul li p{
  position: relative;
  padding-left: 30px;
}
.acoustic-para ul li p::after{
  content: "\f560";
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 13px;
  color: var(--red-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.display-desk {display: block;}
.display-mob {display: none;}

@media only screen and (max-width: 600px) {
  .profile-btn-footer{translate: -42% 0;}
  .section-heading h2 {font-size: 16px;}
  .why-box {height:110px}
  .why-box h5 {font-size:16px}
  .why-box p {font-size:15px; line-height: 20px;}
  .display-desk {display: none;}
  .display-mob {display: block;}
}



