*,
::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: "Jost", sans-serif;
  /* font-family: "Montserrat", sans-serif; */
  font-weight: normal;
  overflow-x: hidden;
  margin: 0;
}
.container {
  width: 1290px;
  margin: auto;
}
ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

.header {
  width: 100%;
  display: table;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #143f61;
  z-index: 9999;
  padding: 0 0 0 150px;
}

.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: 15px 0 0;
  position: relative;
}
.logo::before {
  position: absolute;
  left: -20px;
  top: 0px;
  content: "";
  width: 230px;
  height: 90px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  -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);
}
.logo a {
  text-decoration: none;
  display: block;
  text-align: center;
}

.logo a img {
  height: 65px;
  position: absolute;
}

.header_right {
  clear: both;
  width: 100%;
  display: table;
}

.menu {
  float: right;
}

.menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  float: left;
}

.menu > ul > li {
  position: relative;
  float: left;
}

.menu > ul > li > a {
  line-height: 65px;
  height: 65px;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0px 15px;
}
.menu > ul > li:last-child > a {
  padding: 0 30px;
  background-color: #009b4a;
  margin-left: 20px;
}
.menu > ul > li:last-child > a img {
  height: 25px;
  margin-right: 7px;
}
.menu > ul > li > a i {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  font-size: 12px;
}

.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #009b4a;
}
.menu > ul > li:last-child > a:hover {
  background-color: #6a9e2a;
  color: #fff;
}

.megamenu {
  position: absolute;
  left: 0px;
  top: 100%;
  background-color: #fff;
  width: 215px;
  z-index: 9999;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.1s ease-in-out 0s;
  visibility: hidden;
  transform: translateY(30px);
  opacity: 0;
  border-top: 3px solid #009b4a;
}

.megamenu:before {
  position: absolute;
  left: 40px;
  top: -10px;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #009b4a;
}

.menu > ul > li:hover .megamenu {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}

.megamenu ul {
  list-style: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.megamenu ul li {
  float: left;
  display: inline-block;
  width: 100%;
  margin-right: 0px;
  padding: 0;
}

.megamenu ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  line-height: 22px;
  display: block;
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  text-transform: uppercase;
}

.megamenu ul li:last-child a {
  border: 0;
}

.megamenu ul li a:hover {
  background-color: #ddd;
  color: #000;
  transition: all 0.3s ease 0s;
}
.menu ul.menu_r {
  background-color: #e3e6e5;
  border-radius: 30px;
  margin-left: 20px;
  height: 40px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 10px 3px 5px rgba(0, 0, 0, 0.161);
  display: flex;
}
.menu ul.menu_r li {
  padding: 0;
}
.menu ul.menu_r li a {
  height: 40px;
  text-transform: uppercase;
  line-height: 40px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  font-size: 15px;
  color: #000066;
}
.menu ul.menu_r li a:hover {
  color: #04b5ff;
}
.menu ul.menu_r li a.active {
  background-color: #000066;
  border-radius: 30px;
  color: #fff;
}
.menu ul.menu_r li a img {
  height: 15px;
}
.hdright {
  float: right;
  padding-top: 38px;
}
a.site-header__link {
  float: left;
  display: inline-block;
  color: #009b4a;
  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: #009b4a;
  width: 22px;
  display: block;
}
.header.fixed .site-header__link-icon {
  fill: #2c3375;
}
/*----------banner-----------*/

.mtop1 {
  height: 60px;
}
.main_banner {
  background-color: #000051;
}

.carousel-inner .item img {
  width: 100%;
}

.banner_txt {
  top: 0 !important;
  left: 0%;
  color: #fff;
  position: absolute;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
  justify-content: baseline;
}
.banner_txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 60%;
  height: 100%;
  z-index: -1;
  display: block;
  background: linear-gradient(to right, #02698e, transparent);
  /* opacity: 0.44; */
}

