@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: "Poppins", 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: "Poppins", sans-serif;
}
.main_section {
  width: 100%;
  display: block;
}

.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;
}

.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: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: uppercase;
  outline: 0;
}
.menu > ul > li > a.active::before {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  content: "";
  background-color: #213f99;
}
.menu > ul > li:last-child > a {
  background-color: #a97b2c;
  border-radius: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 15px 0 15px;
  color: #fff;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}
.menu > ul > li:last-child::before {
  position: absolute;
  left: 0;
  top: 65%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  content: "";
  background-color: #000;
}
.menu > ul > li:last-child > a span {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  position: absolute;
  right: -23px;
}
.menu > ul > li:last-child > a img {
  height: 12px;
}
.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #213f99;
}
.menu > ul > li:last-child:hover > a {
  background-color: #213f99;
  color: #fff !important;
}
.megamenu {
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: #2f2c91;
  width: 300px;
  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: 280px;
  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: #213f99;
  transition: all 0.3s ease 0s;
}
.megamenu2 > li:hover > a {
  background-color: #fff;
  color: #155025;
}
/*----------banner-----------*/

.mtop1 {
  height: 75px;
}
.main_banner {
  overflow: hidden;
}
.pavcontentslider .carousel-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: block;
  /* opacity: 0.69; */
  background: linear-gradient(225deg, rgba(33, 63, 153, 0), #11204d);
}
.pavcontentslider .carousel-inner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  content: "";
  z-index: 9;
  background-image: url(../images/bannermask.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}
.carousel-inner > .item > img {
  width: 100%;
  height: calc(100vh - 75px);
  object-fit: cover;
  object-position: center top;
}

.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: 60px;
  line-height: 1.1;
  padding-bottom: 0px;
  position: relative;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 100px;
}
.banner_hd span {
  color: #00eeff;
}
.banner_cont {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 5px;
  display: block;
  padding: 0px;
  width: 85%;
}
.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-block;
  align-items: center;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  background-color: #a97b2c;
  padding: 0 15px;
  height: 30px;
  line-height: 32px;
  border-radius: 32px;
}
.banner_r_more a span,
.explore_btn a span {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  position: absolute;
  top: 0;
  right: -23px;
}
.banner_r_more a span img,
.explore_btn a span img {
  height: 12px;
}
.banner_r_more a:hover,
.explore_btn a:hover {
  background-color: #213f99;
  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;
}

.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: rgba(255, 255, 255, 0.27);
  border: 0;
  min-width: 100px;
  height: 10px;
  padding: 0;
  border-radius: 0;
  padding-bottom: 0;
  position: relative;
  opacity: 1;
  margin: 0;
}
/* .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;*/
}

.section1 {
  padding: 50px 0;
  background-color: #eaeaea;
}
.section1 h2,
h2 {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 20px;
}
.section1 p,
p {
  font-size: 16px;
  line-height: 1.8;
}
.section1 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  background-color: #fff;
  margin-top: 50px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.161);
  width: 100%;
}
.sec1bx1 {
  padding: 50px;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(112, 112, 112, 0.37);
}
.sec1bx1:last-child {
  border: 0;
}
.sec1bx1 img {
  height: 50px;
}
.sec1bx1 h3 {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
}
.sec1bx1 p {
}
.explore_btn a {
  padding: 0 20px;
}
/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 85px 0 0;
  position: relative;
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}
.sec2top h2,
.sec2top p {
  color: #fff;
}
.multi_tabs1 {
  margin-top: 20px;
}
.multi_tabs1 ul {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.multi_tabs1 ul li {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #00eeff;
  padding-bottom: 7px;
  opacity: 0.5;
}
.multi_tabs1 ul li.active {
  opacity: 1;
  border-bottom: 4px solid #00eeff;
}
.tab_container1 {
  width: 100%;
}
.tab_content1 {
  width: 100%;
  position: relative;
}
.sec2bx1 {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.161);
}
.sec2bx1 > img {
  width: 100%;
  display: block;
}
.sec2bx1 h3 {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
}
.sec2bx1 p {
}
.overhide1 {
  overflow: hidden;
  padding: 0 20px 60px;
  position: relative;
  left: -20px;
}
.swiper-slide:nth-child(2n) {
  margin-top: 70px;
}
.swiper-pagination1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}
.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
}
.swiper-pagination-bullet-active {
  background: #484848 !important;
}
/*-------section2---------*/

