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

:root {
    --primary: #ef7c00;
    --black: #0F141E;
    --secondary: #808080;
    --gray: #ebebeb;
    --white: #ffffff;
    --border1: #a2a2a2;
    --border2: #414141;

    --b612: "B612", sans-serif;
    --roboto: "Roboto", sans-serif;
}

body {
    font-family: var(--roboto);
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.text-justify {
  text-align: justify;
}

.bg_gray {
  background-color: var(--gray);
}

/* Loader */
.page_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_loader img {
  width: 100px;
  animation: bounce 1500ms ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-25%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

/* Header */
.main_header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.main_header.fixed-top{
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
	0% {
	  opacity: 0;
	  transform: translate3d(0, -100%, 0);
	}
	to {
	  opacity: 1;
	  transform: translateZ(0);
	}
}

/* Top header */
.main_header .top_header {
  background-color: var(--primary);
}
.main_header.fixed-top .top_header {
 display: none;
}
.main_header .top_header .header_social {
  padding: 5px 0;
}
.main_header .top_header .header_social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.main_header .top_header .header_social ul li {
  margin-right: 8px;
}
.main_header .top_header .header_social ul li:first-child {
  margin-left: auto;
}
.main_header .top_header .header_social ul li:last-child {
  margin-right: 0;
}
.main_header .top_header .header_social ul li a {
  display: block;
  width: 34px;
  height: 34px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--primary);
  font-size: 20px;
  border: 2px solid var(--white);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.main_header .top_header .header_social ul li a.ph {
  rotate: -45deg;
}
.main_header .top_header .header_social ul li a:hover {
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);

}

/* Main Header */
.main_header .navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}
.main_header .navbar-brand img{
    height: 52px;    
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main_header.fixed-top .navbar-brand img{
    height: 42px;  
}
.main_header.fixed-top .navbar-nav .nav-link {
  font-size: 16px;
  margin-right: 30px;
}
.main_header .navbar-nav .nav-link {
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main_header .navbar-nav .nav-link.active {
    color: var(--primary);
}
.main_header .navbar-nav .nav-link:hover {
    color: var(--primary);
}
.main_header .nav-link span{
    position: relative;
}

/* Bootstrap Offcanvas */
@media (max-width: 991.98px) {
  .main_header .offcanvas-collapse {
      position: fixed;
      top: 0; 
      bottom: 0;
      left: 100%;
      width: 50%;
      padding: 60px 30px 16px;
      overflow-y: auto;
      visibility: hidden;
      background-color: var(--white);
      transition: transform .3s ease-in-out, visibility .3s ease-in-out;
      z-index: 1100;
    }
    .main_header .offcanvas-collapse.open {
      visibility: visible;
      transform: translateX(-100%);
    }

    .main_header .btn-close {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 15px;
        padding: 10px;
        border-radius: 50%;
        display: block !important;
        background-color: var(--white);
        z-index: 1100;
    }
  }
  
  .main_header .nav-scroller .nav {
    color: rgba(255, 255, 255, .75);
  }
  
  .main_header .nav-scroller .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: #6c757d;
  }
  
  .main_header .nav-scroller .active {
    font-weight: 500;
    color: #343a40;
  }

.main_header .btn-close{
  display: none;
}
@media (min-width: 992px){
  .main_header .navbar-expand-lg .navbar-nav .nav-link {
      margin-right: 24px;
  }
  .main_header .navbar-expand-lg .navbar-nav li:last-child .nav-link {
    margin-right: 0;
}
}

/* Home Banner */
.home_banner .owl-carousel .owl-item .home_banner_img, .home_banner .owl-carousel .owl-item .home_banner_img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-dots button span {
  width: 15px;
  height: 15px;
  display: block;
  background-color: var(--white);
  border-radius: 50%;
  margin: 0 5px;
}
.owl-dots button.active span {
  background-color: var(--primary);
}

/* Section Divider */
.section_divider {
  position: relative;
  width: 100%;
  height: 12px;
  margin: 6px 0;
}
.divider_o {
  background-color: var(--primary);
}
.divider_s {
  background-color: var(--secondary);
}

/* Footer */
footer {
  position: relative;
}
footer .footer_top {
  padding: 12px 0;
}
footer .footer_top .footer_social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
footer .footer_top .footer_social ul li {
  margin-right: 8px;
}
footer .footer_top .footer_social ul li a {
  display: block;
  width: 34px;
  height: 34px;
  background-color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 20px;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
footer .footer_top .footer_social ul li a.ph {
  rotate: -45deg;
}
footer .footer_top .footer_social ul li a:hover {
  background-color: var(--primary);
}

footer .useful_link_list {
  position: relative;
  width: 100%;
}
footer .useful_link_list ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
footer .useful_link_list ul a {
  text-decoration: none;
  color: var(--black);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
footer .useful_link_list ul a:hover {
  color: var(--primary);
}

footer .footer_middle {
  padding: 50px 0 30px;
}
footer .footer_logo img {
  height: 52px;
}
footer .footer_address p, .footer_connect p, .footer_connect a {
  text-align: center;
}
footer .footer_address p, .footer_connect p, .footer_connect a, footer .useful_link_list ul a, footer .footer_copyright p{
  font-size: 18px;
}
footer .footer_connect {
  text-align: center;
}
footer .footer_connect p {
  font-weight: 600;
}
footer .footer_connect a {
  font-weight: 300;
  color: var(--white);
  background-color: var(--primary);
  text-transform: uppercase;
  border-radius: 15px;
  border: 2px solid var(--primary);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
footer .footer_connect a:hover {
  color: var(--primary);
  background-color: transparent;
}
  footer .footer_copyright p{
  margin: 0;
  padding: 12px 0;
}

/* Section Heading */
.section_padding {
  padding: 80px 0;
}
.section_heading h2 {
  font-family: var(--b612);
  font-size: 50px;
  font-weight: 600;
  color: var(--black);
}
.section_heading_bar span{
  display: block;
  width: 200px;
  height: 12px;
  background-color: var(--primary);
  margin-top: 16px;
}
.section_heading.section_heading_center {
  text-align: center;
  margin: 0 auto 60px;
}
.section_heading.section_heading_center .section_heading_bar span{
  margin: 20px auto 0;
}

/* What We Do */

/* Home Products */
.home_prod_card {
  position: relative;
  max-width: 84%;
  text-align: center;
}
.home_prod_card img {
  display: block;
  border-radius: 28px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  margin-bottom: 24px;
}
.home_prod_card h3 {
  font-size: 22px;
  text-transform: uppercase;
}

/* Wide Range Of Application */
.home_wide_range_app {
  height: 100%;
  background-image: url('../images/homepage/3.png');
  background-repeat: repeat-x;
  background-size: 60% auto;
}
.home_wide_range_app .owl-carousel {
  padding: 0 160px;
}
.home_our_advfacility .owl-carousel, .about_our_team .owl-carousel, .home_clients .owl-carousel {
  padding: 0 100px;
}
.home_widerange_card {
  background-color: var(--gray);
  padding: 80px 40px 80px;
  text-align: center;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card img {
  width: 64%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card h3 {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card p {
margin-bottom: 0;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-next, .home_wide_range_app .owl-carousel .owl-nav button.owl-prev, .infra_whychoose_us .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 2%;
  bottom: 36%;
  width: 52px;
  height: 52px;
  border: 3px solid var(--black);
  border-radius: 50%;
  font-size: 28px;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 2%;
}

.home_wide_range_app .owl-carousel .owl-stage, .infra_whychoose_us .owl-carousel .owl-stage {
  display: flex;
}
.home_wide_range_app .owl-carousel .item, .infra_whychoose_us .owl-carousel .item {
    display: flex;
    height: 100%;
}

/* Our Advanced Facilities */
.home_our_advfacility {
  background-image: url('../images/homepage/4.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_our_advfacility .owl-carousel .advfacility_card_text p {
  text-align: justify;
}
.home_our_advfacility .owl-carousel .advfacility_card_text h2, .get_quote_text h2 {
  font-size: 36px;
  font-family: var(--roboto);
}
.home_our_advfacility .owl-carousel .owl-item img {
  border-radius: 28px;
}
.home_our_advfacility .owl-carousel .owl-nav button.owl-next, .home_our_advfacility .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 38%;
  font-size: 80px;
}
.home_our_advfacility .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 0;
}
.home_our_advfacility .owl-carousel .owl-nav button.owl-next i, .home_our_advfacility .owl-carousel .owl-nav button.owl-prev i {
  font-weight: 200;
}

/* Get Quote */
.home_get_quote {
  background-image: url('../images/homepage/quote.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.get_quote_text h2 {
  margin-bottom: 30px;
}
.get_quote_text a {
  color: var(--black);
  text-decoration: unset;
  border: 3px solid var(--black);
  background-color: transparent;
  padding: 20px 30px;
  border-radius: 20px;
  font-size: 32px;
  font-family: var(--roboto);
  display: inline-block;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.get_quote_text a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* Why Choose Us */
.home_why_choose_us {
  background-image: url('../images/homepage/5.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.home_why_choose_us .col:first-child .home_whychoose_card, .home_why_choose_us .col:nth-child(1) .home_whychoose_card, .home_why_choose_us .col:nth-child(1) .home_whychoose_card {
  margin-bottom: 120px;
}
.home_whychoose_card {
  text-align: center;

}
.home_whychoose_card img {
  height: 110px;
  margin-bottom: 16px;
}
.home_whychoose_card p {
  color: var(--white);
  font-size: 20px;
}

/* Client Testimonials */
.home_client_testimonials {
  background-image: url('../images/homepage/6.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.testimonials_card h4, .testimonials_card h5 {
  font-size: 30px;
}
.testimonials_card h4 {
  margin-bottom: 30px;
}
.testimonials_card p {
  
}
.home_client_testimonials .owl-dots button.active span {
  background-color: var(--black);
}
.home_client_testimonials .owl-dots {
  position: relative;
  bottom: unset;
}

/* home Clients */
.home_clients .owl-carousel .owl-nav button.owl-next, .home_clients .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 38%;
  font-size: 30px;
}
.home_clients .owl-carousel .owl-nav button.owl-next {
  left: unset !important;
  right: 0;
}

/* Sub Banner */
.sub_banner img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}
.banner_head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.banner_head h1 {
  font-family: var(--b612);
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
  background-image: linear-gradient(90deg, rgba(255,0,0,0), rgba(255,255,255,1), rgba(255,0,0,0));
  padding: 15px;
}

/* ************************* */
/* About Page */
/* ************************* */
/* Mission, Vision */
.about_mission_vision {
  background-color: var(--primary);
  text-align: center;
}
.about_mission {
  background-image: url('../images/aboutpage/missionbg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  height: 100%;
}
.about_mission, .about_vision {
  padding-left: 60px;
  padding-right: 60px;
}

/* What Sets Us Apart */
.about_what_set_content {
  background-image: url('../images/aboutpage/whatsetbg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about_whatset_cards {
  display: none;
}

@media (max-width: 600px){
  .about_whatset_img {
    display: none;
  }
  .about_whatset_cards {
    display: block;
  }
  .about_whatset_cards p {
   margin-bottom: 0;
  }
}

.about_whatset_card {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--white);
}
.about_whatset_card img {
  position: relative;
  margin-bottom: 10px;
  max-height: 94px;
}
.about_whatset_cards .col:nth-child(odd) .about_whatset_card {
  border: 10px solid var(--border1);
  border-radius: 30px;
  padding: 24px;
}
.about_whatset_cards .col:nth-child(even) .about_whatset_card {
  border: 10px solid var(--border2);
  border-radius: 30px;
  padding: 24px;
}
.about_whatset_cards .col:last-child .about_whatset_card {
  margin-bottom: 0 !important;
}
.about_whatset_cards .col:nth-child(odd) .about_whatset_card:after , .about_whatset_cards .col:nth-child(even) .about_whatset_card:after {
  content: '';
  position: absolute;
  left: 44%;
  bottom: -24px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  clear: both;
}
.about_whatset_cards .col:nth-child(odd) .about_whatset_card:after {
  content: '';
  border-top: 15px solid var(--border1);
}
.about_whatset_cards .col:nth-child(even) .about_whatset_card:after {
  content: '';
  border-top: 15px solid var(--border2);
}
.about_whatset_cards .col:last-child .about_whatset_card:after {
  display: none;
}

/* Our Team/ The Print Squad */
.about_team_card {
  position: relative;
}
.about_team_card img {
  width: 100%;
}
.about_our_team .owl-carousel .owl-nav button.owl-next, .about_our_team .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 38%;
  font-size: 100px;
}
.about_our_team .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 0;
}
.about_our_team .owl-carousel .owl-nav button.owl-next i, .about_our_team .owl-carousel .owl-nav button.owl-prev i {
  font-weight: 200;
}

.about_team_card .about_teamcard_content {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(239, 124, 0, 0.5);
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  opacity: 0;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.about_team_card:hover .about_teamcard_content {
  opacity: 1;
}
.about_team_card .about_teamcard_content h3 {
  color: var(--white);
  font-size: 24px;
}
.about_team_card .about_teamcard_content p.teamdesig, .about_team_card .about_teamcard_content p.teamdesc {
  font-size: 18px;
}
.about_team_card .about_teamcard_content p.teamdesc {
  color: var(--white);
}

/* ************************* */
/* Product Page */
/* ************************* */
/* Our Products */
/* Tab Nav */
.product_main li.nav-item{
  width: 16.6666666667%;
  text-align: center;
  border-right: 3px solid var(--border1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_main li.nav-item:last-child{
  border-right: none;
}
.product_main li.nav-item .nav-link {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--b612);
  color: var(--black);
  cursor: pointer;
}
.product_main li.nav-item .nav-link.active {
  color: var(--primary);
}
.prod_menu {
  position: sticky;
  top: 7%;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 2;
  padding-top: 1%;
}

/* Tab-content */
.product_main_img, .product_main_img img{
  position: relative;
  max-height: 500px;
  margin-right: 8px;
}
.product_main_img img{
  position: relative;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}
.product_main_img .prod_bg{
  position: absolute;
  left: 8px;
  right: -8px;
  top: 8px;
  bottom: -8px;
  background-color: var(--primary);
}
.product_main_text h3, .prod_feature_head h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--b612);
}
.product_main_text p {
  text-align: justify;
}

/* Features */
.prod_feature_head h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}
.prod_feature_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_main_conent .prod_feature:nth-child(1) .prod_feature_item, .product_main_conent .prod_feature:nth-child(2) .prod_feature_item, .product_main_conent .prod_feature:nth-child(3) .prod_feature_item{
  margin-bottom: 50px;
}
.prod_feature_item img {
  max-height: 67px;
  margin-right: 16px;
}
.prod_feature_item p {
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--b612);
}

/* ************************* */
/* Contact Page */
/* ************************* */
/* Left */
.contact_info{
  padding: 60px 40px;
  z-index: 1;
  background-color: var(--primary);
  color: var(--white);
}
.contact_info h3 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
  font-family: var(--b612);
}
.contact_info_card {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact_info_card:last-child {
  margin-bottom: 0;
}
.contact_info_card i {
  font-size: 42px;
  margin-right: 20px;
}
.contact_info_card p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  font-family: var(--b612);

}
.contact_info_card a {
  text-decoration: unset;
  color: var(--white);
}

/* Right Form */
.contact_form {
  width: 130%;
  margin-left: -30%;
  padding-left: 27%;
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact_form_inn {
  padding: 30px 60px;
}
.contact_form label{
  text-transform: uppercase;
}
.contact_form input, .contact_form textarea, .form-control:focus{
  border: 0;
  border-bottom: 2px solid var(--border1);
  background-color: transparent;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0;
  font-size: 18px;
}
.contact_form .form-label {
  margin-bottom: 0;
  font-family: var(--b612);
}
.contact_form_field {
  margin-bottom: 40px;
}
 /* Submit Button */
.btn_submit {
  color: var(--white);
  border: 2px solid var(--primary);
  background-color: var(--primary);
  padding: 12px 26px;
  border-radius: 16px;
  font-size: 22px;
  text-transform: uppercase;
  display: inline-block;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.btn_submit:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: transparent;
}

/* Map */
.contact_map_inn {
  border-radius: 16px;
  overflow: hidden;
}

/* Owl carausal */
.owl-prev.disabled, .owl-next.disabled {
  opacity: 0.2;
}

/* *********************** */
/* Thank You Page */
/* *********************** */
.thanku_section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('../images/thankupage/thankubg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.thanku_section .section_heading_center img{
  width: 475px;
  margin-bottom: 30px;
}

.thanku_section .section_heading_center a {
  font-size: 30px;
  font-weight: 300;
  color: var(--black);
  background-color: transparent;
  border-radius: 15px;
  border: 2px solid var(--primary);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-top: 50px;
}
.thanku_section .section_heading_center a:hover {
  color: var(--white);
  background-color: var(--primary);
}
.thanku_section .section_heading_center {
  margin-bottom: 0 !important;
}

/* Infrastructure */

.infra_whychoose_card {
  position: relative;
  padding: 30px 24px;
  border: 2px solid var(--black);
  border-radius: 15px;
}
.infra_whychoose_card h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 2px;
  max-width: 82%;
}
.infra_whychoose_card p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.whychoose_count {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  font-weight: 600;
}
.infra_heading_bar {

}
.infra_heading_bar span{
  display: block;
  width: 140px;
  height: 5px;
  background-color: var(--primary);
  margin-bottom: 16px;
}
.infra_whychoose_us .owl-carousel {
  padding: 0 100px;
}
.infra_whychoose_us .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  bottom: 46%;
}
.infra_whychoose_us .owl-carousel .item {
  padding-left: 2px;
}

.infra_choose_prateek {
  background-image: url(../images/infrapage/choose.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: 100%;
    overflow-x: hidden;
}
.infra_choose_prateek p {
  font-weight: 400;
  width: 75%;
  margin: 0 auto;
}

.infra_expertise_bx {
  position: relative;
  text-align: center;
  color: var(--primary);
}
.infra_expertise .row .col:not(:last-child) {
  border-right: 2px solid var(--primary);
}
.infra_expertise_bx h3 {
  font-size: 42px;
  font-weight: 600;
}
.infra_expertise_bx h3 small {
  font-size: 28px;
  font-weight: 600;
  margin-left: 8px;
}
.infra_expertise_bx p {
  margin-bottom: 0;
}
.infra_media_coverage .section_heading h2 {
  font-size: 40px;
}
.infra_media_coverage .section_heading .section_heading_bar span {
  margin-left: auto;
  margin-bottom: 16px;
}

/* *********************** */
/* Responsive */
/* *********************** */

@media (max-width: 1440px){
  .section_padding {
    padding: 60px 0;
  }
  .about_mission, .about_vision {
    padding-left: 30px !important;
    padding-right: 30px !important;
}
  .sub_banner img {
    max-height: 500px;
  }
  .banner_head h1 {
    font-size: 54px;
    line-height: 66px;
    padding: 12px;
  }
  .section_heading h2 {
    font-size: 42px;
  }
  .section_heading_bar span {
    height: 10px;
    margin-top: 14px;
  }
  .section_divider {
    height: 10px;
    margin: 5px 0;
  }
  .testimonials_card h4, .testimonials_card h5 {
    font-size: 26px;
  }
  .home_whychoose_card img {
    height: 100px;
  }
  .product_main li.nav-item .nav-link {
    font-size: 20px;
  }
  .prod_menu {
    top: 9.5%;
}
  .thanku_section .section_heading_center img {
    width: 380px;
    margin-bottom: 20px;
  }
  .thanku_section .section_heading_center a {
    border-width: 2px;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 22px;
    margin-top: 30px;
  }
}

@media (max-width: 1366px){
  .main_header .navbar-brand img {
    height: 46px;
  }
  .main_header .navbar-nav .nav-link {
    font-size: 16px;
  }
  .home_whychoose_card img {
    height: 80px;
    margin-bottom: 12px;
  }
  .sub_banner img {
    max-height: 450px;
  }
  .banner_head h1 {
    font-size: 46px;
    line-height: 56px;
  }
  .section_heading.section_heading_center .section_heading_bar span {
    margin: 12px auto 0;
  }
  .prod_menu {
    top: 8.5%;
}

.infra_whychoose_card {
  padding: 24px 18px;
}
.infra_whychoose_card h3 {
  font-size: 24px;
}
.infra_whychoose_us .owl-carousel {
  padding: 0 75px;
}
.infra_whychoose_us .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.infra_heading_bar span {
  width: 100px;
}





}

@media (max-width: 1024px){
body {
  font-size: 16px;
  line-height: 24px;
}
.main_header .top_header .header_social ul li a, footer .footer_top .footer_social ul li a {
  width: 26px;
  height: 26px;
  font-size: 15px;
}
.main_header .top_header .header_social ul li, footer .footer_top .footer_social ul li {
  margin-right: 4px;
}
.main_header .navbar-brand img {
  height: 36px;
}
.main_header.fixed-top .navbar-brand img {
  height: 32px;
}
.main_header .navbar-nav .nav-link, .main_header.fixed-top .navbar-nav .nav-link {
  font-size: 15px;
}
.banner_head h1 {
  font-size: 36px;
  line-height: 44px;
  padding: 8px;
}
.section_heading h2 {
  font-size: 32px;
}
.section_padding {
  padding: 40px 0;
}
.section_heading_bar span {
  height: 8px;
  margin-top: 10px;
}
.home_wide_range_app .owl-carousel {
  padding: 0 120px;
}
.home_prod_card h3, .home_wide_range_app .owl-carousel .owl-item .home_widerange_card h3 {
  font-size: 18px;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card h3 {
  margin-bottom: 10px;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card img {
  width: 54%;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-next, .home_wide_range_app .owl-carousel .owl-nav button.owl-prev, .infra_whychoose_us .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  border: 2px solid var(--black);
  font-size: 20px;
}
.home_wide_range_app {
  background-size: 80% auto;
}
.home_our_advfacility .owl-carousel .advfacility_card_text h2, .get_quote_text h2 {
  font-size: 26px;
}
.home_our_advfacility .owl-carousel .owl-nav button.owl-next, .home_our_advfacility .owl-carousel .owl-nav button.owl-prev {
  font-size: 60px;
}
.section_divider {
  height: 8px;
  margin: 4px 0;
}
.get_quote_text h2 {
  margin-bottom: 20px;
}
.get_quote_text a {
  border: 2px solid var(--black);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 24px;
}
.home_whychoose_card img {
  height: 70px;
}
.home_whychoose_card p {
  font-size: 16px;
}
.testimonials_card h4, .testimonials_card h5 {
  font-size: 20px;
}
.home_why_choose_us .col:first-child .home_whychoose_card, .home_why_choose_us .col:nth-child(1) .home_whychoose_card, .home_why_choose_us .col:nth-child(1) .home_whychoose_card {
  margin-bottom: 70px;
}
.home_our_advfacility .owl-carousel, .about_our_team .owl-carousel, .home_clients .owl-carousel {
  padding: 0 80px;
}
.about_team_card .about_teamcard_content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.about_team_card .about_teamcard_content p.teamdesig, .about_team_card .about_teamcard_content p.teamdesc {
  font-size: 16px;
  line-height: 20px;
}
.sub_banner img {
  max-height: 360px;
}
footer .footer_address p, .footer_connect p, .footer_connect a, footer .useful_link_list ul a, footer .footer_copyright p {
  font-size: 16px;
}
footer .footer_logo img {
  height: 36px;
}
.product_main li.nav-item .nav-link {
  font-size: 16px;
  padding: 8px;
}
.prod_menu {
  top: 9.5%;
}
.product_main li.nav-item {
  border-right: 2px solid var(--border1);
}
.product_main_text h3, .prod_feature_head h3 {
  font-size: 18px;
}
.prod_feature_item img {
  max-height: 36px;
  margin-right: 12px;
}
.product_main_conent .prod_feature:nth-child(1) .prod_feature_item, .product_main_conent .prod_feature:nth-child(2) .prod_feature_item, .product_main_conent .prod_feature:nth-child(3) .prod_feature_item {
  margin-bottom: 30px;
}
.contact_info_card p {
  font-size: 16px;
}
.contact_info_card i {
  font-size: 32px;
  margin-right: 12px;
}
.contact_info h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
.contact_info_card, .contact_form_field {
  margin-bottom: 30px;
}
.contact_form {
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact_map_inn iframe {
  max-height: 300px;
}
.thanku_section .section_heading_center img {
  width: 340px;
  margin-bottom: 20px;
}
.thanku_section .section_heading_center a {
  border-width: 2px;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 22px;
  margin-top: 30px;
}
.infra_whychoose_us .owl-carousel {
  padding: 0 46px;
}
.whychoose_count {
  font-size: 28px;
}
.infra_expertise_bx h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.infra_expertise_bx h3 small {
  font-size: 18px;
  margin-left: 6px;
}



}

@media (max-width: 991px) {
  .main_header .navbar-nav .nav-link {
    padding: 20px 12px;
  }
  .main_header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
  }
  .section_heading_bar span {
    width: 130px;
    height: 6px;
    margin-top: 0;
}
.section_divider {
  height: 6px;
  margin: 4px 0;
}
.home_what_we_do .section_heading {
  margin-bottom: 40px;
}
.home_wide_range_app .owl-carousel .owl-item .home_widerange_card img {
  width: 64%;
}
.home_widerange_card {
  padding: 50px 30px 50px;
}
.footer_logo {
  text-align: center;
  margin-bottom: 24px;
}
.home_wide_range_app {
  background-size: 92% auto;
}
.home_prod_card {
  max-width: 100%;
  margin-bottom: 16px;
}
.home_wide_range_app .owl-carousel, .home_our_advfacility .owl-carousel, .about_our_team .owl-carousel, .home_clients .owl-carousel {
  padding: 0 70px;
}
/* .res_px_0 {
  padding: 0;
} */
.contact_form {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}
.product_main_conent .prod_feature .prod_feature_item, .product_main_conent .prod_feature .prod_feature_item, .product_main_conent .prod_feature .prod_feature_item {
  margin-bottom: 32px !important;
}
.product_main_conent .prod_feature:last-child .prod_feature_item {
  margin-bottom: 0 !important;
}
.thanku_section {
  min-height: 56vh;
}
.thanku_section .section_heading_center img {
  width: 260px;
  margin-bottom: 24px;
}
.prod_menu {
  top: 5.5%;
  overflow: hidden;
}

.infra_media_coverage .section_heading h2 {
  font-size: 32px;
  margin-top: 30px;
}
.infra_media_coverage .section_heading .section_heading_bar span {
  margin-left: auto;
  margin-right: auto;
}
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 22px;
}
.main_header .navbar-brand img, footer .footer_logo img {
  height: 36px;
}
.main_header.fixed-top .navbar-brand img {
  height: 30px;
}
.main_header .offcanvas-collapse {
  width: 66%;
  padding: 60px 16px 16px;
}
.main_header .navbar-expand-lg .navbar-nav .nav-link {
  font-size: 15px;
}
.main_header .navbar-nav .nav-link {
  padding: 15px 12px;
}
.section_heading h2, .banner_head h1 {
  font-size: 24px;
  line-height: 36px;
}
.home_banner .owl-carousel .owl-item .home_banner_img, .home_banner .owl-carousel .owl-item .home_banner_img img {
  min-height: 400px;
}
.owl-dots button span {
  width: 12px;
  height: 12px;
  margin: 0 3px;
}
.home_what_we_do .section_heading {
  margin-bottom: 24px;
}
.section_heading {
  width: 100%;
  text-align: center;
}
.section_heading_bar span {
  margin: 0 auto;
}
.home_prod_card h3, .product_main_text h3, .prod_feature_head h3, .home_wide_range_app .owl-carousel .owl-item .home_widerange_card h3, .testimonials_card h4, .testimonials_card h5 {
  font-size: 18px;
}
.home_prod_mob_slider .owl-dots {
  position: relative;
  bottom: 0;
}
.section_heading_bar span {
  width: 100px;
  height: 4px;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-next, .home_wide_range_app .owl-carousel .owl-nav button.owl-prev, .infra_whychoose_us .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  font-size: 17px;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-prev, .infra_whychoose_us .owl-carousel .owl-nav button.owl-prev {
  left: -2%;
}
.home_wide_range_app .owl-carousel .owl-nav button.owl-next, .infra_whychoose_us .owl-carousel .owl-nav button.owl-next {
  right: -2%;
}
.home_wide_range_app .owl-carousel, .home_our_advfacility .owl-carousel, .about_our_team .owl-carousel, .home_clients .owl-carousel {
  padding: 0 32px;
}
.home_wide_range_app {
  background-size: 192% auto;
}
.home_our_advfacility .owl-carousel .advfacility_card_text h2, .get_quote_text h2 {
  font-size: 20px;
}
.home_our_advfacility .owl-carousel .owl-nav button.owl-next, .home_our_advfacility .owl-carousel .owl-nav button.owl-prev {
  font-size: 40px;
}
.home_our_advfacility .owl-carousel .owl-item img {
  border-radius: 20px;
}
.get_quote_text a {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 22px;
}
.home_whychoose_card img {
  height: 50px;
}
.section_padding {
  padding: 40px 0;
}
footer .footer_middle {
  padding: 30px 0 30px;
}
footer .footer_top .footer_social {
  margin-bottom: 16px;
}
footer .footer_top .footer_social ul {
  justify-content: center;
}
footer .useful_link_list ul {
  padding: 0;
}
.footer_logo {
  text-align: center;
  margin-bottom: 16px;
}
footer .footer_connect p {
  margin-bottom: 10px !important;
}
.section_heading.section_heading_center {
  margin: 0 auto 30px;
}
.about_whatset_card img {
  max-height: 60px;
}
.about_whatset_cards .col:nth-child(odd) .about_whatset_card {
  border: 8px solid var(--border1);
}
.about_whatset_cards .col:nth-child(even) .about_whatset_card {
  border: 8px solid var(--border2);
}
.about_whatset_cards .col:nth-child(odd) .about_whatset_card:after, .about_whatset_cards .col:nth-child(even) .about_whatset_card:after {
  content: '';
  bottom: -22px;
}
.product_main li.nav-item {
  width: auto;
}
.product_main .nav {
  overflow-x: auto;
  flex-wrap: unset;
  padding-bottom: 10px;
  margin-bottom: 2px !important;
}
.product_main_img, .product_main_img img {
  max-height: 400px;
}
.product_main_conent .product_main_text {
  margin-top: 40px;
}
.product_main li.nav-item .nav-link {
  white-space: nowrap;
}
.product_main li.nav-item .nav-link, .contact_info_card p {
  font-size: 15px;
}
.contact_info h3 {
  font-size: 26px;
  margin-bottom: 30px;
}
.contact_info_card i {
  font-size: 30px;
  margin-right: 16px;
}
.contact_info_card {
  margin-bottom: 30px;
}
.contact_info {
  padding: 40px 20px;
}
.contact_form {
  padding-top: 0;
  padding-bottom: 0;
}
.contact_form_inn {
  padding: 40px 20px;
}
.contact_form .form-label {
  margin-bottom: 8px;
}
.btn_submit {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 18px;
}
.prod_feature_item img {
  max-height: 32px;
}
.product_main_conent .prod_feature .prod_feature_item, .product_main_conent .prod_feature .prod_feature_item, .product_main_conent .prod_feature .prod_feature_item {
  margin-bottom: 24px !important;
}
.prod_feature_item p {
  font-size: 15px;
}
.thanku_section .section_heading_center img {
  width: 220px;
  margin-bottom: 16px;
}
.sub_banner img {
  min-height: 260px;
}
.home_clients .owl-carousel .owl-nav button.owl-next, .home_clients .owl-carousel .owl-nav button.owl-prev {
  bottom: 25%;
  font-size: 24px;
}
.prod_menu {
  top: 56px;
  overflow: hidden;
}
.product_main_text h3 {
  text-align: center;
}
.prod_feature_item {
  justify-content: left;
}

.infra_media_coverage .section_heading h2 {
  font-size: 24px;
  line-height: 36px;
}
.infra_media_coverage .owl-dots {
  position: relative;
  bottom: 0;
  margin-top: 12px;
}
.infra_media_coverage .owl-dots button span {
  background-color: var(--gray);
}
.infra_media_coverage .owl-dots button.active span {
  background-color: var(--primary);
}
.infra_expertise_bx {

}
.infra_expertise .row .col:not(:last-child) {
  border-right: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.infra_whychoose_us .owl-carousel {
  padding: 0 32px;
}
.infra_whychoose_card {
  margin-left: 3px;
}
.infra_whychoose_card h3 {
  font-size: 21px;
}
.whychoose_count {
  font-size: 26px;
}
}