/* .banner_txt::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0px;
  width: 350px;
  height: 100%;
  z-index: -2;
  display: block;
  background: #04b5ff;
  transform: skew(-25deg);
  opacity: 0.4;
  animation: banneranim2 2s linear;
} */
.banner_txt_in {
  position: relative;
  width: 100%;
  padding: 0;
  display: table;
  border-radius: 10px;
  margin-left: 150px;
  visibility: hidden !important;
}

.banner_hd,
.banner_cont,
.banner_r_more {
  width: 100%;
  float: left;
}
.banner_hd {
  color: #fff;
  font-size: 55px;
  line-height: 1.2;
  padding-bottom: 0px;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

.banner_hd span {
  background-color: #009b4a;
  padding: 0 10px;
}
.banner_cont {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin: 10px 0 5px;
  display: block;
  padding: 0px;
  width: 60%;
}
.banner_r_more {
  clear: both;
  margin-top: 10px;
}
.banner_r_more a,
.explore_btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 14px;
  position: relative;
  gap: 7px;
  align-items: center;
  background-color: transparent;
  padding: 7px 15px;
  border: 1px solid #fff;
  letter-spacing: 2px;
}
.banner_r_more a img,
.explore_btn a img {
  height: 12px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 0px;
}
.banner_r_more a:hover,
.explore_btn a:hover {
  background-color: #009b4a;
  color: #fff;
  border-color: #009b4a;
}
.explore_btn {
  text-align: center;
  margin-top: 20px;
}
.explore_btn a {
  color: #009b4a;
  border-color: #009b4a;
}
.explore_btn a:hover img {
  filter: brightness(0) invert(1);
}
.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;
}
.goBottom {
  position: absolute;
  bottom: 20px;
  left: 60px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  z-index: 9;
  letter-spacing: 1px;
}
.goBottom img {
  height: 25px;
}
/*----------banner-----------*/

