.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;
  /* padding-top: 70px; */
  font-weight: normal;
  overflow-x: hidden;
}
.container {
  width: 1320px;
  margin: auto;
}
ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.header {
  width: 100%;
  display: table;
  position: fixed;
  top: 0px;
  left: 0px;
  /* background-color: #fff; */
  z-index: 9999;
}

p{
    text-align:justify;
}
.header.fixed,
.header.fixed1 {
  -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: 0px 0 0;
  margin-top: -20px;
  filter: invert(75%) sepia(98%) saturate(750%) hue-rotate(4deg) brightness(90%) contrast(90%);
}
.logo a {
  text-decoration: none;
  display: block;
  text-align: center;
}

.logo a img {
  filter: brightness(0) invert(1);
  height: 160px;
}
.header.fixed .logo a img,
.header.fixed1 .logo a img {
  /*filter: brightness(100%) invert(0);*/
  height: 100px;
  margin-top: 15px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.header_right {
  clear: both;
  width: 100%;
  display: table;
}

.menu {
  float: right;
  padding: 15px;
}

.menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  float: left;
}

.menu > ul > li {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
}

.menu > ul > li > a {
  line-height: 70px;
  height: 70px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s;
}
.header.fixed .menu > ul > li > a,
.header.fixed1 .menu > ul > li > a {
  color: #393d32;
}
.menu > ul > li > a img {
  height: 6px;
  position: relative;
  top: 1px;
  transition: all 0.3s;
}
.menu > ul > li:hover > a img {
  transform: scaleY(-1);
}
.menu > ul > li:last-child > a img {
  height: 23px;
  top: 0;
}
.menu > ul > li:last-child:hover > a img {
  transform: scaleY(1);
}
.menu > ul > li:last-child > a {
  background: #a6600d;
  color: #fff !important;
  border-radius: 10px 0 10px 0;
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  display: flex;
  gap: 3px;
  align-items: center;
  position: relative;
}

.menu > ul > li:last-child > a:hover {
  background: #000000;
  color: #fff;
}
/*
.menu > ul > li > a:before {
  transition: transform 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: 25px;
  left: 0px;
  right: 0px;
  height: 5px;
  transform: scaleX(0);
  transform-origin: center center;
  background-color: #00944D;
  opacity: 0.13;
}
.menu > ul > li:last-child > a:before {
  display: none;
}
.menu > ul > li:hover > a:before,
.menu > ul > li > a.active:before {
  transform: scaleX(100%);
} */
.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #9a7026 !important;
}

.megamenu {
  position: absolute;
  left: 0px;
  top: 100%;
  background-color: #fff;
  width: 275px;
  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 #a6600d;
}

.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 #a6600d;
}

.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;
}

.megamenu ul li:last-child a {
  border: 0;
}

.megamenu ul li a:hover {
  background-color: #ddd;
  color: #000;
  transition: all 0.3s ease 0s;
}

/*----------banner-----------*/

.mtop1 {
  height: 70px;
}
.main_banner {
  background-color: #002847;
  /* height: calc(100vh - 70px); */
  height: 100vh;
}
.main_banner_shape1 {
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: calc(50% - 125px);
  background: rgba(255, 255, 255, 1);
  height: 60px;
  z-index: 9;
  display: block;
}
.main_banner_shape1::before {
  content: "";
  position: absolute;
  right: -125px;
  bottom: 0px;
  width: 125px;
  height: 60px;
  z-index: 1;
  border-bottom: 60px solid rgb(255, 255, 255);
  border-right: 80px solid transparent;
  display: block;
}
.main_banner_shape2 {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -1px;
  width: calc(50% - 125px);
  background: rgba(255, 255, 255, 1);
  height: 60px;
  z-index: 9;
  display: block;
}
.main_banner_shape2::before {
  content: "";
  position: absolute;
  left: -125px;
  bottom: 0px;
  width: 125px;
  height: 60px;
  display: block;
  z-index: 1;
  border-bottom: 60px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
}
.carousel-inner .item {
  height: 100vh;
}
.carousel-inner .item img.main_img {
  width: auto;
  height: calc(100vh - 90px);
  position: absolute;
  right: 10%;
  bottom: 0;
}

