@charset "utf-8";
*,
::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: "ProximaNova";
  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: "ProximaNova";
}
.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: #fff;
  z-index: 999999;
  padding: 0 100px;
}

.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;
}

.logo {
  float: left;
  padding: 0;
}
.logo a {
  text-decoration: none;
  display: block;
  text-align: center;
  padding-top: 10px;
}

.logo a img {
  height: 60px;
  /* box-shadow: 9px 9px 20px rgba(0, 0, 0, 0.161); */
}
.header.fixed .logo a img {
  /* height: 103px;
  width: 190px;
  object-fit: cover;
  object-position: center top; */
}
.header_right {
  float: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.top_bar {
  background: #eff1f1;
  height: 40px;
  line-height: 40px;
  position: relative;
  float: right;
  transition: all 0.5s;
}

.top_bar::before {
  width: 0;
  height: 0;
  border-bottom: 40px solid #eff1f1;
  border-left: 40px solid transparent;
  content: "";
  position: absolute;
  left: -40px;
}

.top_bar:after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  content: "";
  background: #eff1f1;
}

.top_bar ul {
  float: right;
  list-style: none;
}

.top_bar > ul > li {
  float: left;
  margin-left: 15px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  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;
  color: #00773a;
}

.top_bar > ul > li > a {
  float: left;
  color: #183637;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  font-size: 15px;
}

.top_bar ul li a:hover {
}

.menu {
  float: right;
}

.menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  float: left;
}

.menu > ul > li {
  position: relative;
  display: inline-block;
  padding: 0px 15px;
}

.menu > ul > li > a {
  line-height: 75px;
  height: 75px;
  color: #2d3674;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: capitalize;
  outline: 0;
}
.menu > ul > li > a i {
  color: #c22a0b;
  font-size: 16px;
}
.menu > ul > li:last-child > a {
  background-color: #03aa54;
  border-radius: 7px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px 0 15px;
  color: #fff;
  margin-top: 15px;
}
.menu > ul > li:last-child > a img {
  height: 20px;
}
.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #00773a;
}
.menu > ul > li:last-child:hover > a {
  background-color: #c22a0b;
  color: #fff !important;
}
.megamenu {
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: #2f2c91;
  width: 220px;
  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: translate(-50%, 30px);
  opacity: 0;
  /* border-top: 3px solid #00773a; */
}
.megamenu2,
.megamenu3,
.megamenu4 {
  position: absolute;
  left: 100%;
  top: 0%;
  background-color: #1c632f;
  width: 240px;
  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;
}
.megamenu3,
.megamenu4 {
  width: 200px;
}
.megamenu3_left {
  left: -200px;
}
.menu > ul > li:hover .megamenu,
.top_bar > ul > li:hover .megamenu,
.megamenu > ul > li:hover .megamenu2,
ul.megamenu2 > li:hover .megamenu3,
ul.megamenu3 > li:hover .megamenu4 {
  opacity: 1;
  transform: translate(-50%, 0px);
  visibility: visible;
}

.megamenu > ul > li:hover .megamenu2,
ul.megamenu2 > li:hover .megamenu3,
ul.megamenu3 > li:hover .megamenu4 {
  transform: translate(0%, 0px);
  opacity: 1;
  visibility: visible;
}
.megamenu > ul {
  list-style: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.megamenu ul li {
  float: left;
  display: inline-block;
  width: 100%;
  margin-right: 0px;
  padding: 0;
}
.megamenuposrel ul li,
.megamenu2 ul li,
.megamenu3 ul li,
.megamenu4 ul li {
  position: relative;
}
.megamenu ul li a,
.megamenu2 li a,
.megamenu3 li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  line-height: 22px;
  display: block;
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid #26236d;
  text-transform: capitalize;
}
.megamenu2 li a,
.megamenu3 li a {
  border-color: #155025 !important;
}
.megamenu ul li:last-child a {
  border: 0;
}

