* {
    outline: none !important;
    scroll-behavior: smooth;
  }
  
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #212529;
}
/* LINKS */
a {
    color: #000;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }

  h1,h2,h3,h4 {
    display: block;
    font-family: 'Poppins', sans-serif;
  }
  
  a:hover {
    text-decoration: underline;
    color: #000;
  }

  p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
  }
  p:last-child{
    margin-bottom: 0px;
  }



/* SECTION TITLE */
.section-title h2, .section-title h1, .error-page h1{
  position: relative;
  font-size: 40px;
  color: #000;
  font-weight: 700;
  line-height: 40px;
  display: inline-flex;
}

.section-title h2:after, .section-title h1:after, .error-page h1:after{
  content: '';
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #EE3E02;
}

/* SPACINGS */

.section {
  width: 100%;
  display: block;
  padding: 100px 0px;
  margin: 100px 0px;
  position: relative;
}

.nomargin{
  margin: 0px !important;
}
.notopmargin{
  margin-top: 0px !important;
}
.nobottommargin{
  margin-top: 0px !important;
}
.nopadding{
  padding: 0px !important;
}
.notoppadding{
  padding-top: 0px !important;
}
.nobottompadding{
  padding-bottom: 0px !important;
}

  .container{
    max-width: 1170px;
    margin: auto;
    padding: 0;
  }

  /* NAVBAR */

.main-nav-header {
    background-color: transparent !important;
    position: fixed;
    width: 100%;
	border-bottom: 1px solid #f3f3f3;
    top: 0;
    z-index: 999;
}

.navbar {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative !important;
    left: 50%;
    padding: 10px 0 5px 0;
    transform: translateX(-50%);
    z-index: 99;
    /* position: fixed; */
    background: #fff !important;
}
 
  .navbar .logo {
    margin-left: 0;
  }
  .navbar .logo a {
    display: inline-block;
  }
  .navbar .logo a img {
    height: 80px;
  }
.navbar .site-menu {
    margin: 0;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    position: relative;
    float: left;
}
  .navbar .site-menu ul {
    display: inherit;
    margin: 0;
    padding: 0;
    align-items: left;
  }
  .navbar .site-menu ul li:nth-child(1) {
    margin-left: 0;
   }
  .navbar .site-menu ul li {
    /* display: inline-block; */
    margin: 0 25px;
    padding: 0;
    list-style: none;
	float:left;
    position: relative;
  }
  .navbar .site-menu ul li:last-child{
    margin-right: 0px;
  }
  .navbar .site-menu ul li a {
    color: #000;
    position: relative;
    align-content: space-around;
    align-items: flex-start;
    justify-content: left;
    text-transform: uppercase;
    font-size: 13px !important;
    flex-direction: row;
	width: 100%;
	padding-bottom: 0 !important;
  }
  .navbar .site-menu ul li a img{
    margin-right: 5px;
  }
  /* .navbar .site-menu ul li a:after {
    content: "";
    width: 0;
    height: 3px;
    background: #EE3E02;
    position: absolute;
    left: 50%;
    bottom: -5px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  } */
  .navbar .site-menu ul li a:hover {
    text-decoration: none;
    color: #EE3E02;
  }
  /* .navbar .site-menu ul li a:hover:after {
    width: 100%;
    left: 0;
  } */
  .navbar .hamburger-menu {
    display: inline-block;
    display: none;
  }



  /* HAMBURGER MENU */
.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    cursor: pointer;
  }
  
  .hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ee3e02;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .hamburger-menu span:nth-child(1) {
    top: 0px;
    width: 13px;
  }
  
  .hamburger-menu span:nth-child(2) {
    top: 9px;
  }
  
  .hamburger-menu span:nth-child(3) {
    top: 18px;
    width: 100%;
  }
  
  .hamburger-menu:hover span {
    width: 30px !important;
  }
  

  /* HEADER */
