@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root,
html {
  scroll-behavior: smooth;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.poppins-all * {
  font-family: "Poppins", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.anek-all * {
  font-family: "Anek Devanagari", sans-serif;
}

img {
  border-style: none;
}

.anek {
  font-family: "Anek Devanagari", sans-serif;
}

.section {
  padding: 40px 0;
}

body.home {
  overflow-x: hidden;
}

body.home .header {
  width: 100vw;
  max-width: 100vw;
  z-index: 101;
  padding: 0 10px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

body.home .header.scrolling {
  -webkit-box-shadow: 0 6px 10px 0 #75757575;
          box-shadow: 0 6px 10px 0 #75757575;
}

body.home .header nav.navbar {
  padding: 8px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

body.home .header nav.navbar .logo {
  width: 395px;
}

@media (max-width: 768px) {
  body.home .header nav.navbar .logo {
    width: 340px;
  }
}

body.home .header nav.navbar .navbar-brand {
  padding-top: 0;
}

@media (max-width: 768px) {
  body.home .header nav.navbar .navbar-brand {
    margin-right: 0;
  }
}

body.home .header nav.navbar .nav-link {
  font-size: 19px;
  padding-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: 300ms;
  transition: 300ms;
}

body.home > .carousel {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

body.home > .carousel::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 100vw;
  background-color: #000;
  bottom: 0;
  left: 0;
}

body.home > .carousel .arrow {
  content: "<h1>hEELO</h1>";
  height: 80px;
  width: 80px;
  background-color: #000000c9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

body.home > .carousel .arrow svg {
  height: 25px;
  width: 45px;
  fill: white;
}

body.home > .carousel .arrow.left {
  left: -40px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

body.home > .carousel .arrow.right {
  right: -40px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

body.home > .carousel .slick-arrow {
  display: none !important;
}

body.home > .carousel .border {
  height: 10px;
  width: 100vw;
  background-color: #f5a020;
}

body.home > .carousel .handler {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

body.home > .carousel .handler .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}

@media (max-width: 791px) {
  body.home > .carousel .handler .slick-track {
    gap: 0;
  }
}

body.home > .carousel .handler .item {
  position: relative;
}

body.home > .carousel .handler .item img {
  width: 100%;
  z-index: 1;
}

body.home > .carousel .handler .item p {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: white;
  bottom: 8%;
  left: 5%;
  font-size: 2rem;
}

body.home > .about {
  background-color: #ececec;
}

body.home > .about .container .content {
  padding: 20px 0;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 991px) {
  body.home > .about .container .content {
    gap: 40px;
  }
  body.home > .about .container .content .text {
    text-align: center;
  }
}

body.home > .about .container .content .img {
  max-width: 500px;
  padding: 13px;
  border-radius: 10px;
  background-color: white;
  position: relative;
}

body.home > .about .container .content .img img {
  width: 100%;
}

body.home > .about .container .content .text {
  max-width: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.home > .about .container .content .text > p {
  margin: 0;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.home > .about .container .content .text > div {
  height: 1px;
  background-color: #e0e0e0;
  width: 90%;
  margin: 3px 0px;
}

@media (max-width: 991px) {
  body.home > .about .container .content .text > div {
    width: 60%;
  }
}

body.home > .our-vision {
  background-color: #ececec;
}

body.home > .our-vision .container .content {
  padding: 20px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 991px) {
  body.home > .our-vision .container .content {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  body.home > .our-vision .container .content .text {
    text-align: center;
  }
}

body.home > .our-vision .container .content .img {
  max-width: 500px;
  padding: 13px;
  border-radius: 10px;
  background-color: white;
  position: relative;
}

body.home > .our-vision .container .content .img img {
  width: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

body.home > .our-vision .container .content .text {
  max-width: 400px;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

body.home > .products {
  background-color: #ececec;
  padding-bottom: 20px;
}

body.home > .products .content {
  padding-top: 20px;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.home > .products .content .box {
  text-align: center;
  background-color: #fff;
  width: 345px;
}

body.home > .products .content .box .image {
  position: relative;
  overflow: hidden;
}

body.home > .products .content .box .image img {
  max-width: 100%;
}

body.home > .products .content .box .sep {
  height: 1px;
  background-color: #ececec;
}

body.home > .products .content .box h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  padding: 28px 0;
  margin: auto;
  font-weight: 600;
  letter-spacing: -0.5px;
}

body.home > .products .content .box h2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15px;
  height: 5px;
  background-color: #73ad57;
  width: calc(100% - 30px);
}

body.home > .products .content .box h2.c-and-c::after {
  background-color: #73ad57;
}

body.home > .products .content .box h2.petrosys::after {
  background-color: #064287;
}

body.home > .products .content .box h2.tibco::after {
  background-color: #3f8ddf;
}

body.home > .products .content .box h2.quorum::after {
  background-color: #040b51;
}

body.home > .products .content .box p {
  line-height: 2;
  font-size: 20px;
  margin: 30px 0 30px;
  padding: 0 25px;
  color: #777;
  min-height: 240px;
  text-transform: capitalize;
}

body.home > .products .content .box > a {
  display: block;
  border: 3px solid transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 30px;
  border-radius: 6px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

body.home > .products .content .box > a.c-and-c {
  color: #73ad57;
  border-color: #73ad57;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #73ad57), color-stop(50%, white));
  background: linear-gradient(to right, #73ad57 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  text-decoration: none;
}

body.home > .products .content .box > a.petrosys {
  color: #064287;
  border-color: #064287;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #064287), color-stop(50%, white));
  background: linear-gradient(to right, #064287 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  text-decoration: none;
}

body.home > .products .content .box > a.tibco {
  color: #3f8ddf;
  border-color: #3f8ddf;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #3f8ddf), color-stop(50%, white));
  background: linear-gradient(to right, #3f8ddf 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  text-decoration: none;
}

body.home > .products .content .box > a.quorum {
  color: #040b51;
  border-color: #040b51;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #040b51), color-stop(50%, white));
  background: linear-gradient(to right, #040b51 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  text-decoration: none;
}

body.home > .products .content .box:hover > a {
  background-position: left bottom;
  color: white;
}

body.home > .services {
  background-color: #ececec;
}

body.home > .services .container .content {
  padding: 20px 0;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 991px) {
  body.home > .services .container .content {
    gap: 40px;
  }
  body.home > .services .container .content .text {
    text-align: center;
  }
}

body.home > .services .container .content .img {
  max-width: 500px;
  padding: 13px;
  border-radius: 10px;
  background-color: white;
  position: relative;
}

body.home > .services .container .content .img img {
  width: 100%;
}

body.home > .services .container .content .text {
  max-width: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

body.home > .services .container .content .text > .line {
  background-color: #0000002e;
  height: 1px;
  width: 90%;
  margin: 2px 0;
  padding: 0;
}

@media (max-width: 991px) {
  body.home > .services .container .content .text > .line {
    width: 60%;
  }
}

body.home > .services .container .content .text > div {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.home > .services .container .content .text > div span {
  color: #f5a020;
}

body.home > .partners {
  background-color: #ececec;
}

body.home > .partners .content {
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
}

body.home > .partners .content .box {
  padding: 15px;
  background-color: white;
  -webkit-box-shadow: 0px 12px 20px 0px #00000021, 0px 2px 4px 0px #0000001f;
          box-shadow: 0px 12px 20px 0px #00000021, 0px 2px 4px 0px #0000001f;
  width: 350px;
}

body.home > .partners .content .box .image {
  position: relative;
  overflow: hidden;
}

body.home > .partners .content .box .image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff33;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 2;
}

body.home > .partners .content .box .image img {
  max-width: 100%;
  -webkit-transition: 300ms;
  transition: 300ms;
  border: 1px solid #ededed;
  border-radius: 5px;
}

@-webkit-keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}

@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}

body.home > .partners .content .box .image:hover img {
  -webkit-transform: rotate(5deg) scale(1.1);
          transform: rotate(5deg) scale(1.1);
}

body.home > .partners .content .box .image:hover::after {
  -webkit-animation: flashing 0.7s;
          animation: flashing 0.7s;
}

body.home > .footer {
  background-color: #f5a020;
}

body.home > .footer .contact-us {
  padding: 10px 0;
}

body.home > .footer .contact-us .container {
  gap: 5px;
}

body.home > .footer .contact-us .container a.link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  width: 45px !important;
}

body.home > .footer .contact-us .container a.link i {
  color: #fff;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body.home > .footer .sep {
  background-color: #e0e0e0;
  height: 1px;
  width: 100vw;
}

body.home > .footer p.flex-center {
  padding: 10px 0;
  margin: 0;
  color: white;
  font-weight: 600;
}

body {
  width: 100vw;
  max-width: 100vw;
}

.title {
  text-shadow: 1px 1px #f5a020;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  gap: 6px;
}

@media (max-width: 791px) {
  .title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.title span {
  color: #f5a020;
  font-size: 40px;
  text-shadow: 1px 1px #000;
}

.seperate {
  height: 80px;
  background-color: #f3f3f3;
}
/*# sourceMappingURL=main.css.map */