.banner_txt {
  top: 0 !important;
  left: 0%;
  color: #fff;
  position: absolute;
  text-align: left;
  width: 100%;
  height: 100vh;
  padding: 0 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
}
/* .banner_txt::before {
  content: "";
  position: absolute;
  left: -18%;
  bottom: 0px;
  width: 50%;
  height: 100%;
  z-index: -1;
  display: block;
  background: linear-gradient(to bottom, #0a13a1, #1c63fc);
  transform: skew(-15deg);
  opacity: 0.32;
  animation: banneranim1 1.5s linear;
}

.banner_txt::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 0px;
  width: 27%;
  height: 100%;
  z-index: -2;
  display: block;
  background: linear-gradient(to right, transparent, #00944d);
  transform: skew(-15deg);
  opacity: 0.32;
  animation: banneranim2 2s linear;
} */
@keyframes banneranim1 {
  0% {
    left: 100%;
  }
  100% {
    left: -18%;
  }
}
@keyframes banneranim2 {
  0% {
    left: 100%;
  }
  100% {
    left: 15%;
  }
}
.banner_txt_in {
  position: relative;
  width: 65%;
  display: table;
  visibility: hidden !important;
  padding-left: 100px;
}
.banner_hd,
.banner_cont,
.banner_r_more {
  width: 100%;
  float: left;
}

.banner_hd {
  color: #fff;
  font-size: 72px;
  line-height: 1.2;
  padding-bottom: 0px;
  position: relative;
  font-weight: 700;
  /* margin-top: -120px; */
}
.banner_hd span {
  font-size: 62px;
  color: transparent !important;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.banner_cont {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  margin: 10px 0 5px;
  display: block;
  padding: 0px;
  width: 80%;
}

.banner_r_more {
  clear: both;
  margin-top: 10px;
}

.banner_r_more a {
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 15px;
  position: relative;
  gap: 10px;
  align-items: center;
}
.banner_r_more a img {
  height: 15px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
}
.banner_r_more a:hover {
  color: #00944d;
}
/*----------banner-----------*/

/*------section1---------*/
.section1 {
  clear: both;
  width: 100%;
  display: block;
  padding: 75px 0;
  background-color: #fff;
  position: relative;
  background-image: url(../images/shape1.png), url(../images/shape2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 150px, 250px;
  text-align: center;
}
.section1 h4 {
  color: #a6600d;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}
.section1 h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
}
.section1 h3 {
  color: #606063;
  font-size: 16px;
  margin: 0 auto 20px;
  line-height: 1.8;
  width: 75%;
  display: table;
  font-weight: 400;
}
.section1 h3 span {
  font-weight: 600;
  font-style: italic;
}
.section1 a {
  text-decoration: none;
  color: #1972b9;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 10px;
  align-items: center;
}
.section1 a img {
  height: 13px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
}
.section1 a:hover {
}
/*-------section1---------*/

/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 80px 60px 80px;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  background-image: url(../images/back-ground-2.png);
  background-repeat: no-repeat;
  background-position: right 80px;
  background-size: 400px;
}
.section2::before {
  clip-path: polygon(50% 20%, 0 0, 100% 0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  content: "";
  background-color: #fff;
}
.section2in {
  position: relative;
  width: 100%;
  z-index: 9;
}
.section2in h2 {
  color: #393d32;
  font-size: 38px;
  line-height: 1.4;
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}
.section2in h2 span {
  font-weight: 600;
}
.servicessec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.servicessec a {
  transition: all 0.3s;
  color: #fff;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
/* .servicessec a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #d3417a;
  transition: all 0.3s;
  border-radius: 20px;
  z-index: -1;
}
.servicessec a:hover::before {
  background: linear-gradient(to top, #8a47a5 0%, #e93f6e 100%);
  transform: scaleY(1.12);
} */
.servicessec_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.servicessec_img::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to bottom,
    #393d32 2%,
    #9a7026 10%,
    transparent 40%
  );
  transition: all 0.3s;
  opacity: 0.7;
}
.servicessec .servicessec_card:nth-child(2) .servicessec_img::before,
.servicessec .servicessec_card:nth-child(4) .servicessec_img::before {
  background: linear-gradient(
    to bottom,
    #a6600d 2%,
    #a6600d 10%,
    transparent 40%
  );
}
.servicessec_img img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.servicessec .servicessec_card a:hover .servicessec_img img {
  transform: scale(1.3) rotate(2deg);
  filter: grayscale(100%);
}
.servicessec_info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.servicessec .servicessec_card a .servicessec_info h3 {
  margin: 0;
  position: relative;
  padding-bottom: 15px;
  color: #fff;
  font-size: 23px;
  line-height: 1.4;
}
.servicessec .servicessec_card a .servicessec_info h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  content: "";
  background-color: #a6600d;
  transition: all 0.7s;
}
.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: 30px;
}
.servicessec .servicessec_card:nth-child(2) a .servicessec_info h3::before,
.servicessec .servicessec_card:nth-child(6) a .servicessec_info h3::before {
  background-color: #000000;
}
.servicessec .servicessec_card:nth-child(3) a .servicessec_info h3::before,
.servicessec .servicessec_card:nth-child(7) a .servicessec_info h3::before {
  background-color: #a6600dcc;
}
.servicessec .servicessec_card:nth-child(4) a .servicessec_info h3::before,
.servicessec .servicessec_card:nth-child(8) a .servicessec_info h3::before {
  background-color: #000000;
}
.servicessec .servicessec_card a:hover .servicessec_info h3::before {
  transform: scale(1000) rotate(240deg);
  opacity: 0.6;
  z-index: -1;
}
.servicessec_info span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.servicessec_info span img {
  height: 15px;
}
/* 
.section2in .owl-stage {
  left: -45px;
  padding: 30px 20px;
}
.section2in .owl-theme .owl-nav {
  width: auto;
  float: right;
}
.section2in .owl-theme .owl-nav [class*="owl-"] {
  width: 50px;
  height: 37px;
}
.section2in .owl-nav {
  top: 250px !important;
  width: auto;
  left: -29%;
  display: none;
}
.section2in .owl-dots {
  top: 85% !important;
  width: auto;
  left: -49%;
  display: block;
} */
/*-------section2---------*/