.megamenu > ul > li:hover > a,
.megamenu2 > li:hover > a,
.megamenu3 > li:hover > a,
.megamenu4 > li:hover > a {
  background-color: #fff;
  color: #2f2c91;
  transition: all 0.3s ease 0s;
}
.megamenu2 > li:hover > a {
  background-color: #fff;
  color: #155025;
}
.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: #7e0609;
  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: #7e0609;
  width: 22px;
  display: block;
}
.header.fixed .site-header__link-icon {
  fill: #2c3375;
}
/*----------banner-----------*/

.mtop1 {
  height: 75px;
}
.main_banner {
  overflow: hidden;
}
.pavcontentslider .carousel-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 70%;
  height: 100%;
  z-index: 9;
  display: block;
  opacity: 0.69;
  background: linear-gradient(to right, #00270f, transparent);
}
.pavcontentslider .carousel-inner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  z-index: 9;
  background-image: url(../images/shape1.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}
.carousel-inner > .item > img {
  width: 100%;
  height: calc(100vh - 135px);
  object-fit: cover;
  object-position: center center;
}

.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: grid !important;
  grid-template-columns: 65fr 35fr;
  align-items: center;
  gap: 100px;
}
/* .banner_txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  opacity: 0.69;
  background: linear-gradient(to right, #00270f, transparent);
} */

/* 
.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;
  margin-left: 100px;
  visibility: hidden !important;
}
.banner_txt > img {
  visibility: hidden !important;
  position: relative;
  right: 0%;
  height: 55vh;
  /* width: 100%; */
}
.banner_hd,
.banner_cont,
.banner_r_more {
  width: 100%;
  float: left;
}
.banner_hd {
  color: #fff;
  font-size: 38px;
  line-height: 1.1;
  padding-bottom: 0px;
  position: relative;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Times New Roman", Times, serif;
}
.banner_cont {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 10px 0 5px;
  display: block;
  padding: 0px;
  width: 75%;
}
.banner_r_more {
  clear: both;
  margin-top: 10px;
}
.banner_r_more a,
.explore_btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 15px;
  position: relative;
  gap: 3px;
  align-items: center;
  background-color: #03aa54;
  padding: 7px 10px;
  border-radius: 5px;
}
.explore_btn a {
  background-color: transparent;
  border: 0;
  color: #7e0609;
  padding: 0;
}
.banner_r_more a img,
.explore_btn a img {
  height: 20px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 0px;
}
.banner_r_more a:hover {
  background-color: #c22a0b;
  color: #fff;
}
.explore_btn a:hover {
  opacity: 0.8;
}
.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;
}

.bannerBtn a {
  position: absolute;
  right: 30px;
  bottom: 65px;
  margin: auto;
  text-decoration: none;
  display: flex;
  width: 100px;
  outline: 0px;
  z-index: 999;
  border-radius: 100%;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.bannerBtn a img {
  width: 100%;
  display: block;
}

.carousel-indicators li {
  width: auto;
  height: auto;
  text-indent: initial;
  background-color: transparent;
  color: #fff;
  border: 0;
  min-width: 50px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  border-radius: 0;
  padding-bottom: 0;
  position: relative;
  opacity: 1;
}
.carousel-indicators li::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  content: "";
  background-color: #fff;
}
.carousel-indicators li.active::before {
  width: 100%;
  transition: all 5s;
}
.carousel-indicators li span {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  left: -15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  top: -5px;
}
.carousel-indicators li:last-child:after {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  right: -15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  top: -5px;
  content: "";
}
.carousel-indicators li.active {
  width: auto;
  height: auto;
}
.carousel-indicators li.active span {
  background-color: #fff;
}
/*----------banner-----------*/

.announcement {
  width: 100%;
  display: table;
  padding: 0px;
  background-color: #1c632f;
  position: relative;
  padding-left: 200px;
}
.announcement_hd {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  text-align: center;
  text-transform: uppercase;
  background-color: #2f2c91;
  display: block;
  color: #fff;
  height: 60px;
  line-height: 60px;
  letter-spacing: 1px;
}
.announcement .news_pd {
  width: 100%;
  display: block;
  height: 60px;
  line-height: 60px;
  float: right;
}
.announcement ul.news_scroll {
  list-style: circle;
}
.announcement ul.news_scroll li {
  display: inline-block;
  padding: 0 5px;
  position: relative;
  color: #000;
  font-size: 14px;
}
.announcement ul.news_scroll li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  padding: 0 15px;
  position: relative;
  font-size: 16px;
}
.announcement ul.news_scroll li a:hover {
  opacity: 0.75;
}
.announcement ul.news_scroll li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -5px;
  background-color: #fff;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  /* opacity: 0.5; */
  /*border-radius: 3px;*/
}