.header {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
  }
  .header .main-slider {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .header .main-slider .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 7%;
    /* padding-top:30px; */
    background: #000;
  }
  .header .main-slider .swiper-slide .slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1;
  }
  .header .main-slider .swiper-slide .slide-inner {
    width: 100%;
    display: block;
    text-align: left;
    color: #000;
    position: relative;
    z-index: 1;
  }
  .header .main-slider .swiper-slide .slide-inner h1 {
    width: 100%;
    display: block;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .header .main-slider .swiper-slide .slide-inner h1 strong{
    font-weight: 600;
  }
  .header .main-slider .swiper-slide .slide-inner h1 span{
    color: #EE3E02;
    font-weight: 700;
  }
  .header .button-prev {
    width: 40px;
    height: 40px;
    line-height: 33px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: calc(60% - 20px);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    font-size: 23px;
    cursor: pointer;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }
  .header .button-prev:hover {
    /* background: #EE3E02; */
    border-color:  #EE3E02;
  }

  .header .button-prev img{
    transform: rotate(180deg);
  }

  .header .button-next {
    width: 40px;
    height: 40px;
    line-height: 33px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: calc(60% - 20px);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    font-size: 23px;
    cursor: pointer;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }
  .header .button-next:hover {
    /* background: #EE3E02; */
    border-color:  #EE3E02;
  }

  /* SWIPER PAGINATION */
  .swiper-pagination {
    width: 100%;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 6px;
    border-radius: 6px;
    background: #000;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    opacity: 0.5;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background: #EE3E02;
    opacity: 1;
  }



/* What Do We Do */

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

.add-margin-bottom h2, .section-title h1, .error-page h1 {
    margin-bottom: 30px;
    margin-top: 20px;
}
/* .what-do-we-do-inner-title h1{
  position: relative;
  font-size: 40px;
  color: #000;
  font-weight: 700;
  line-height: 40px;
  display: inline-flex;
}

.what-do-we-do-inner-title h1:after{
  content: '';
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #EE3E02;
} */
.what-do-we-do-inner-image {
  text-align: center;
}
.what-do-we-do-inner-image img {
  max-width: 100%;
}
.what-do-we-do-inner-details{
  padding: 20px 0px 20px 60px;
}
.what-do-we-do-inner-details p{
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  color: #000;
}


/* What have we Done  */

.what-have-we-done{
  background-image: url('../images/what-have-we-done-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px;
  background-position: top center;
}

.show-phone{
  display: none;
}

.show-bg-image-phone {
  display: none;
}

.what-have-we-done-inner-details p {
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  color: #000;
}
span.span-bold {
  font-weight: 500;
  padding-top: 5px;
  display: block;
}

.what-have-we-done .what-do-we-do-inner-title h1{
  margin-bottom: 30px;
}

.read-more-btn{
  font-size: 14px;
  font-weight: 600;
}

.read-more-btn img{
  margin-left: 5px;
}



/* Footer Css */

.footer-section {
  background-color: #EAF1F7;
  padding:25px 0px 40px 0px;
}
.footer-menu ul {
    display: table;
    list-style: none;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
/* .footer-menu ul li{
  padding: 0px 40px;
  border-right: 1px solid #bbbbbb;
} */

.footer-menu ul li a{
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  padding:0px 10px;
  border-right: 1px solid #bbbbbb;
}
.footer-menu ul li:last-child a{
  border: 0px;
}

.footer-menu li {
    display: inline-flex;
}

.copyright{
  font-size: 14px;
  color: #000;
}
.copyright a{
  text-decoration: underline;
}

.copyright a:hover{
  color: #EE3E02;
}

.divider{
  width: 100%;
  height: 1px;
  background-color: #c7c7c7;
  margin: 20px 0px;
}


 /* SIDE SLIDER */
.side-slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .side-slider .slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 6px;
  }
  .side-slider .slider .swiper-slide img {
    width: 100%;
    float: left;
  }
  .side-slider .swiper-pagination {
    width: 100%;
  }
  .side-slider .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
    border-bottom: 20px;
  }
  .side-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #EE3E02;
    opacity: 1;
  }
  .side-slider .note-box {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    position: absolute;
    left: -50px;
    bottom: 100px;
    z-index: 1;
    color: #009a4e;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    padding: 20px 30px;
    line-height: 1.2;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  .side-slider .note-box:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    bottom: -20px;
    right: 30px;
  }
  
  
.side-image {
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
}
.side-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}



/* Inside Page Css */
.inside-page {
  position: relative;
  width: 100%;
  margin-top: 80px;
}