/*home_solutions*/
.home_solutions {
  padding: 120px 0 60px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 99;
  background-image: url(../images/super-background.png);
  background-repeat: no-repeat;
  background-position: -25px top;
  background-size: 275px;
}
.home_solutions .row {
  padding-left: 50px;
}
.home_solutions h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
}
.home_solutions h3 {
  color: #606063;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}
/* .home_solutions h2 span {
  font-weight: 600;
} */
.home_solutions a {
  text-decoration: none;
  color: #00944d;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 10px;
  align-items: center;
}
.home_solutions a img {
  height: 13px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
}
.home_solutions a:hover {
}
.accordion {
  width: 100%;
  padding: 0 0 0 60px;
  list-style: none;
}
.accordion > li {
  border-bottom: 1px solid #393d32;
}
.accordion > li:first-child {
  border-top: 1px solid #393d32;
}
.accordion .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  font-size: 24px;
  color: #393d32;
  font-weight: 600;
}
.accordion .link::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 17px;
  height: 20px;
  background-image: url(../images/downarrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  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 15% 30px 55px;
  position: relative;
  border-top: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #606063;
}
.accordion .submenu > li p {
  margin-bottom: 10px;
}
.accordion .submenu > li a {
  color: #1972b9;
}
.accordion li.open .link::before {
  transform: rotate(313deg) translateY(1rem);
  top: 25%;
}
/*home_solutions*/