/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-position: -45px 30px;
  background-size: 100%;
}
.section2_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  row-gap: 70px;
}
a.sec2bx {
  display: block;
  transition: all 0.3s;
}
a.sec2bx .img {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
a.sec2bx .img > img {
  display: block;
  width: 100%;
  transition: all 0.3s;
}
a.sec2bx:hover .img > img {
  transform: rotate(4deg) scale(1.1);
}
a.sec2bx .img h3 {
  display: flex;
  width: 85%;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #168d69;
  text-transform: uppercase;
  font-size: 26px;
  border-bottom: 10px solid #168d69;
  position: absolute;
  left: 0;
  bottom: 0;
  gap: 20px;
}
a.sec2bx2 .img h3 {
  color: #cc6f5c;
  border-bottom: 10px solid #cc6f5c;
}
a.sec2bx3 .img h3 {
  color: #8f9f09;
  border-bottom: 10px solid #8f9f09;
}
a.sec2bx4 .img h3 {
  color: #5553c9;
  border-bottom: 10px solid #5553c9;
}
a.sec2bx .img h3 img {
  height: 50px;
}
a.sec2bx p {
  margin-bottom: 20px;
  color: #000;
}
a.sec2bx u {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 3px;
  align-items: center;
  background-color: #168d69;
  padding: 4px 10px;
  border-radius: 5px;
}
a.sec2bx u img {
  height: 18px;
}
a.sec2bx2 u {
  background-color: #cc6f5c;
}
a.sec2bx3 u {
  background-color: #8f9f09;
}
a.sec2bx4 u {
  background-color: #5553c9;
}
a.sec2bx u:hover {
  background-color: #c22a0b;
}
a.sec2bx2 {
  margin-top: 100px;
}
a.sec2bx3 {
  margin-top: -100px;
}
/*-------section2---------*/

/*section3*/
.section3 {
  padding: 100px 0;
  /* background-color: rgba(0, 47, 53, 0.84); */
  position: relative;
  width: 100%;
  background-image: url(../images/bg2.jpg);
  background-size: cover;
  background-position: center bottom;
  text-align: center;
  background-repeat: no-repeat;
}
.section3_in {
  position: relative;
}
.section3_in h3 {
  color: #a7a7a7;
  margin: 0;
}
.section3_in h2 {
  font-size: 42px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  margin: 20px 0;
  font-family: "Times New Roman", Times, serif;
  padding: 0 100px;
}
.section3_in h2 strong {
  font-weight: 700;
}
.section3 a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 3px;
  align-items: center;
  background-color: #168d69;
  padding: 4px 15px;
  border-radius: 5px;
}
.section3 a img {
  height: 18px;
}
.section3 a:hover {
  background-color: #c22a0b;
}
/*section3*/

