@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
::before,
::after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
.overflow_hide {
  display: block;
  overflow: hidden;
}
.scrollup {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  display: none;
  z-index: 2222222;
  background-image: url(../images/icon_top.png);
  background-repeat: no-repeat;
  opacity: 0.95;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  overflow-x: hidden;
  margin: 0;
}
.container {
  width: 1290px;
  margin: auto;
}
ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
.main_section {
  width: 100%;
  display: block;
}

.abs_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
}
.main_logo {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 20px 0 0;
}
.main_logo a {
}
.main_logo a img {
  display: block;
  height: 135px;
}
.main_projects {
  display: grid;
  grid-template-columns: 500px 24fr 500px;
  gap: 0;
  align-items: center;
  padding: 0 50px;
}
.main_proj1 {
  position: relative;
  width: 100%;
  display: block;
}
a.hl_video {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
}
a.hl_video:hover {
  outline: 5px solid #06b0f1;
}
.hl_video::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 134, 0.25);
}
.hl_video video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}
.hl_video span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 42px;
  color: #fff;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 8s linear infinite;
  -moz-animation: rotating 8s linear infinite;
  -ms-animation: rotating 8s linear infinite;
  -o-animation: rotating 8s linear infinite;
  animation: rotating 8s linear infinite;
}

.bnr_top_make {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
}
.bnr_top_make::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  content: "";
  /* border: 1px dashed #fff; */
  background-image: linear-gradient(
    to right,
    rgb(255, 255, 255) 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.link-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 178px;
  height: 175px;
}

.link-img:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.make-in-india {
  position: relative;
  padding: 40px;
  width: 178px;
  height: 178px;
  margin: auto;
}
.make-in-india::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background-color: #fff;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 100%;
  z-index: -1;
}
img.logo_round {
  width: 97px;
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: auto;
}
.link-img img {
  position: absolute;
  transform: scale(1);
  transition: all 0.5s;
}

.link-img a {
  cursor: default;
}

.link-img .icon1 {
  top: -1px;
  right: 0;
}

.link-img .icon2 {
  top: 78px;
  right: 0;
}

.link-img .icon3 {
  top: 89px;
  right: 80px;
}