/*latestblogs*/
.latestblogs {
  width: 100%;
  display: block;
  padding: 150px 0 300px;
  position: relative;
  overflow: hidden;
  /* background-color: #f9f9f9; */
  background-image: url(../images/lblogsbg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
.latestblogs::before {
  clip-path: polygon(50% 20%, 0 0, 100% 0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  content: "";
  background-color: #fff;
}
.latestblogs h2 {
  color: #393d32;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}
.latestblogs h3 {
  color: #606063;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}
.latestblogs ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-bottom: 40px;
}
.latestblogs ul li {
  padding: 25px;
  background-color: #fff;
  transition: all 0.3s;
  border-radius: 20px;
}
.latestblogs ul li:hover {
  box-shadow: 9px 9px 90px rgba(25, 114, 185, 0.231);
}
.latestblogs ul li img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.latestblogs ul li span {
  background-color: #9a7026;
  color: #fff;
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 20px;
  margin: 0;
}
.latestblogs ul li h4 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}
.latestblogs ul li p {
  font-size: 14px;
  line-height: 24px;
  color: #606063;
}
.latestblogs ul li a {
  text-decoration: none;
  color: #1972b9;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 15px;
  position: relative;
  gap: 10px;
  align-items: center;
}
.latestblogs ul li a img {
  height: 13px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0;
}
.latestblogs ul li a:hover {
  opacity: 0.7;
}
a.viewall {
  padding: 5px 20px;
  background-color: #9a7026;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
  margin: auto;
  display: table;
  border-radius: 10px 0 10px 0;
  position: relative;
  z-index: 999;
}
a.viewall:hover {
  background-color: #044476;
}
/*latestblogs*/

/*home_careers*/
.home_careers {
  position: relative;
  width: 100%;
  display: inline-block;
  margin-top: -350px;
  /* background-color: #393D32; */
}
.home_careers_shapes {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.home_careers_shapes1 {
  width: 58.5%;
  height: 68.10035842293907%;
  top: 0;
  left: 0;
  background-color: #9a7026;
  position: absolute;
  z-index: 5;
  content: "";
  background-size: cover;
  clip-path: url("#triangle-left-clip");
}
.home_careers_shapes1::before {
  position: absolute;
  left: 0;
  top: 0%;
  content: "";
  background-image: url(../images/careershape.png);
  background-repeat: no-repeat;
  background-position: left 250px;
  background-size: 375px;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.home_careers_shapes2 {
  width: 77.5%;
  height: 90%;
  bottom: 0;
  right: 0;
  background-color: #393d32;
  clip-path: url(#triangle-right-clip);
  background-image: url(../images/transformed.png);
  position: absolute;
  z-index: 5;
  content: "";
  background-size: cover;
}
.home_careers_shapes2:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.85;
  content: "";
  background: #002847;
}
.home_careers_info {
  padding-bottom: 300px;
  width: 100%;
  margin-top: 0;
  /* margin-bottom: -140px; */
  position: relative;
  display: table;
  z-index: 9;
}
.home_careers_info_left {
  float: left;
  width: 58.5%;
  margin-top: 200px;
  position: relative;
  top: 50px;
}
.home_careers_info_right {
  position: relative;
  width: 100%;
  margin-top: 0;
  float: right;
  padding-left: 55%;
  margin-top: 0;
}
.home_careers h2 {
  color: #fff;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 600;
}
.home_careers h2 span {
  font-weight: 600;
}
.home_careers a {
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 16px;
  position: relative;
  gap: 10px;
  align-items: center;
  z-index: 1;
}
.home_careers a img {
  height: 13px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
}
.home_careers a:hover {
}
.home_careers p {
  font-size: 18px;
  line-height: 1.8;
  /* opacity: 0.5; */
  color: #fff;
}
/*home_careers*/

/*homesteps*/
.homesteps {
  padding: 60px 0;
  width: 100%;
  display: block;
  background-image: url(../images/shape1.png), url(../images/shape2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 150px, 250px;
  position: relative;
}
.homesteps h3 {
  color: #00944c;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
.homesteps h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.homesteps ul {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  row-gap: 40px;
}
.homesteps ul li {
  padding: 30px;
  background-color: #fff;
  box-shadow: 12px 12px 99px rgba(25, 114, 185, 0.329);
  border-radius: 30px;
  position: relative;
  min-height: 180px;
}
.homesteps ul li span {
  font-size: 100px;
  color: #f0f6ff;
  position: absolute;
  right: 60px;
  top: -10px;
  font-weight: bold;
}
.homesteps ul li h4 {
  margin: 0 0 20px;
  padding-left: 20px;
  border-left: 2px solid #1972b9;
  color: #010d42;
  font-size: 21px;
  position: relative;
  font-weight: 600;
}
.homesteps ul li p {
  padding-left: 20px;
  font-size: 17px;
  line-height: 26px;
  color: #606063;
  margin: 0;
  position: relative;
}
/*homesteps*/

/*home_connection*/
.home_connection {
  padding: 60px 0;
  width: 100%;
  display: block;
  /* position: relative; */
  background-image: url(../images/connbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home_connection h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.home_connection h3 {
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 30px;
}
.home_connection h3 span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home_connection h3 span img {
  height: 30px;
}
.home_connection_bx {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 40px;
  align-items: center;
}
.home_connection_bx h4 {
  color: #393d32;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 20px;
}
.home_connection_bx ul {
}
.home_connection_bx ul li {
  padding-left: 40px;
  background-image: url(../images/info.svg);
  background-repeat: no-repeat;
  background-position: left 5px;
  background-size: 23px;
  margin-bottom: 20px;
  color: #606063;
  font-size: 16px;
  line-height: 26px;
}
.home_connection_bx p {
  color: #606063;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}
.home_connection_bx a {
  text-decoration: none;
  color: #1972b9;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  outline: 0px;
  font-size: 15px;
  position: relative;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.home_connection_bx a img {
  height: 13px;
  width: auto !important;
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0;
}
.home_connection_bx a:hover {
  opacity: 0.7;
}
.home_connection_right img {
  width: 100%;
  display: block;
}
/*home_connection*/

/*section3*/
.section3 {
  padding: 200px 0 70px;
  background-color: #f9f9f9;
  position: relative;
  width: 100%;
  display: inline-block;
  margin-top: -500px;
}
.section3 h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 42px;
  line-height: 1.4;
  font-weight: 700;
}
.section3 h2 span {
  font-weight: 600;
}
.section3 ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px 20px 0;
  height: 100px;
}
.section3 ul li img {
  max-width: 100%;
  max-height: 100px;
}
.section3 .owl-dots {
  bottom: -50px;
  text-align: left;
  display: block;
}
.section3 .owl-dots .owl-dot span {
  background-color: #393d32;
  opacity: 0.11;
}
.section3 .owl-dots .owl-dot.active span,
.section3 .owl-dots .owl-dot:hover span {
  background-color: #393d32;
  transform: scale(1.4);
  opacity: 0.5;
}
/*section3*/

/*section4*/
.section4 {
  width: 100%;
  display: block;
  padding: 60px 0;
  background-image: url(../images/back-ground.png), url(../images/back-ground-1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 150px, 120px;
}
.section4 h2 {
  color: #393d32;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.section4 .sec4_right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section4 .sec4_right ul li {
  position: relative;
  width: 100%;
  padding: 50px;
  font-size: 15px;
  line-height: 1.8;
  transition: all ease-in-out 0.5s;
  text-align: center;
}
.section4 .sec4_right ul li:nth-child(2) {
  background-color: rgba(110, 110, 110, 0.04);
}
.section4 .sec4_right ul li img {
  height: 75px;
}
.section4 .sec4_right ul li h4 {
  font-weight: 600;
  font-size: 28px;
  margin: 20px 0 20px;
  color: #393d32;
}
.section4 .sec4_right ul li h4 span {
  font-weight: 600;
}
.section4 .sec4_right ul li p {
  font-size: 17px;
  color: #606063;
}

/*section4*/

/*footer*/
.footer {
  padding: 0;
  display: block;
  background-color: #002847;
  position: relative;
  width: 100%;
}
.footer_logo {
}
.footer_logo img {
  max-width: 100%;
  max-height: 25px;
  margin-bottom: 30px;
}
.footer_right {
  position: relative;
  padding: 50px 0 30px 0;
  width: 100%;
}
.footer_right_in {
  display: grid;
  grid-template-columns: 50fr 20fr 20fr 10fr;
  gap: 20px;
}
.footer_right_in h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  margin-top: 0;
}
.footer_right_in ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 10px;
  display: block;
  padding-left: 25px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 14px;
}
.footer_right_in ul li a:hover {
  color: #a6600d;
}
.footer_right_in h4 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.footer_right_in p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer_right_in p a {
  color: #00944d;
  text-decoration: none;
  display: block;
  clear: both;
}
.footer_socical {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  position: relative;
}
.footer_socical a {
  width: 40px;
  height: 40px;
  background-color: #044476;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.footer_socical a img {
  filter: brightness(0) invert(1);
}
.footer_socical a:hover {
  /* background-color: rgba(255, 255, 255, 0.75); */
}
.footer_socical a img {
  height: 15px;
}
.footer_in_last {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.footer_in_last img {
  max-height: 60px;
  width: auto;
  max-width: 90%;
}
.copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copylinks {
  display: flex;
  gap: 30px;
}
.copylinks a {
  color: #fff;
  opacity: 0.5;
  transition: all 0.3s;
}
.copylinks a:hover {
  text-decoration: none;
  opacity: 1;
}
.ft_add {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fff;
}
.ft_add img {
  max-height: 22px;
  max-width: 22px;
  position: absolute;
  left: 0;
  top: 2px;
  width: auto;
}
.ft_add a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.ft_add h4 {
  font-weight: 600;
  font-size: 14px;
}
.ft_add p {
  font-weight: 500;
}
/*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: #fbb44a;
  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: #002847;
  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.html");
}
.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 #a6600d;
  background-color: #a6600d;
  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: 55px; */
  }
  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .footer,
  .main_banner{
    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: 12px;
    right: 10px;
    z-index: 99999999999999;
  }
  .menu {
    display: none;
  }

  .banner_hd {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0px;
    padding-bottom: 0;
    margin: 0;
  }
  .banner_hd span {
    font-size: 36px;
  }
  .banner_hd br {
    display: none;
  }
  .banner_cont {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
    width: 100%;
  }
  .carousel-inner .item img.main_img {
    right: 0;
    position: absolute;
    height: 85vh;
  }
  .banner_txt {
    /* padding: 0 15%; */
  }
  .header.fixed,
  .header.fixed1 {
    height: 65px;
  }
  .logo a img {
    height: 30px;
    padding: 5px 0 5px 10px;
  }
  .header .logo img {
   filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5)); /* Adds shadow for visibility */
}
  .carousel-inner .item picture img {
    height: 400px;
    object-fit: cover;
    object-position: center center;
  }
  .banner_txt_in {
    width: 100%;
    padding: 25px;
  }
  .pavcontentslider .carousel-indicators {
    display: none;
  }
  .section1,
  .section2 {
    padding: 50px 20px;
  }
  .section1 h2,
  .section2in h2,
  .section3 h2 {
    font-size: 21px;
  }
  .section1 h3,
  .section2in h3 {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
  }
  .section1_btm ul,
  .section1_btm,
  .section4,
  .section4 .sec4_right ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .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;
    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: 21px;
  }
  .accordion {
    padding: 40px 0 0;
  }
  .accordion .link {
    font-size: 16px;
  }
  .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;
    flex-direction: column;
    gap: 10px;
  }
  .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: #a6600d;
    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,
  .latestblogs h2,
  .homesteps h2,
  .home_connection h2 {
    font-size: 24px;
  }
  .home_careers p {
    font-size: 16px;
  }
  .footer_socical {
    justify-content: flex-start;
  }
  .home_solutions .row {
    padding-left: 0;
  }
  .latestblogs {
    padding: 130px 20px;
  }
  .latestblogs ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .latestblogs ul li h4 {
    font-size: 18px;
  }
  .homesteps ul {
    grid-template-columns: repeat(1, 1fr);
    max-width: fit-content;
    padding: 0 20px;
    gap: 20px;
  }
  .home_connection {
    padding: 60px 20px;
  }
  .home_connection h3 {
    flex-direction: column;
    font-size: 16px;
    align-items: baseline;
  }
  .home_connection_bx {
    grid-template-columns: repeat(1, 1fr);
  }
  .home_connection_bx h4 {
    font-size: 21px;
  }
  .footer_in_last {
    align-items: baseline;
    gap: 20px;
  }
}
/*------iphone----------------*/
@media only screen and (min-width: 320px) and (max-width: 470px) {
}
/*------smalltablet----------------*/
@media only screen and (min-width: 470px) and (max-width: 768px) {
}
/*--------iPad - Portrait--------------*/
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .banner_txt {
    top: 35% !important;
  }
  .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%;
  }
  .menu > ul > li {
    margin: 0;
  }
  .menu > ul > li > a {
    font-size: 14px;
  }
  .logo {
    margin: 0;
    padding: 0;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .menu ul {
    margin-right: 0;
  }
}
@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 {
    height: 45px;
    margin-top: 20px;
    margin-left: 15px;
  }
  .footer {
    padding: 0 30px;
    gap: 50px;
  }
  .footer_logo img {
    height: 70px;
  }
  .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: 1170px) and (max-width: 1320px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 50px;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .header {
    padding: 0;
  }
  .logo a img {
    height: 55px;
    margin-top: 10px;
    margin-left: 20px;
  }
  .section2in {
    padding-left: 50px;
  }
}