.about-us{
  background-image: url('../images/about-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.show-bg-image-tabs{
  display: none;
}

.show-bg-image-tabs img{
  width: 100%;
}

.section-title p{
  font-size: 30px;
  line-height: 38px;
  color: #000;
  font-style: italic;
  padding-top: 10px;
}


.the-mission{
  background-image: url('../images/the-mission-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 150px 0px;
}

.the-vision{
  background-image: url('../images/the-vision-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 150px 0px;
}

.show-vision-mission-phone{
  display: none;
}

.show-vision-mission-phone img{
  width: 100%;
}



#go-top {
  position: fixed;
  right: 5px;
  bottom: 40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #EE3E02;
  display: none;
  border-radius: 2px;
  z-index: 9999;
  -webkit-box-shadow: 5px 5px 10px rgb(0 0 0 / 30%);
  box-shadow: 5px 5px 10px rgb(0 0 0 / 30%);
}
#go-top i.lni.lni-arrow-up {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-us2 {
    min-height: 570px;
}

.navbar .site-menu ul li a span {
    width: 32px;
    text-align: center;
    float: left;
}

.navbar .site-menu ul li a span.menu-text {
    width: auto !important;
    line-height: 22px;
	padding-top: 2px;
	font-size: 13px !important;
	float:left;
}

section.about-us.about-us2.inside-page {
    background: none;
    min-height: 410px;
}

.landing-page {
    background-image: url(../images/landing-page.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100%;
    float: left;
    height: 100vh; max-height: 700px;
    background-size: auto;
    margin-bottom: 70px;
}

.landing-menu {
    position: absolute;
    bottom: -420px;
    right:0%; width: 85%;
}

.landing-menu ul {margin:0;padding:0}
.landing-menu ul li { list-style: none; width: 190px; height: 36px; margin-top: 50px; position: relative; z-index: 999; } 
.landing-menu ul li a { background: url(../images/menu-box.png) no-repeat center top; width: 100%; float: left; height: 36px; text-align: center; color: #fff; font-size: 13px; padding-top: 6px; padding-left: 15px; text-transform: uppercase; font-weight: 600; }
.landing-menu ul li a:hover {text-decoration:none}
.menu2 {margin-left:200px}
.menu3 {margin-left:350px}
.menu4 {margin-left:500px}
.menu5 {margin-left:650px}
.menu6 {margin-left:800px}
.menu7 {margin-left:600px}
.menu8 {margin-left:700px}
.menu9 {margin-left:800px}

.landing-content-area {width:50%;position:absolute;right:0;bottom:0}

.landing-content-area {
    width: 35%;
    position: static;
    right: 89px;
    bottom: 50px;
    float: right;
    margin-top: 200px;
}

.landing-content-area  p {
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    color: #000;
}

.title1 {
    position: relative;
    font-size: 23px;
    color: #000;
    font-weight: 300;
    line-height: 33px;
    display: inline-flex;
}

.title2 {
    position: relative;
    font-size:23px;
    color: #000;
    font-weight: 700;
    line-height: 40px;
    display: inline-flex;
    margin-bottom: 13px;
}

section.about-us {
    padding-top: 170px;
}

.what-bg1 {background: url(../images/what-have-we-done-bg.jpg) no-repeat center 120px;background-size: cover;padding-bottom: 60px !important;}
.what-bg2 {background: url(../images/what-have-we-done.jpg) no-repeat center 120px;background-size: cover;padding-bottom: 60px !important;}
.contact {background: url(../images/contact.jpg) no-repeat center 120px;background-size: cover;}

nav.navbar.main-menu.home {
    background: none ;
}

.main-nav-header1 {padding:10px 0;}

.no-bg {background:none}

img.desk-img {
    display: block;
}

img.mob-img {
    display: none;
}

/* Edited by aparna */
.container-relative{ position: relative;}
.main-nav-header .divider{ margin-bottom: 0px; background-color: #c7c7c745;}
.footer-logo-section{ padding: 40px;}

.footer-logo-section h4{
  position: relative;
  font-size: 30px;
  color: #000;
  font-weight: 700;
  line-height: 40px; margin-bottom: 20px;
  display: inline-flex;
}

.footer-logo-section h4::after{
  content: '';
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #EE3E02;
}
.footer-logo-section .logo a{ display: block;}

/*--- New ---*/
/* .contact-icon { width: 50px; text-align: left; } */
.contact-icon img { width: 40px; }
.contact-dtl { display: flex; width: 100%; align-content: center; align-items: center; margin: 0 0 20px; padding: 0 0 20px; position: relative; }
.contact-dtl::after { content: ""; position: absolute; width: 300px; height: 1px; background: #ececec; bottom: 0; left: 0; }
.contact-dtl:last-child::after {display:none;}
.contact-text { padding-left: 10px; font-size: 16px; }
.contact-dtl:first-child { margin-top: 15px; }
.contact-icon { min-width: 50px; text-align: center; background: #eaf1f7; padding: 10px; /* border-right: 3px solid #d0c5c1; */ position: relative; }
.contact-icon::after { content: ""; width: 20px; height: 20px; border-bottom: 2px solid #ee3e02; border-right: 2px solid #ee3e02; position: absolute; right: 0; bottom: 0; }
.contact-icon::before { content: ""; width: 20px; height: 20px; border-top: 2px solid #ee3e02; border-left: 2px solid #ee3e02; position: absolute; top: 0; left: 0; }
.construction-1 { background-image: url('../images/construction-1.jpg'); background-repeat: no-repeat; background-size: cover; background-position: top center; padding: 150px 0px; }
.construction-2 { background-image: url('../images/construction-2.jpg'); background-repeat: no-repeat; background-size: cover; background-position: top center; padding: 150px 0px; }
.product-bg { background: url(../images/product-bg.jpg) no-repeat center 120px; background-size: cover; padding-bottom: 60px !important; }

.error-page{background: none;     padding-bottom: 50px;}