.link-img .icon4 {
  top: -1px;
  left: -1px;
}
.header {
  width: 100%;
  display: table;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #131313;
  background-image: url(../images/header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 9999;
}
.header.fixed {
  /* -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff; */
}
.header .flex {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header a.h_left {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header a.h_left span {
  width: 36px;
  height: 1px;
  background-color: #fecd7d;
}
.header a.h_left:hover span {
  background-color: #fff;
}
.header a.h_right {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fecd7d;
  padding: 13px 20px;
  border-radius: 5px;
  color: #131313;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.header a.h_right:hover {
  background-color: #fff;
}
.header a.h_right img {
  height: 9px;
}
.mainmenu {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.logo a {
  text-decoration: none;
  display: block;
  text-align: center;
}

.logo a img {
  height: 95px;
  padding: 5px 0;
}

.header_right {
  float: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.top_bar {
  background: #303f66;
  height: 32px;
  line-height: 32px;
  position: relative;
  float: right;
  transition: all 0.5s;
}

.top_bar::before {
  width: 0;
  height: 0;
  border-top: 32px solid #303f66;
  border-left: 32px solid transparent;
  content: "";
  position: absolute;
  left: -32px;
}

.top_bar:after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  content: "";
  background: #303f66;
}

.top_bar ul {
  float: right;
  list-style: none;
}

.top_bar ul li {
  float: left;
  margin-left: 15px;
  font-size: 15px;
  color: #fff;
  line-height: 32px;
  padding-right: 30px;
  position: relative;
  font-weight: 500;
}
.top_bar ul li::before {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 20px;
  background-color: #fff;
  opacity: 0.2;
}
.top_bar ul li:last-child::before {
  display: none;
}

.top_bar ul li i {
  font-size: 15px;
  float: left;
  cursor: pointer;
}

.top_bar ul li a {
  float: left;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.top_bar ul li a:hover {
  text-decoration: underline;
}

.menu {
}

.menu > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.menu > ul > li {
  position: relative;
  display: inline-block;
}

.menu > ul > li > a {
  line-height: 55px;
  height: 55px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #fecd7d;
}
.menu > ul > li:last-child > a:hover {
}
.megamenu {
  position: absolute;
  left: 0px;
  top: 100%;
  background-color: #fff;
  width: 215px;
  z-index: 9999;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.1s ease-in-out 0s;
  visibility: hidden;
  transform: translateY(30px);
  opacity: 0;
  border-top: 3px solid #fecd7d;
}

.megamenu:before {
  position: absolute;
  left: 40px;
  top: -10px;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fecd7d;
}

.menu > ul > li:hover .megamenu {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}

.megamenu ul {
  list-style: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.megamenu ul li {
  float: left;
  display: inline-block;
  width: 100%;
  margin-right: 0px;
  padding: 0;
}

.megamenu ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  line-height: 22px;
  display: block;
  font-size: 14px;
  width: 100%;
  font-weight: 600;
  border-bottom: 1px solid #eaeaea;
  text-transform: capitalize;
}

.megamenu ul li:last-child a {
  border: 0;
}

.megamenu ul li a:hover {
  background-color: #ddd;
  color: #000;
  transition: all 0.3s ease 0s;
}
.menu ul.menu_r {
  background-color: #e3e6e5;
  border-radius: 30px;
  margin-left: 20px;
  height: 40px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 10px 3px 5px rgba(0, 0, 0, 0.161);
  display: flex;
}
.menu ul.menu_r li {
  padding: 0;
}
.menu ul.menu_r li a {
  height: 40px;
  text-transform: uppercase;
  line-height: 40px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  font-size: 15px;
  color: #000066;
}
.menu ul.menu_r li a:hover {
  color: #04b5ff;
}
.menu ul.menu_r li a.active {
  background-color: #000066;
  border-radius: 30px;
  color: #fff;
}
.menu ul.menu_r li a img {
  height: 15px;
}
.hdright {
  float: right;
  padding-top: 38px;
}
a.site-header__link {
  float: left;
  display: inline-block;
  color: #fecd7d;
  margin-left: 25px;
}
a.site-header__link:hover:before,
a.site-header__link:hover:after {
  display: none;
}
.site-header__link-txt {
  display: none;
}
.site-header__link-icon {
  fill: #fecd7d;
  width: 22px;
  display: block;
}
.header.fixed .site-header__link-icon {
  fill: #2c3375;
}
/*----------banner-----------*/

.mtop1 {
  height: 155px;
}
.main_banner {
  background-color: #131313;
}

.carousel-inner .item img {
  width: 100%;
}

.banner_txt {
  top: 0 !important;
  left: 0%;
  color: #fff;
  position: absolute;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  justify-content: baseline;
}
.banner_txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  background-color: #131313;
  opacity: 0.44;
}
/* 
.banner_txt::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0px;
  width: 350px;
  height: 100%;
  z-index: -2;
  display: block;
  background: #04b5ff;
  transform: skew(-25deg);
  opacity: 0.4;
  animation: banneranim2 2s linear;
} */
.banner_txt_in {
  position: relative;
  width: 100%;
  padding: 0;
  display: table;
  border-radius: 10px;
  margin-left: 100px;
  visibility: hidden !important;
}

.banner_hd,
.banner_cont,
.banner_r_more {
  width: 100%;
  float: left;
}
.banner_hd {
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  padding-bottom: 0px;
  position: relative;
  font-weight: 700;
}
/* .banner_hd::before {
  position: absolute;
  left: -50px;
  top: -35px;
  width: 70px;
  height: 70px;
  content: "";
  background-image: url(../images/plus1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
} */
.banner_hd img {
  font-style: normal;
}
.banner_cont {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  margin: 10px 0 5px;
  display: block;
  padding: 0px;
  width: 35%;
}
.banner_r_more {
  clear: both;
  margin-top: 10px;
}
.banner_r_more a,
.explore_btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 14px;
  position: relative;
  gap: 7px;
  align-items: center;
  background-color: transparent;
  padding: 10px 30px;
  border: 4px solid #13131399;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}
.banner_r_more a:hover {
  background-color: #13131399;
  color: #fff;
}
.bannersh {
  position: absolute;
  right: 10px;
  top: 60px;
  z-index: 9;
  width: 200px;
}
.bannersh img {
  width: 100%;
  display: block;
}
.banner_info {
  position: absolute;
  right: 100px;
  bottom: 8%;
  z-index: 9;
  width: 320px;
}
.banner_info p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
/*----------banner-----------*/

/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
h2.ss_hd1,
h2 {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
h2.ss_hd1 span {
  background-color: #fff;
  padding: 5px 20px;
  position: relative;
}
h2.ss_hd1::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #707070;
  content: "";
}
.section2 h4,
h4.ss_hd2 {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.section2_grid {
  display: grid;
  gap: 20px;
  padding: 0 20px;
}
.section2_grid1 {
  grid-template-columns: 50fr 50fr;
  margin-bottom: 20px;
}
.section2_grid2 {
  grid-template-columns: 50fr 50fr;
  margin-bottom: 20px;
}
.subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.section2_grid_box1 {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
}
.section2_grid a,
.section2_grid a img {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #131313;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.section2_grid a img {
  object-fit: cover;
  object-position: center center;
}
.home_prod_info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  /* height: 100%; */
  background-color: rgba(255, 255, 255, 0.75);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  justify-content: end;
}
.home_prod_info h3 {
  font-weight: 700;
  font-size: 19px;
  /* margin-bottom: 10px; */
}
.home_prod_info p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  height: 0;
  opacity: 0;
  margin: 0;
  transition: all 0.3s;
}
.section2_grid a:hover .home_prod_info {
  height: 100%;
}
.section2_grid a:hover .home_prod_info p {
  height: auto;
  opacity: 1;
  margin-top: 10px;
}
.section2 .banner_r_more {
  display: flex;
  justify-content: center;
}
.section2 .banner_r_more a {
  color: #131313;
}
.section2 .banner_r_more a:hover {
  color: #fff;
}
/*-------section2---------*/

/*section3*/
.section3 {
  padding: 40px 0;
  position: relative;
  width: 100%;
}
.section3_grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1170px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.section3_grid a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #131313;
  transition: all 0.3s;
}
.section3_grid a .img {
  width: 100%;
  overflow: hidden;
}
.section3_grid a .img img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.section3_grid a:hover .img img {
  transform: scale(1.1) rotate(5deg);
}
.section3_grid a h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.section3_grid a p {
  color: #6d6d6d;
  text-transform: uppercase;
  margin: 0;
}
/*section3*/

/*section4_grid1*/
.section4_grid1 {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
.section4_grid1 a:hover .home_prod_info {
  height: auto;
}
/*section4_grid1*/

/*section5*/
.section5 {
  padding: 0 0 50px 0;
  width: 100%;
}
.section5_form {
  margin: auto;
  max-width: 600px;
  width: 100%;
  display: table;
  margin-top: 50px;
}
.section5_form input.form-control,
.section5_form select.form-control,
.section5_form textarea.form-control {
  background-color: rgba(27, 27, 27, 0.05);
  border-radius: 5px;
  height: 50px;
  border: 0;
  box-shadow: none;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
}
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #000;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
.section5_form select.form-control {
  cursor: pointer;
}
.section5_form textarea.form-control {
  height: 100px;
  resize: none;
  padding: 20px;
}
button.btn {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: table;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 14px;
  position: relative;
  gap: 7px;
  align-items: center;
  background-color: transparent;
  padding: 10px 30px;
  border: 4px solid #13131399;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  margin: auto;
}
button.btn:hover {
  background-color: #13131399;
  color: #fff;
}
/*section5*/

/*main_Footer*/
.main_Footer {
  width: 100%;
  display: block;
  padding: 30px 0;
  background-image: url(../images/ft_pattern.jpg);
  background-position: center center;
}
.main_Footer .flex1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
a.footerlogo {
  margin-bottom: 20px;
  display: block;
}
a.footerlogo img {
  height: 75px;
}
.ft_address {
  display: grid;
  grid-template-columns: 30px 1fr;
}
.ft_address img {
  width: 12px;
  position: relative;
  top: 4px;
}
.ft_address p {
  color: #fff;
  margin: 0;
  line-height: 1.6;
}
.ft_links {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.ft_links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.ft_links a:hover {
  color: #fecd7d;
}
.ft_social {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
.ft_social a {
  transition: all 0.3s;
}
.ft_social a img {
  height: 20px;
  transition: all 0.3s;
}
.ft_social a:hover img {
  opacity: 0.5;
}
.copy {
  text-align: right;
  color: #fff;
  opacity: 0.5;
}
/*main_Footer*/

.menu2 {
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 9;
  display: none;
}
.menu2 .menuicon1 {
  position: relative;
  z-index: 999;
  padding: 0 15px;
  height: 42px;
  line-height: 42px;
  border-radius: 20px 0 0 20px;
  text-decoration: none;
  color: #2b2a29;
  display: block;
  font-size: 16px;
  display: block;
  outline: 0px;
  transition: all 0.3s;
}
.sidemenu span {
  float: left;
}
.bars-wrap {
  display: inline-block;
  margin-left: 15px;
  position: relative;
  overflow: visible;
  top: 3px;
}
.icon-bar {
  transition: all 0.4s ease;
  width: 26px;
  background: #fecd7d;
  height: 2px;
  position: relative;
  top: 8px;
  transition: width 0.2s ease-out;
  clear: both;
  margin-bottom: 7px;
}
#header.fixed1 .icon-bar {
  background: #53c1ff;
}
/* .icon-bar:first-child {width:65%;}
.icon-bar:last-child {width:85%;} */

.menu2 .menuicon1:hover .icon-bar:first-child,
.menu2 .menuicon1:hover .icon-bar:last-child {
  width: 100%;
}

.cart_open {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999999;
  display: none;
}
.cartbg1 {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cart_bx1 {
  width: 90%;
  /* background-color: #303f66; */
  height: 100%;
  right: -100%;
  transition: ease all 0.4s;
  top: 0px;
  position: fixed;
  display: block;
  box-shadow: 0 10px 50px rgba(1, 2, 2, 0.15);
  z-index: 99999;
  overflow-y: auto;
  background-color: #131313;
  background-image: url("../images/innerbanner2.jpg");
}
.left1 {
  right: 2100px;
  z-index: 9999999;
  transition: ease all 0.8s;
}
.menu2 {
  right: 2100px;
  position: fixed;
  transition: ease all 0.6s;
  top: 0px;
  z-index: 999999;
}
.menu2:before {
  border-top: 100px solid rgba(255, 255, 255, 1);
}
.cart_bx1 ul {
  list-style: none;
  width: 100%;
  margin: 0px;
  padding: 0px;
  height: 100%;
  vertical-align: middle;
  padding-top: 10px;
  text-align: right;
}
.cart_bx1 ul li {
  float: none;
  width: 100%;
  display: block;
  clear: both;
}
.cart_bx1 ul li a {
  text-decoration: none;
  color: #2b2a29;
  font-weight: 400;
  font-size: 16px;
  display: block;
  padding: 10px 15px;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
  text-align: center;
  outline: none;
}
.cart_bx1 ul li a:hover,
.cart_bx1 ul li a.active {
  color: #2e3192;
}

a.closebtn {
  display: block;
  height: 42px;
  float: right;
  text-decoration: none;
  line-height: 42px;
  color: #fff;
  font-size: 16px;
  padding: 10px 25px;
  margin-bottom: 20px;
  /* background-image: url('../images/hpat.png'); */
}
a.closebtn img {
  width: 26px;
}
a.mobilecont {
  padding: 12px 28px 10px;
  margin-left: 20px;
  border: 1px solid #fecd7d;
  background-color: #fecd7d;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  display: inline-block;
}
.mobno {
  display: block;
}

/* ===========================
   ====== Media Queries ====== 
   =========================== */
/*------smallphones----------------*/
@media only screen and (min-width: 240px) and (max-width: 960px) {
  body {
    overflow-x: hidden;
    padding-top: 0;
  }
  .main_logo a img {
    height: 60px;
  }
  .main_projects {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .bnr_top_make::before {
    left: 50%;
    top: -10%;
    width: 1px;
    height: 120%;
  }
  a.hl_video {
    height: auto;
  }
  .hl_video video {
    width: 275px;
    height: 275px;
  }
  .hl_video span {
    font-size: 24px;
  }
  .bnr_top_make {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    padding: 20px 0;
  }
  .main_banner {
    overflow: hidden;
  }
  .main_section,
  .abs_box {
    position: relative;
  }
  .abs_box {
    z-index: 9;
    padding-bottom: 50px;
  }
  .main_logo {
    padding: 20px 0;
  }
  .main_bg,
  .main_bg img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .main_bg::before {
    z-index: 1;
  }
  .header {
    height: 80px;
    padding: 0;
  }
  .mtop1 {
    height: 80px;
  }
  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .footer {
    overflow: hidden;
  }
  .container {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
  }

  .menubar {
    display: none;
  }
  .top_social,
  .top_social ul {
    display: none;
  }
  .menu2 {
    display: block;
    top: 15px;
    right: 10px;
    z-index: 99999;
  }
  .menu {
    display: none;
  }

  .banner_hd {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 0px;
    padding-bottom: 10px;
    margin: 0;
  }
  .banner_hd br {
    display: none;
  }
  .banner_cont {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 20px;
    width: 100%;
  }
  .banner_txt {
    /* padding: 0 15%; */
  }
  .logo::before {
    width: 200px;
  }
  .logo a img {
    height: 80px;
    padding: 10px 0 10px 20px;
  }
  .top_bar {
    display: none;
  }
  .carousel-inner .item picture img {
    height: 550px;
    object-fit: cover;
    object-position: center center;
  }
  .banner_txt_in {
    width: 90%;
    padding: 25px;
    /* padding-top: 80px; */
    margin: auto;
    display: table;
  }
  .pavcontentslider .carousel-indicators {
  }
  .ban_but {
    bottom: 3%;
  }
  .header a.h_left,
  .header a.h_right {
    display: none;
  }
  .logo {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0%);
  }
  .header .flex {
    height: 80px;
  }
  .carousel-inner .item img {
    height: 350px;
    object-fit: cover;
    object-position: center center;
  }
  h2.ss_hd1,
  h2 {
    font-size: 21px;
  }
  .section2 h4,
  h4.ss_hd2 {
    font-size: 14px;
    padding: 0 20px;
  }
  .section2_grid1,
  .section2_grid2,
  .section3_grid,
  .section4_grid1,
  .subgrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .section3_grid,
  .section5_form {
    padding: 0 20px;
  }
  .section5_form .col-sm-6 {
    padding: 0 10px !important;
  }
  .section2_grid a img {
    height: 250px;
  }
  .section3 {
    padding-bottom: 0;
  }
  h2.ss_hd1 span {
    line-height: 1.4;
  }
  .main_Footer {
    padding: 30px 20px;
  }
  .main_Footer .flex1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ft_links {
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
  }
  .copy {
    text-align: left;
    font-size: 12px;
    margin-top: 20px;
  }
}
/*------iphone----------------*/
@media only screen and (min-width: 320px) and (max-width: 490px) {
}
/*------smalltablet----------------*/
@media only screen and (min-width: 490px) and (max-width: 768px) {
}
/*--------iPad - Portrait--------------*/
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .banner_hd {
    font-size: 48px;
    line-height: 52px;
  }
  .box2 ul li {
    float: left;
    display: inline-block;
    clear: none;
    width: 50%;
  }
  .section2_grid1,
  .section2_grid2,
  .section3_grid,
  .section4_grid1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section3_grid,
  .section4_grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 961px) and (max-width: 1240px) {
  .container {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
    padding: 0 75px;
  }
  .header {
    height: 155px;
    padding: 0 30px;
  }
  .menu > ul > li {
    margin: 0;
  }
  .menu > ul > li > a {
    font-size: 14px;
  }
  .logo a img {
    height: 80px;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .menu ul {
    margin-right: 0;
  }
  .menu > ul > li > a {
    height: 50px;
    line-height: 50px;
    font-size: 13px;
  }
  .menu > ul > li > a i {
    bottom: 3px;
  }
  .menu ul.menu_r {
    margin-top: 5px;
    margin-left: 20px;
  }
  .hdright {
    padding-top: 5px;
  }
  .menu ul.menu_r li a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1140px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 30px;
  }
  .section2in {
    padding-left: 50px;
  }
  .section2in h2 {
    font-size: 28px;
  }
  .section2in .owl-stage {
    left: -20px;
  }
  .banner_hd {
    font-size: 36px;
    line-height: 1.3;
  }
  .box2cont p {
    min-height: 78px;
  }
  .logo a img {
  }
  .footer {
    padding: 0 30px;
    gap: 50px;
  }
  .footer_logo img {
    height: 90px;
  }
  .section4 .sec4_left {
    padding: 50px;
  }
  .sec4_left_in h2,
  .section3 h2 {
    font-size: 26px;
  }
  .section4 .sec4_right ul li h4 {
    font-size: 24px;
  }
  .section4 .sec4_right ul li {
    padding: 30px;
  }
  .section4 .sec4_right ul li p {
    font-size: 14px;
    line-height: 21px;
  }
  .section2_grid_box1 h2,
  .sectors h2,
  h2 {
    font-size: 36px;
  }
  .home_projects_bx h3 {
    font-size: 21px;
  }
  .sectors ul li a h3 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1240px) and (max-width: 1500px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 30px;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .header {
    padding: 0 40px;
  }
  .logo a img {
    height: 55px;
    margin-top: 10px;
  }
  .section2in {
    padding-left: 50px;
  }
  .logo a img {
    height: 85px;
  }

  .menu ul.menu_r li a {
    padding: 0 10px;
    font-size: 14px;
  }
}