/*section4*/
.section4 {
  padding: 100px 0;
  width: 100%;
  background-image: url(../images/bg3.jpg);
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: -75px 50px;
}
.section4 h2 {
  color: #000;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
  margin: 30px 0 10px;
}
.section4 img {
  width: 100%;
  display: block;
}
.section4 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  padding-left: 50px;
}
.sec4_bx1 {
  background-color: #096046;
  padding: 50px 25px;
  color: #fff;
  background-image: url(../images/economic.png);
  background-repeat: no-repeat;
  background-position: 95% 20px;
  background-size: 35px;
}
.sec4bg2 {
  background-color: #020061;
  background-image: url(../images/planet-earth.png);
  background-size: 40px;
}
.sec4bg3 {
  background-color: #fff;
  background-image: url(../images/atom.png);
  background-size: 50px;
  border: 3px solid #ebebeb;
}
.sec4bg4 {
  background-color: #a94835;
  background-image: url(../images/satisfaction.png);
  background-size: 40px;
}
.sec4_bx1 h3 {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.sec4_bx1 p {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}
.sec4bg3 h3,
.sec4bg3 p {
  color: #000;
}
.sec4bg1 {
}
/*section4*/

/*section5*/
.section5 {
  padding: 60px 0;
  /* background-color: #fff; */
  width: 100%;
  position: relative;
  overflow: hidden;
}
.section5 video {
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}
.section5::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  content: "";
  background-color: #004c35;
  opacity: 0.93;
  z-index: -1;
}
.section5 h2 {
  text-align: center;
  margin: 0 0 40px;
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
}
.section5 ul li {
}
.awards_bx img {
  width: 100%;
  display: block;
  /*opacity: 0.5;*/
  height: 300px;
  object-fit: cover;
  object-position: center center;
  /* box-shadow: 9px 9px 20px rgba(0, 0, 0, 0.161); */
  position: relative;
}
.awards_bx h3 {
  text-align: center;
  background-color: #f6f6f6;
  color: #002f35;
  font-size: 14px;
  line-height: 1.6;

  padding: 15px;
  /* display: none; */
}
/*
.section5 .owl-carousel .owl-stage-outer {
  padding: 50px 0 100px;
}
.section5 .owl-carousel .owl-item.active.center .awards_bx h3 {
  display: block;
}
.section5 .owl-carousel .owl-item.active.center .awards_bx img {
  opacity: 1;
  height: auto;
} 
.section5 .owl-carousel .owl-item.active {
  position: relative;
  z-index: 9;
}
.section5 .owl-carousel .owl-item.active.center {
  position: relative;
  z-index: 99;
}
.section5 .owl-carousel .owl-item.active.center .awards_bx {
  transform: scale(1.8);
  margin-top: 60px;
} */
.section5 .owl-dots {
  display: none !important;
}
.section5 .owl-nav {
  display: none;
}
.certifications {
  margin: auto;
  margin-top: 0;
}
.cert_grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 50px;
  align-items: center;
  padding: 75px 0 0;
}
.cert_grid h3 {
  color: #a7a7a7;
  margin: 0;
}
.cert_grid h2 {
  color: #000;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
  margin: 10px 0 0;
  text-align: left;
}
.certifications_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.cert_bx1 {
  position: relative;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.161);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  align-self: flex-start;
}
.certifications_grid .cert_bx1:nth-child(2n) {
  margin-top: 50px;
}
.certifications_grid .cert_bx1:nth-child(3n) {
  margin-top: -50px;
}
.certifications_grid .cert_bx1:nth-child(4n) {
  margin-top: 0px;
}
.cert_bx1:hover {
}
.cert_bx1 img {
  width: auto;
  height: 125px;
}
.cert_bx1 h3 {
  color: #000;

  font-size: 16px;
  margin: 15px 0 0;
  font-weight: 500;
}
.cert_bx1 span {
  position: absolute;
  right: -15px;
  bottom: -15px;
  background-color: #002f35;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40px;

  align-items: center;
  justify-content: center;
  font-size: 18px;
  display: none;
  transition: all 0.3s;
}
.cert_bx1:hover span {
  display: flex;
}
/*section5*/

/*section6*/
.section6 {
  background-color: #020061;
  padding: 50px 0;
  width: 100%;
  display: block;
}
.section6 .col-sm-6,
.section6 .col-sm-12,
.section9 .col-sm-12,
.section9 .col-sm-9 {
  display: table;
}
.sec6_grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: center;
}
.section6 h2,
.section9 h2 {
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}
.section9 h2 {
  text-align: left;
  margin-bottom: 30px;
}
.sec6_grid a {
  color: #002f35;
  padding: 10px 30px;
  border: 2px solid #002f35;
  border-radius: 30px;

  font-weight: 500;
  font-size: 16px;
}
.sec6_grid a:hover {
  background-color: #fff;
}
.sec6_grid_right {
  display: flex;
  justify-content: space-between;
}
.section6 input.form-control,
.section6 textarea.form-control {
  margin-bottom: 15px;
  height: 40px;
}
.section6 textarea.form-control {
  height: 100px;
}
/*section6*/