/*------section1---------*/
.section1 {
  clear: both;
  width: 100%;
  display: block;
  padding: 75px 0;
  background-color: #fff;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
h2.main_heading {
  color: #143f61;
  position: relative;
  font-size: 55px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}
p {
  font-size: 18px;
  color: #5c6770;
  line-height: 1.6;
  margin-bottom: 15px;
}
.section1_cntr {
  margin: 40px auto;
  display: table;
  max-width: 700px;
  position: relative;
}
.section1_cntr img {
  width: 100%;
  display: block;
}
.section1_cntr h4 {
  text-transform: uppercase;
  color: #136a91;
  font-size: 21px;
  text-align: center;
  font-weight: 600;
}
.section1_cntr_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 300px;
}
.scb_bx1 {
  left: 70%;
  top: 40px;
}
.scb_bx2 {
  left: -23%;
  top: auto;
  bottom: 60px;
  width: auto;
}
.scb_bx3 {
  left: auto;
  top: auto;
  bottom: 60px;
  right: -25%;
  width: auto;
}
.section1_cntr_box h3 {
  color: #009b4a;
  text-transform: uppercase;
  font-size: 23px;
  margin-bottom: 15px;
}
.scb_bx2 h3 {
  color: #7c878e;
}
.scb_bx3 h3 {
  color: #77223b;
}
.section1_cntr_box ul li,
.hl_video_grid_bx ul li {
  color: #5c6770;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
  padding-left: 25px;
  background-image: url(../images/check1.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px;
  font-family: "Jost", sans-serif;
}
/*-------section1---------*/

/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.home_link {
  position: relative;
}
.hl_video {
  width: 100%;
  display: block;
  position: relative;
}
.hl_video::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to top, #0087b7, #033053);
  opacity: 0.7;
  border-radius: 30px;
}
.hl_video video {
  width: 100%;
  height: 530px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hl_video_grid {
  display: grid;
  grid-template-columns: 37fr 26fr 37fr;
  gap: 0;
  align-items: center;
  padding: 40px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.hl_video_grid_bx {
  background-image: url(../images/dotsbg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  width: 100%;
  display: block;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.45);
}
.hvgb1::before,
.hvgb2::after {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-60%);
  content: "+";
  font-size: 120px;
  color: #009b4a;
}
.hvgb1::before {
  left: auto;
  right: -36px;
}
.hl_video_grid_bx h3 {
  color: #136a91;
  text-transform: uppercase;
  font-size: 21px;
  margin-bottom: 15px;
  display: flex;
  gap: 0;
  justify-content: baseline;
  align-items: center;
}
.hl_video_grid_bx h3 img {
  height: 60px;
  margin-right: 15px;
}
.hl_video_grid_bx h3 i {
  margin-left: 10px;
}
.hl_video_grid_bx ul li {
  text-align: left;
  background-position: left 5px;
  padding-left: 30px;
}
.sec2_logo {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}
.sec2_logo img {
  width: 100%;
  display: block;
}
/*-------section2---------*/

/*section_services*/
.section_services {
  padding: 50px 0;
  width: 100%;
  display: block;
  background-image: url(../images/bg_serv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
.section_services_in {
  position: relative;
  display: grid;
  grid-template-columns: 32fr 68fr;
  background-image: url(../images/serv_bg1.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 48% 92%;
  margin-bottom: 30px;
}
.section_services_in1 {
  background-image: url(../images/serv_bg2.png);
  grid-template-columns: 68fr 32fr;
  background-position: right top;
  background-size: 48% 100%;
}
.section_services_in_info {
  padding: 40px;
  position: relative;
}
.section_services_in1 .section_services_in_info {
  padding: 40px 0 0 80px;
}
.section_services_in_info h4 {
  margin: 0 0 15px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  color: #02698e;
}
.section_services_in_info h3 {
  margin: 0 0 15px;
  font-size: 46px;
  font-weight: 500;
  color: #143f61;
  font-family: "Montserrat", sans-serif;
}
.section_services_in_info p {
  width: 90%;
}
.section_services_in img {
  width: 100%;
  display: block;
}
.section_services_in_info .explore_btn {
  position: absolute;
  right: -150px;
  top: 30px;
}
.section_services_in1 .explore_btn {
  right: auto;
  left: -150px;
}
/*section_services*/

/*home_whychoose*/
.home_whychoose {
  padding: 150px 0 50px;
  width: 100%;
  display: block;
  background-color: #fff;
}
.home_whychoose ul {
  position: relative;
}
.home_whychoose ul::before {
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 70%;
  content: "";
  border: 1px dashed #000055;
}
.home_whychoose ul li {
  position: relative;
  padding-left: 60px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: left 0;
  background-size: 30px;
}
.home_whychoose ul li h3 {
  font-size: 24px;
  font-weight: 500;
  color: #04b5ff;
  margin-bottom: 20px;
}
/*home_whychoose*/

/*home_solutions*/
/*.home_solutions {
  padding: 80px 0;
  width: 100%;
  position: relative;
  z-index: 99;
  display: inline-block;
  background-color: #e6e5de;
}
.home_solutions h2 {
  text-align: center;
  margin-bottom: 30px;
}
.accordion {
  width: 100%;
  padding: 0 0 0 50%;
  list-style: none;
  position: relative;
}
.accordion > li {
  border-bottom: 1px solid rgba(84, 84, 84, 0.3);
}
.accordion > li:last-child {
  border-bottom: 0;
}
.accordion .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  font-size: 19px;
  color: #545454;
  font-weight: 500;
  text-transform: uppercase;
}
.accordion .link::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "+";
  font-size: 32px;
  transition: all 0.3s;
  backface-visibility: hidden;
}
.accordion .link img {
  height: 40px;
}
.accordion .submenu {
  display: none;
  padding: 0;
  list-style: none;
}
.accordion .submenu > li {
  padding: 0 0;
  position: relative;
  border-top: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #606063;
}
.accordion .submenu > li p {
  margin-bottom: 10px;
}
.accordion li.open .link::before {
  content: "-";
  top: 25%;
}
 #accordion1 img {
  width: 47%;
  position: absolute;
  left: 0;
  top: 0;
} */
/*home_solutions*/

/*about_Sec1*/
.about_Sec1 {
  background-color: #fff;
  padding: 150px 0 50px;
  width: 100%;
  position: relative;
  background-image: url(../images/SERVICES.svg);
  background-repeat: no-repeat;
  background-position: 50px 0px;
  background-size: 40%;
}
.about_Sec1_in {
  width: 100%;
}
.multi_tabs {
  clear: both;
  width: 100%;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
ul.tabs {
  margin: 0;
  float: left;
  list-style: none;
  position: relative;
  width: 25%;
  text-align: left;
  z-index: 9;
}
ul.tabs li {
  width: 95%;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  cursor: pointer;
  padding: 5px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #484894;
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
}
ul.tabs li:hover {
  background-color: #009b4a;
  color: #fff;
}
ul.tabs li.active {
  background-color: #009b4a;
  color: #fff;
}
ul.tabs li.active:before {
  opacity: 1;
}
.tab_container {
  border: 0px;
  border-top: none;
  float: right;
  width: 75%;
  float: right;
}
.tab_content {
  width: 100%;
  background-size: cover;
  position: relative;
  display: block;
  padding-left: 50px;
}
.tabccc {
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  background-color: #fff;
}

.tab_grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  align-items: center;
}
.tab_img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}
.tab_img img {
  width: 100px;
}
.tab_content h3 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #000086;
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #04b5ff;
  display: inline-block;
}
.tab_content p {
  margin: 0 0 20px;
  width: 90%;
}
/*about_Sec1*/

/*section3*/
.section3 {
  padding: 60px 0 80px;
  background-color: #fff;
  position: relative;
  width: 100%;
  display: inline-block;
}
.section31 {
  background-image: none;
}
.section3 h2 {
  margin-bottom: 10px;
}
.section3 .text-center p {
  margin-bottom: 40px;
}
.home_projects {
  padding: 25px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.078);
  border: 1px solid #ebebeb;
}
.home_projects img {
  width: 100%;
  display: block;
}
.home_projects_bx {
  padding: 20px 0 10px;
}
.home_projects_bx span {
  background-color: #02698e;
  padding: 3px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.home_projects_bx h3 {
  color: #143f61;
  font-size: 20px;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 20px;
}
.home_projects_bx p {
  margin-top: 10px;
  margin-bottom: 20px;
}
.owl-carousel .owl-stage-outer {
  padding-bottom: 20px;
  padding-right: 0;
}
.section3 .owl-dots {
  display: block;
  bottom: auto;
  bottom: -40px;
  text-align: center;
}
.section3 .owl-theme .owl-nav {
  width: 30%;
  height: 25px;
  display: block;
  margin: auto;
  /* background-color: #009b4a; */
  border-radius: 30px;
  top: auto;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  z-index: 9;
}
.section3 .owl-theme .owl-nav [class*="owl-"] {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px;
}
/* .section3 .owl-theme .owl-nav::before {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 1px;
  height: 10px;
  content: "";
  background-color: #fff;
  opacity: 0.5;
} */
.hm_clients {
  background-image: none;
}
.home_client {
  padding: 20px;
  width: 100%;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.161);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_client img {
  height: 75px;
  width: auto;
}
.section3 .explore_btn {
  text-align: left;
}
/*section3*/

/*section4*/
.section4 {
  padding: 50px 0;
  width: 100%;
  display: block;
  background-color: #009b4a;
  text-align: center;
}
.section4 h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.section4 h2 {
  font-size: 55px;
  color: #fff;
  margin: 20px 0;
  font-weight: 500;
}
.section4 p {
  margin: 25px 0;
}
.explore_btn_rev a {
  background-color: #181768;
}
.explore_btn_rev a:hover {
  background-color: #2c3375;
}
/*section4*/

/*main_Footer*/
.main_Footer {
  padding: 50px 0 30px;
  width: 100%;
  display: block;
  background-color: #143f61;
  position: relative;
}
/* .main_Footer::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  height: 100%;
  content: "";
  background-color: #00005e;
  opacity: 0.89;
} */

.footer_social a {
  margin: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-top: 0;
}
.main_footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  border-radius: 15px;
  margin-bottom: 30px;
  background-color: #1c486a;
}
.main_Footer_in {
  display: grid;
  grid-template-columns: 30fr 70fr;
  gap: 0px;
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.main_Footer_in h3 {
  margin-top: 0;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.main_Footer_in p {
  color: #fff;
  font-size: 15px;
  opacity: 0.75;
}
.main_Footer_in ul {
  margin-top: 20px;
}

.main_Footer_in ul li {
  display: block;
  margin-bottom: 10px;
}
.main_Footer_in ul.footer_add li a {
  display: grid;
  gap: 5px;
  grid-template-columns: 30px 1fr;
  margin-bottom: 20px;
  font-size: 14px;
}
.main_Footer_in ul.footer_add li a img {
  height: 13px;
  position: relative;
  top: 5px;
}
.main_Footer_in ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
}
.main_Footer_in ul li a:hover {
  color: #009b4a;
  opacity: 1;
}
.main_Footer_in_right {
  padding-right: 50px;
}
.footer_logo img {
  height: 60px;
  width: auto;
}
.copy {
  margin-top: 0px;
  font-size: 14px;
  background-color: #1c486a;
  padding: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.copy_links {
  clear: both;
  width: 100%;
  display: table;
  margin-bottom: 10px;
}
.copy a {
  display: inline-block;
  float: left;
  border-right: 1px solid #181f8e;
  margin-right: 10px;
  padding-right: 10px;
  font-weight: 500;
}
.copy a:hover {
  color: #0099ff;
}
.copy a:last-child {
  border-right: 0;
  margin: 0;
  padding: 0;
}
.mf_bg {
  background-image: url(../images/bg8.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 110%;
}
/*main_Footer*/

.menu2 {
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 9;
  display: none;
}
.menu2 .menuicon1 {
  position: relative;
  z-index: 999;
  padding: 0 15px;
  height: 42px;
  line-height: 42px;
  border-radius: 20px 0 0 20px;
  text-decoration: none;
  color: #2b2a29;
  display: block;
  font-size: 16px;
  display: block;
  outline: 0px;
  transition: all 0.3s;
}
.sidemenu span {
  float: left;
}
.bars-wrap {
  display: inline-block;
  margin-left: 15px;
  position: relative;
  overflow: visible;
  top: 3px;
}
.icon-bar {
  transition: all 0.4s ease;
  width: 26px;
  background: #009b4a;
  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: #143f61;
  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 #009b4a;
  background-color: #009b4a;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  display: inline-block;
}
.mobno {
  display: block;
}

/* ===========================
   ====== Media Queries ====== 
   =========================== */
/*------smallphones----------------*/
@media only screen and (min-width: 240px) and (max-width: 960px) {
  body {
    overflow-x: hidden;
    padding-top: 0;
  }
  .main_logo a img {
    height: 60px;
  }
  .main_projects {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .bnr_top_make::before {
    left: 50%;
    top: -10%;
    width: 1px;
    height: 120%;
  }
  a.hl_video {
    height: auto;
  }
  .hl_video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hl_video_grid {
    position: relative;
    padding: 20px;
  }
  .hl_video_grid_bx {
    background-size: 400%;
  }
  .hl_video_grid_bx h3 {
    font-size: 21px;
    display: flex;
    flex-direction: column;
    line-height: 0.7;
    gap: 20px;
    margin-bottom: 30px;
  }
  .hvgb1::before,
  .hvgb2::after {
    display: none;
  }
  .hl_video_grid_bx h3 img {
    height: 30px;
  }
  .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: 55px;
    padding: 0;
  }
  .mtop1 {
    height: 55px;
  }
  .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: 5px;
    right: 10px;
    z-index: 99999999;
  }
  .menu {
    display: none;
  }

  .banner_hd {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 0px;
    padding-bottom: 10px;
    margin: 0;
  }
  .banner_hd br {
    display: none;
  }
  .banner_cont {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
    width: 100%;
  }
  .banner_txt {
    /* padding: 0 15%; */
  }
  .logo::before {
    width: 200px;
  }
  .logo a img {
    height: 58px;
  }
  .carousel-inner .item picture img {
    height: 550px;
    object-fit: cover;
    object-position: center center;
  }
  .banner_txt_in {
    width: 90%;
    padding: 25px;
    padding-top: 80px;
    margin: auto;
    display: table;
  }
  .pavcontentslider .carousel-indicators {
  }
  .ban_but {
    bottom: 3%;
  }
  .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 h3 {
    font-size: 26px;
    margin-top: 30px;
  }
  .section1_cntr_box ul li,
  .hl_video_grid_bx ul li {
    font-size: 16px;
  }
  .section1_btm ul,
  .section1_btm,
  .section4,
  .section4 .sec4_right ul,
  .home_products,
  .hl_video_grid,
  .section_services_in {
    grid-template-columns: repeat(1, 1fr);
  }
  .section_services_in {
    background-size: cover;
  }
  .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: 24px;
  }
  .section5 {
    background-position: left;
  }
  .footer {
    padding: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .footer_logo {
    border-right: 0;
    margin-bottom: 20px;
    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: 21px;
  }
  .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;
    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;
  }
  .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);
    padding: 0;
  }
  .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;
  }
  .main_footer_top {
    padding: 20px;
    flex-direction: column;
  }
  .footer_logo img {
    height: 50px;
  }
  .carousel-inner .item > img {
    height: 500px;
    object-fit: cover;
    object-position: center center;
  }
  .pavcontentslider .carousel-indicators {
    left: 30px !important;
  }
  h2.main_heading {
    padding-left: 0;
  }
  .section1_cntr_box {
    position: relative;
    max-width: 100%;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
  }
}
/*------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 25px;
  }
  .header {
    padding: 0 0 0 15px;
  }
  .menu > ul > li {
    margin: 0;
  }
  .menu > ul > li > a {
    font-size: 14px;
  }
  .logo {
  }
  .menu {
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .main_Footer_in {
    padding: 0;
  }
  .section1_cntr {
    max-width: 600px;
  }
  .menu ul {
    margin-right: 0;
  }
  .menu > ul > li > a {
    font-size: 12px;
    letter-spacing: 0;
    padding: 0 10px;
  }
  .menu > ul > li > a i {
    bottom: 3px;
  }
  .menu ul.menu_r {
    margin-top: 5px;
    margin-left: 20px;
  }
  .hdright {
    padding-top: 5px;
  }
  .menu ul.menu_r li a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1140px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 30px;
  }
  .section2in {
    padding-left: 50px;
  }
  .section2in h2 {
    font-size: 28px;
  }
  .section2in .owl-stage {
    left: -20px;
  }
  .banner_hd {
    font-size: 36px;
    line-height: 55px;
  }
  .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;
  }
}
@media only screen and (min-width: 1240px) and (max-width: 1500px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 30px;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .header {
  }
  .logo a img {
  }
  .section2in {
    padding-left: 50px;
  }
  .logo a img {
  }
  .menu > ul > li > a {
    font-size: 13px;
  }
  .menu ul.menu_r li a {
    padding: 0 10px;
    font-size: 14px;
  }
}