/*section3*/
.section3 {
  padding: 80px 0;
  background-color: #eaeaea;
  position: relative;
}
.section3 p {
  font-weight: 500;
}
.section3 ul {
  margin-top: 30px;
}
.section3 ul li {
  margin-bottom: 20px;
  position: relative;
  font-size: 16px;
  padding-left: 40px;
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left 2px;
}
.sec3img {
  position: absolute;
  right: -50px;
  top: 0;
  width: 100%;
  height: 100%;
}
.sec3img img {
  width: auto;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
}
/*section3*/

/*section6*/
.section6 {
  padding: 60px 0;
  background-color: #fff;
}
.section6 h2 {
  text-align: center;
  margin-bottom: 40px;
}
.accordion {
  width: 100%;
  list-style: none;
}
.accordion > li {
  border: 1px solid #3b3b3b;
  margin-bottom: 20px;
}
.accordion > li:first-child {
}
.accordion .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 30px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  background-color: #fff;
}
.accordion li.open .link {
}
.accordion .link::before {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  content: "+";
  font-size: 24px;
  color: #000;
  font-weight: 700;
}
.accordion .link img {
}
.accordion .submenu {
  display: none;
  padding: 0;
  list-style: none;
}
.accordion .submenu > li {
  position: relative;
  border-top: 0;
  padding: 0 30px 30px;
}
.accordion li.open .link::before {
  content: "-";
  font-size: 24px;
}
/*section6*/

/*mFooter*/
.mFooter {
  background-color: #eaeaea;
  padding: 50px 0 20px;
}
.mFooter .container {
  position: relative;
}
.mFooter .grid {
  display: grid;
  grid-template-columns: 22fr 22fr 28fr 12fr 20fr;
  gap: 20px;
}
.footer_links h3 {
  color: #213f99;
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.footer_links a {
  display: block;
  transition: all 0.3s;
  color: #000;
  font-size: 14px;
  padding: 5px 0;
  font-weight: 600;
}
.footer_links a:hover {
  color: #213f99;
}
.footer_links_last a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer_links_last a.footerlogo img {
  width: 240px;
}

.footer_social {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_social a {
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #000;
  border-radius: 40px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.161);
}
.footer_social a:hover {
  background-color: #213f99;
  color: #fff;
}
.copy {
  clear: both;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 4px solid #1e205a;
  color: #000;
  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;
  background-image: url(../images/bg2.jpg);
}
.section9 h2,
.section9 p {
  color: #fff;
}
.section9 p {
  font-size: 32px;
}
.section9 h2 {
  font-size: 55px;
}
.contactform input.form-control,
.contactform textarea.form-control {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  height: 50px;
  margin-bottom: 15px;
  color: #000;
  padding: 0 15px;
  font-size: 15px;
}
.contactform textarea.form-control {
  height: 100px;
  padding: 15px;
  display: block;
}
.contactform textarea::-webkit-input-placeholder {
  color: #000;
}

.contactform textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

.contactform textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

.contactform textarea:-ms-input-placeholder {
  color: #000;
}
.btn {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  align-items: center;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  background-color: #a97b2c;
  padding: 0 15px;
  height: 30px;
  line-height: 32px;
  border-radius: 32px;
  border: 0;
}
.btn span {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  position: absolute;
  top: 0;
  right: -23px;
}
.btn span img {
  height: 12px;
}
.btn:hover {
  background-color: #213f99;
  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: 26px;
    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-size: auto 50%;
  }
  .swiper-slide:nth-child(2n) {
    margin: 0;
  }
  .overhide1 {
    left: 0;
    padding: 0 10px;
  }
  .home_products {
    margin-bottom: 30px;
  }
  .sec3img,
  .sec3img img {
    position: relative;
    right: 0;
    width: 100%;
    clear: both;
    height: auto;
  }
  .section3 ul li {
    font-size: 14px;
  }
  .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: 0 0 0;
  }
  .accordion .link {
    font-size: 18px;
  }
  .accordion .link::before {
    right: 10px;
  }
  .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: 24px;
    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;
  }
  .section1 .grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .sec1bx1 {
    padding: 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.37);
  }
}
/*------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,
  .section1 h2,
  h2 {
    font-size: 42px;
  }
  .section3_in {
    font-size: 36px;
  }
  .logo {
    left: 50px;
  }
}