/*section7*/
.section7 {
  padding: 80px 0;
  background-color: rgba(239, 242, 245, 0.75);
  width: 100%;
  position: relative;
}
.section7 h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 60px;
}
.section7_grid {
}
.section7_grid a {
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  /* border: 1px solid #e1e1e1; */
  padding: 30px;
  background-color: #fff;
  color: #000;

  background-size: cover;
  background-position: center center;
  /* box-shadow: rgba(163, 177, 198, 0.3) 9px 9px 16px; */
  border-radius: 20px;
}
.section7_grid a:hover {
  /* transform: scale(1.1); */
}
.section7_grid a span {
  color: #000;
  font-size: 18px;
  position: relative;
}
.section7_grid a h3 {
  margin: 20px 0;
  font-size: 28px;
  line-height: 1.4;
  position: relative;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 60px;

  min-height: 165px;
}
.section7_grid a .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section7_grid a u {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 3px;
  align-items: center;
  background-color: #168d69;
  padding: 4px 10px;
  border-radius: 5px;
}
.section7_grid a u img {
  height: 18px;
}
.section7_grid a u:hover {
  background-color: #c22a0b;
}
.section7 .owl-dots {
  display: none !important;
}
/*section7*/

/*section8*/
.section8 {
  padding: 60px 0;
  background-color: #fff;
}
.section8 .grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
}
.section8 h2 {
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 55px;
  font-weight: 700;
}
.section8 .imgs1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
}
.section8 .img {
  position: relative;
  display: block;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.161);
  background-color: #fff;
  padding: 20px 0;
}
.section8 .img2 {
  padding: 20px 50px;
  display: table;
  margin: auto;
}
.section8 img {
  height: 100px;
  display: inline-block;
  position: relative;
}
/*section8*/

/*mFooter*/
.mFooter {
  padding: 80px 0 40px;
  position: relative;
  background-image: url(../images/footer.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.mFooter::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #002110;
  opacity: 0.8;
}
.mFooter .container {
  position: relative;
}
.mFooter .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.footer_links h3 {
  color: #fff;
  font-size: 36px;
  margin: 0 0 20px;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
}
.footer_links a {
  display: block;
  transition: all 0.3s;
  color: #fff;
  font-size: 16px;
  padding: 7px 0;
  font-weight: 400;
}
.footer_links a:hover {
  opacity: 0.5;
}
.footer_links_last a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer_links_last a img {
  height: 16px;
}

.footer_social {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_social a {
  padding: 0;
  margin: 0;
}
.footer_social a img {
  height: 20px;
}
.copy {
  clear: both;
  width: 100%;
  text-align: right;
  margin-top: 50px;
  color: #fff;
  font-size: 14px;
}
/*mFooter*/
.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: #2f2c91;
  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: #2f2c91;
  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-image: url("../images/hpat.png");
}
.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 #7e0609;
  background-color: #7e0609;
  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;
}

/*section9*/

.section9 {
  padding: 50px 0;
  width: 100%;
  display: block;
  position: relative;
  background-color: #290648;
}
.main_footer::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/footer.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* opacity: 0.75; */
}
.section9 h3 {
  color: #fef400;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 10px;
}
.section9 p {
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  width: 90%;
}
.contactform input.form-control,
.contactform textarea.form-control {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  height: 50px;
  margin-bottom: 15px;
  color: #fff;
  padding: 0 15px;
  font-size: 15px;
}
.contactform textarea.form-control {
  height: 100px;
  padding: 15px;
  display: block;
}
.contactform textarea::-webkit-input-placeholder {
  color: #fff;
}

.contactform textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.contactform textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

.contactform textarea:-ms-input-placeholder {
  color: #fff;
}
.contactform .btn {
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s;
  margin-top: 15px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  height: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #db241c;
}
.contactform .btn img {
  height: 13px;
}
.contactform .btn:hover {
  background-color: #005827;
  border-color: #005827;
  color: #fff;
}
.ft_soc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft_soc a {
  color: #fff;
  background-color: #4e336d;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 18px;
  text-decoration: none;
}
.ft_soc a:hover {
  background-color: #fff107;
  color: #4e336d;
}
.ft_whatsapp a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;

  color: #fff;
}
.ft_whatsapp a:hover {
  color: #fff107;
}
.ft_whatsapp a img {
  height: 30px;
}
/*section9*/
/* ===========================
   ====== 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: 99999999;
  }
  .menu {
    display: none;
  }

  .banner_hd {
    font-size: 32px;
    line-height: 1.2;
    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 {
    left: 0;
  }
  .logo::before {
    /* width: 200px; */
  }
  .logo a img {
  }
  .header.fixed .logo a img {
  }
  .top_bar {
    display: none;
  }

  .banner_txt_in {
    width: 90%;
    padding: 25px;
    padding-top: 80px;
    margin: auto;
    display: table;
  }
  .pavcontentslider .carousel-indicators {
  }
  .ban_but {
    /* bottom: 3%; */
  }
  .section1,
  .section2 {
    padding: 50px 20px;
  }
  .section1 h2,
  .section2in h2,
  .section3 h2 {
    font-size: 21px;
  }

  .section2in h3 {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
  }

  .section1_btm ul,
  .section1_btm,
  .section4,
  .section4 .sec4_right ul,
  .home_products {
    grid-template-columns: repeat(1, 1fr);
  }
  .home_products {
    gap: 20px;
  }
  .home_products p {
    width: 100%;
  }
  .home_products_alt h3,
  .home_products_alt p,
  .home_products_alt .explore_btn {
    left: 0;
  }
  .section2 {
    background-image: none;
  }
  .home_products {
    margin-bottom: 30px;
  }
  .home_products h3 {
    font-size: 24px;
  }
  .home_products_alt {
    display: flex;
    flex-direction: column-reverse;
  }
  .mtop25 {
    margin-top: 0;
  }
  .home_products h3 {
    right: 0;
  }
  .section1_btm ul li p,
  .sec4_left_in p {
    font-size: 16px;
  }
  .section2in {
    padding: 0;
  }
  .section2in h2 {
    margin-top: 0;
  }
  .section2in h3 {
    width: 100%;
  }
  .section2in .owl-stage {
    left: 0;
  }
  .section2in .owl-dots {
    left: 0;
    width: 100%;
    text-align: center;
    top: auto !important;
    bottom: -30px;
  }
  .section4 .sec4_left {
    display: block;
    width: 100%;
    padding: 50px 25px;
  }
  .sec4_left_in h2,
  .section4 .sec4_right ul li h4,
  .section5 h2 {
    font-size: 32px;
  }
  .section5 {
    background-position: left;
  }
  .footer {
    padding: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .footer_logo {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 25px;
    justify-content: center;
  }
  .footer_right_in {
    grid-template-columns: repeat(1, 1fr);
  }
  .copy {
    font-size: 12px;
  }
  .servicessec {
    grid-template-columns: repeat(1, 1fr);
  }
  .servicessec .servicessec_card:nth-child(2),
  .servicessec .servicessec_card:nth-child(6),
  .servicessec .servicessec_card:nth-child(4),
  .servicessec .servicessec_card:nth-child(8) {
    position: relative;
    top: auto;
  }
  .home_solutions {
    padding: 40px 20px 0;
  }
  .home_solutions h2,
  .section4 h2 {
    font-size: 32px;
  }
  .accordion {
    padding: 40px 0 0;
  }
  .accordion .link {
    font-size: 14px;
  }
  .section3,
  .section4 {
    margin-top: auto;
    padding: 40px 20px;
  }
  .section3 {
    padding-bottom: 60px;
  }
  .section4 .sec4_right ul li {
    padding: 20px;
  }
  .copy {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    text-align: center;
  }
  .footer_right {
    padding-bottom: 0;
  }
  .home_careers {
    margin-top: 0;
    padding: 40px 10px;
  }
  .home_careers_shapes1,
  .home_careers_shapes2 {
    width: 100%;
    clip-path: fill-box;
  }
  .home_careers_info_left,
  .home_careers_info_right {
    width: 100%;
    clear: both;
  }
  .home_careers_info_left {
    top: auto;
    background-color: #06b0f1;
    padding: 20px;
    margin: auto;
  }
  .home_careers_info_right {
    padding-left: 0;
    padding: 20px;
  }
  .home_careers_info {
    padding: 0;
  }
  .home_careers_shapes1 {
    height: auto;
  }
  .home_careers h2 {
    font-size: 24px;
  }
  .home_careers p {
    font-size: 16px;
  }
  .footer_socical {
    justify-content: flex-start;
  }
  .mFooter_in {
    flex-direction: column;
  }
  .mFooter {
    padding: 40px 20px;
  }
  .mf_r a {
    margin-left: 0;
    margin-right: 5px;
    font-size: 12px;
    letter-spacing: 0;
  }
  .mf_r {
    margin-top: 30px;
  }
  .mf_r a.border {
    font-size: 12px;
  }
  .mf_l img {
    height: 75px;
  }
  .section1 p,
  p,
  .section1 a,
  a.btn {
    font-size: 14px;
  }
  .section1 p {
    padding: 0;
  }
  .section3 h2,
  .service_sec2 h2,
  .section2 h2 {
    font-size: 24px;
  }
  .bannersh {
    top: 10px;
    width: auto;
  }
  .bannersh img {
    width: 80px;
    height: auto;
  }
  .banner_info {
    width: 100%;
    margin: 0;
    padding: 0 25px;
    right: auto;
  }
  .section1 h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .section1 h4 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section1 h5 {
    font-size: 16px;
    margin: 15px 0;
  }
  .process {
    margin-top: 30px;
  }

  .home_assurance {
    padding: 40px 20px;
  }
  .section1_right {
    padding-left: 0;
    padding-top: 40px;
  }
  .about_Sec1 {
    padding: 50px 20px;
  }
  ul.tabs,
  .tab_container {
    width: 100%;
    clear: both;
  }
  .tab_content {
    padding: 0;
  }
  .tab_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .tab_img {
    width: auto;
    height: auto;
    background-color: transparent;
  }
  .tabccc {
    padding: 0;
  }
  .tab_content h3 {
    font-size: 24px;
  }
  .section3 .owl-dots {
    /* display: none; */
  }
  h2.main_heading {
    padding-left: 50px;
    font-size: 32px;
  }
  h2.main_heading::before {
    left: 0;
  }
  .main_Footer {
    padding: 50px 25px;
  }
  .main_Footer_in {
    grid-template-columns: repeat(1, 1fr);
  }
  .main_Footer_in_right {
    padding: 0;
  }
  .main_Footer_in ul {
    margin-bottom: 40px;
  }
  .home_whychoose ul {
    margin-top: 40px;
    padding-left: 20px;
  }
  .home_whychoose ul::before {
    left: 35px;
  }
  .home_whychoose ul li h3 {
    font-size: 18px;
  }
  .section2_grid,
  .sectors ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .sectors h2,
  h2 {
    font-size: 24px;
  }
  .sectors {
    padding: 40px 20px;
  }
  .section3_flex {
    flex-direction: column;
    justify-content: center;
  }
  .design_process {
    padding: 40px 20px;
  }
  .home_client img {
    max-height: 50px;
    max-width: 100%;
  }
  .footer_git,
  .footer_form {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .footer_git_flex,
  .footer_links,
  .footer_links_right,
  .copy {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .footer_form form {
    width: 100%;
  }
  .circle-container {
    background-image: none;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .circle-container a {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    transform: translate(0);
    top: 0;
    left: 0;
    bottom: 0;
    left: 0;
    background-color: #0d6faa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #fff;
    gap: 10px;
  }
  .circle_abs {
    width: 100%;
    padding: 0;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: auto !important;
  }
  .circle_abs::before {
    display: none !important;
  }
  .circle_abs p {
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .circle_abs h3 {
    display: none;
  }
  .circle-container a:nth-child(2) {
    background-color: #ae051c;
  }
  .circle-container a:nth-child(3) {
    background-color: #a7c33a;
  }
  .circle-container a:nth-child(4) {
    background-color: #fa7c02;
  }
  .circle-container a:nth-child(5) {
    background-color: #0d6faa;
  }
  .circle-container a:nth-child(6) {
    background-color: #6353a6;
  }
  .sectors ul li a .img img {
    height: 50px;
    transition: all 0.3s;
  }
  .section9,
  .section8,
  .section7,
  .section6,
  .section5 {
    padding: 50px 20px;
  }
  .section5 {
    padding: 40px 0;
  }
  .footer_links_grid,
  .section8 .grid,
  .section8 .imgs1,
  .section7_grid,
  .sec6_grid,
  .certifications_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .section7_grid,
  .sec6_grid,
  .certifications_grid {
    gap: 20px;
  }
  .sec6_grid_right {
    flex-direction: column;
    gap: 20px;
  }
  .section7_grid a h3 {
  }
  .sec6_grid a {
    text-align: center;
  }
  .section9 h2,
  .section8 h2,
  .section7 h2,
  .sec6_grid h2,
  .section7 h2,
  .section1 h3,
  .sec2_info h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .contactform {
    margin-top: 30px;
  }
  .section8 .imgs1 {
    margin-bottom: 30px;
  }
  .section9 p {
    font-size: 14px;
  }
  .section8 .imgs1 .img::before {
    display: none;
  }
  .section5 .owl-carousel .owl-item.active.center .awards_bx {
    transform: scale(1);
    margin-top: 0;
  }
  .section5 .owl-carousel .owl-stage-outer {
    padding: 0px;
  }
  .awards_bx img {
    height: auto;
  }
  .section5 .owl-dots {
    display: block;
  }
  .section4 .grid {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .section3_in {
    font-size: 21px;
    background-size: 25px;
  }
  .carousel-inner .item > img {
    height: 100vh !important;
    object-fit: cover;
    object-position: center center;
  }
  .banner_txt {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner_txt > img {
    right: 3%;
    width: 90% !important;
  }
  .section2_grid1 {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
    gap: 0;
  }
  .section2_grid1 img.sec2img {
    width: 100%;
    display: block;
    top: 0;
  }
  .section2_grid1::before {
    display: none;
  }
  .sec2_info,
  .section2_grid2 .sec2_info {
    padding: 40px;
  }
  .section2_grid2 {
    display: flex;
    flex-direction: column-reverse;
  }
  .announcement_hd {
    width: 100px;
    font-size: 12px;
    letter-spacing: 0;
  }
  .announcement {
    padding-left: 100px;
  }
  .announcement ul.news_scroll li a {
    font-size: 14px;
  }
  a.sec2bx2,
  a.sec2bx3 {
    margin: 0;
  }
  a.sec2bx .img h3 {
    font-size: 16px;
  }
  a.sec2bx .img h3 img {
    height: 30px;
  }
  .section3_in h2 {
    padding: 0;
  }
  .cert_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 15px;
  }
  .cert_grid h3 {
    font-size: 18px;
  }
  .certifications_grid .cert_bx1:nth-child(2n) {
    margin-top: 0;
  }
  .certifications_grid .cert_bx1:nth-child(3n) {
    margin-top: 0px;
  }
  .section7 h2 {
    font-size: 32px;
    text-align: left;
  }
  .owl-theme .owl-nav [class*="owl-"] {
    display: block !important;
  }
  .owl-nav {
    top: -60px !important;
  }
  .mFooter .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .footer_links h3 {
    font-size: 24px;
  }
}
/*------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%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1240px) {
  .container {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
    padding: 0 75px;
  }
  .header {
    padding: 0 30px;
  }
  .menu > ul > li {
    margin: 0;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .menu ul {
    margin-right: 0;
  }
  .menu > ul > li > a {
  }
  .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;
  }
  .banner_hd {
  }
  .cert_grid h2,
  .section7 h2,
  .section8 h2,
  .section5 h2,
  .section4 h2 {
    font-size: 42px;
  }
  .section2_grid {
    gap: 40px;
  }
}
@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: 50px;
    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 {
  }
  .header {
    padding: 0 40px;
  }

  .section2in {
    padding-left: 50px;
  }

  .menu ul.menu_r li a {
    padding: 0 10px;
    font-size: 14px;
  }
  .banner_hd {
  }
  .section3_in {
    font-size: 36px;
  }
  .logo {
    left: 50px;
  }
}
