@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

@font-face {
  src: url("../font-family/metropolis-latin-500-normal.ttf");
  font-family: "metropolis 500";
}
@font-face {
  src: url("../font-family/metropolis-latin-400-normal.ttf");
  font-family: "metropolis 400";
}
@font-face {
  src: url("../font-family/metropolis-latin-700-normal.ttf");
  font-family: "metropolis 700";
}
@font-face {
  src: url("../font-family/metropolis-latin-800-normal.ttf");
  font-family: "metropolis 800";
}
html,
body {
  font-family: "Poppins", sans-serif;
  /* letter-spacing: 0.02rem; */
  /* font-family: "metropolis 400"; */
}
nav ul li a {
  font-size: 16px;
}
nav ul li:not(.dropdown ul li, .accordion-container ul li) {
  /* font-family: "metropolis 500"; */
  position: relative;
  padding: 30px 15px;
  font-weight: 500;
}

nav ul li:hover a:not(.mainLink) {
  color: #ff5634;
}
nav ul li i.fa-angle-down {
  transition: transform 0.5s;
}
nav ul li:hover i.fa-angle-down {
  transform: rotate(180deg);
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #ffffff;
  /* width: 1000px; */
  padding: 30px;
  margin-top: 25px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  /* left: -100%; */
}

/* .dropdown p {
  font-family: "metropolis 400";
} */

.dropdown h4 {
  /* font-family: "metropolis 700" !important; */
  padding-bottom: 5px;
  font-weight: 500;
}

.dropdown .mainLink:hover h4 {
  color: #ff5634;
}

nav ul li:hover .dropdown {
  display: block;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.mobile-nav {
  transition: all 1s ease;
}
.mobile-nav ul {
  font-size: 16px;
  font-weight: 600;
}
.mobile-nav ul li {
  padding-top: 10px;
}

#toggle {
  width: 28px;
  height: 30px;
  /* margin: 10px auto; */
}

#toggle div {
  width: 100%;
  height: 5px;
  background: rgb(0, 0, 0);
  margin: 4px auto;
  transition: all 0.5s;
  backface-visibility: hidden;
}
#toggle div:first-child {
  border-top-left-radius: 100px;
}
#toggle div:last-child {
  border-bottom-right-radius: 100px;
}

#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
  border-top-left-radius: 0px;
}

#toggle.on .two {
  opacity: 0;
}

#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
  border-bottom-right-radius: 0px;
}
/* #toggle .two {
  margin-left: 5px;
} */

.heroHeading {
  font-family: "metropolis 700";
}
.count div > p:first-child {
  font-size: 55px;
  font-family: "metropolis 700";
}
.count div > p:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #3f3f3f;
}
.formContainer h4 {
  font-family: "metropolis 700";
  font-size: 26px;
  text-align: center;
}
.section2-heading h2 {
  font-family: "metropolis 800";
}
.section-why {
  font-family: "metropolis 700";
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.section {
  display: flex;
  min-height: 85vh;
  position: relative;
  z-index: 2;
}
.section > * {
  width: 100%;
}
.section__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__img__inner {
  position: fixed;
  top: 120px;
  width: 30%;
  height: 80vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0; /* initially hidden */
}

.review-reached {
  display: none;
  opacity: 0.6;
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
}
.section__text,
.section__img__inner {
  transition: opacity 0.5s ease;
}

.footer-reached {
  /* Add your styles here, e.g. */
  display: none;
  opacity: 0.6;
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
}

/* .section:first-child .section__img__inner {
  top: 300px !important;
} */
.section__body {
  display: flex;
  align-items: center;

  position: relative;
  z-index: 100;
}
.section__text {
  padding: 0vw;
  color: #3f3f3f;
}
/* .section__img__inner:first-child {
    background-color: blue;
} */
.section__text h2 {
  font-family: "metropolis 700";
  /* font-size: 45px; */
  line-height: 1.2;
}

/* @media screen and (max-width: 400px) {
  .section__text h2 {
    font-size: 30px;
  }
} */

.section__text p {
  /* font-family: "metropolis 500"; */
  font-weight: 600;
  /* font-size: 20px; */
  line-height: 1.5;
  padding: 10px 0 15px;
}
.animation-datas ul li::before,
.industries_head ul li::before,
.mobile_app_container ul li::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c"; /* fa-check */
  font-size: 15px;
  margin-right: 0.5em;
  background-color: #ff5634;
  color: #fff;
  /* padding-bottom: 10px; */

  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
}
.section__img__inner {
  opacity: 0;
  background-position: bottom;
  transition: filter 0.2s ease, opacity 0.3s ease, background-position 1s ease;
}

.section.active .section__img__inner {
  opacity: 1;
  background-position: center;
  filter: blur(0);
}

.review h2 {
  font-family: "metropolis 700";
  font-size: 45px;
}

.review p {
  font-family: "metropolis 500";
  font-weight: 500;
}

.whyCardContainer h5 {
  font-family: "metropolis 500";
  font-size: 22px;
  text-align: center;
}
.attracting h3 {
  font-family: "metropolis 700";
  /* line-height: 75px; */
}
.footer-links h6 {
  font-family: "metropolis 700";
  font-size: 20px;
  padding-bottom: 10px;
}
.footer-links ul li {
  padding: 6px 0;
}
.footer-links a,
.footer-links li p {
  color: #656565;
  font-size: 17px;
}
@media (max-width: 1400px) {
  .footer-links a,
  .footer-links li p {
    color: #656565;
    font-size: 14px;
  }
}
.footer-links a:hover {
  color: #ff6a4c;
}
.fa-linkedin {
  color: #0073b2;
}

.fa-square-facebook {
  color: #4267b2;
}

.fa-youtube {
  color: #c4302b;
}

.fa-square-instagram {
  color: transparent;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.accordion-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* padding: 10px;
  border-bottom: 1px solid #ccc; */
}

.accordion-content {
  display: none;
  padding-left: 10px;
  /* border-bottom: 1px solid #ccc; */
}

/* .mobile-nav .dropdown ul li{
  padding: 20px 12px !important;
} */

.accordion-content li a {
  color: #535353 !important;
  font-size: 14px !important;
  font-weight: normal;
}
.accordion-content li a:hover {
  color: #ff6a4c !important;
}

.accordion-content h4 {
  margin-top: 0;
}

.accordion-content p {
  margin-bottom: 10px;
}

/* .accordion-toggle:hover {
  background-color: #f0f0f0;
} */

/* .accordion-toggle.active {
  background-color: #ccc;
  border-bottom: none;
} */

.accordion-content.active {
  display: block;
}

/* scroll to top */
.scroll_to_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  color: #ffffff;
  height: 60px;
  width: 60px;
  background-color: #ff5634;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  z-index: 99;
}

.scroll_to_top {
  animation: icon 1.5s ease-in-out infinite;
  /* animation: shadow-pulse 1s infinite; */
}
.scroll_to_top:hover {
  animation: none;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
@-webkit-keyframes icon {
  0% {
    bottom: 20px;
  }
  25% {
    bottom: 25px;
  }
  50% {
    bottom: 20px;
  }
  75% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes icon {
  0% {
    bottom: 20px;
  }
  25% {
    bottom: 25px;
  }
  50% {
    bottom: 20px;
  }
  75% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}

/* @keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
} */

/* .background-image {
  width: 100%;
  height: 100%;
  background-image: url("../images/mockup-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1280px) {
  .background-image {
    background-size: auto;
  }
} */

.box-c {
  position: relative;
  /* display: block; */
  /* width: 100%; */
  text-align: center;
  cursor: pointer;
}
.box-c {
  height: 125px;
}

.box-c h3 {
  line-height: 125px;
}

.custom-underline {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.custom-underline,
.custom-underline:hover,
.custom-underline:focus,
.custom-underline:active {
  color: #ff5634;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
}

.custom-underline::after {
  content: "";
  position: absolute;
}

.box-c .custom-underline::after {
  top: 65%;
  height: 3px !important;
  border-radius: 5px;
  width: 40%;
  left: 30%;
  background-color: #1d79ba;
  transition: 0.4s ease-out all 0.1s;
}

.box-c:hover .custom-underline::after {
  width: 90%;
  left: 5%;
  transition: 0.5s ease all;
}

/* .service-container{
  background-image: url('../images/Web\ banner\ 2.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  
}
.service-main{
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.services a h4 {
  color: #ff5634;
  font-weight: 800;
  font-size: 20px;
}
.services .service-link .service-img {
  /* transform: rotate(45deg); */
  background-color: #eaf4ff;
  transition: transform 1s;
}
.services .service-link:hover .service-img {
  /* transform: rotate(0deg); */
  background-color: #ffffff;
}
.services .service-link:hover {
  /* transform: rotate(0deg); */
  background-color: #eaf4ff;
}

.service-item {
  box-shadow: 0 0 25px rgba(79, 79, 79, 0.1);
  transition: 0.5s;
  background-color: white;
}
.service-item h5 {
  font-weight: 800;
  font-size: 20px;
  line-height: 50px;
  color: #ff5634;
  /* min-height: 200px; */
}

.service-item:hover {
  background: #ff5634;
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: white !important;
}

.slider .owl-carousel .item {
  height: 500px;
  background: #000000;
  padding: 1rem;
}

.features h3 {
  font-family: "metropolis 700";
}

/* .feat_img{
  transition: all 0.5s;
  position: relative;
}
.feat_img:hover{
  transform: scale(1.2,1.2);
  z-index: 2;
}

.feat_img.feat_pos{
  transform: scale(1.3);
  z-index: 2;
}

.feat_img:hover .feat_img.feat_pos{
  transform: scale(1) !important;
} */

.feat_img {
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}

.feat_img:hover {
  transform: scale(1.2);
  z-index: 3;
}
.feat_img_text,
.feat_img_text2,
.feat_img_text_row,
.feat_img_text_row2,
.feat_list,
.feat_list2 {
  transition: all 0.2s;
}
.feat_list,
.feat_list2 {
  margin: 10px;
}
.feat_list ul li,
.feat_list2 ul li {
  margin: 6px 0;
}
/* .feat_list ul li::before,
.feat_list2 ul li::before {
  content: url('../images/Bullet\ point\ BrixPOS.png');
  margin-right: 8px;
  width: 10px;
} */

.feat_list ul li::before,
.feat_list2 ul li::before {
  content: ""; /* Clear the content */
  display: inline-block; /* Make the pseudo-element inline-block to control dimensions */
  background-image: url("../images/Bullet\ point\ BrixPOS.png");
  background-size: contain; /* Adjust this to control the scaling of the image */
  background-repeat: no-repeat; /* Ensures the image doesn't repeat */
  width: 20px; /* Set the desired width of the bullet image */
  height: 20px; /* Set the desired height of the bullet image */
  margin-right: 8px; /* Space between the bullet image and the text */
  vertical-align: middle; /* Aligns the bullet with the text */
}

.feat_img:hover .feat_img_text {
  top: -140px;
}
/* .feat_img:hover .feat_list2 {
  
  height: 200px;
} */
/* .feat_img:hover .feat_img_text2,.feat_img:hover .feat_img_text_container {
  bottom: -150px;
} */

/* .feat_img:hover .feat_list2 {
  display: block;
} */

.feat_pos {
  transform: scale(1.2);
  z-index: 2;
}
.feat_list {
  display: none;
}
@media screen and (min-width: 1536px) {
  .feat_row {
    top: 265px !important;
  }
}
.feat_badge {
  background: linear-gradient(to top, #b01d00, #f96301);
  white-space: nowrap;
}
.feat_img:hover .feat_badge {
  background: #f96301;
}

/* .feat_img_text_container:hover .feat_badge{
  font-size: 8px !important;
} */

.main-content .item {
  padding: 5px 20px 20px 20px;
}

.main-content {
  position: relative;
}

.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: linear-gradient(
    to right,
    #ffffff 40%,
    rgba(255, 255, 255, 0.2)
  );
  height: 85%;
  width: 50px;
  z-index: 10;
}
.main-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  background-image: linear-gradient(
    to left,
    #ffffff 40%,
    rgba(255, 255, 255, 0.2)
  );
  height: 100%;
  width: 60px;
  z-index: 10;
}

/* .combined {
  width: 300px;
  height: 500px;
  background-color: #ECECEC;
  border: 3px solid #A67F66;
  outline: 2px solid black;
  transform: rotate(45deg);
  transform-origin: top left;
} */

.banner-element {
  background-image: linear-gradient(
    to right,
    #e64100 3%,
    #f97c03 10%,
    #e4ced0 30%,
    #e4ced0 60%
  );
  position: relative;
}
.pentagon {
  position: absolute;
  right: -70px;
  top: -50px;
  width: 0;
  height: 0;
  z-index: 2;
  border-top: 200px solid transparent;
  border-bottom: 200px solid transparent;
  border-left: 75px solid #ececec;
}
.pentagon-black {
  position: absolute;
  right: -74px;
  top: -50px;
  width: 0;
  height: 0;
  z-index: 1;
  border-top: 200px solid transparent;
  border-bottom: 200px solid transparent;
  border-left: 75px solid #8b0000;
}

.banner-heading {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  font-family: "metropolis 800";
}
/* .banner-subheading{
  height: 100%;
  width: 100%;
} */

.banner-element .person-img img {
  transform: scale(1.1);
}

.service-container {
  transition: height 0.3s ease, padding 0.3s ease; /* Adjust the duration and easing as needed */
}

.btn-try {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-try::after {
  background: #f96301;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.3;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}
.btn-try:hover:after {
  left: 120%;
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-try2 {
  overflow: hidden;
  position: relative;
}

.btn-try2::after {
  background: #fffefd;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.3;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}
.btn-try2:hover:after {
  left: 120%;
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.banner-text {
  writing-mode: vertical-rl; /* Text flows from top to bottom, right to left */
  text-orientation: mixed;
}

.border-text {
  color: #f96301;
  font-weight: 800;
  text-shadow: 1px 1px #ffffffd5, -1px 1px #ffffffd5, 1px -1px #ffffffd5,
    -1px -1px #ffffffd5, 1px 1px 5px #555555c2;
  font-size: 20px;
}
.inner-box::before,
.inner-box::after,
.inner-box2::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent; /* Adjust the triangle's width */
  border-right: 12px solid transparent; /* Adjust the triangle's width */
  border-top: 15px solid #ffffff; /* Adjust the triangle's height and color to match the container */
}
.inner-box::before {
  top: 50%; /* Adjust the vertical position of the triangle */
  left: -2px;
}
.inner-box::after {
  top: 50%; /* Adjust the vertical position of the triangle */
  right: -25px;
}

/* New pseudo-element for the bottom triangle */
.inner-box2::before {
  bottom: -16px; /* Adjust to position the triangle below the bottom edge */
  left: 50%; /* Center horizontally */
}
.img-inset-shadow {
  box-shadow: inset 0px 0px 8px 3px rgba(0, 0, 0, 0.6);
}

.main-content .owl-carousel .item {
  display: flex !important;
  justify-items: center !important;
  align-items: center !important;
  /* height: 150px !important; */
}
.main-content .owl-carousel .item img {
  width: 130px !important;
}

.supp-app {
  position: absolute;
  bottom: 10%;
  transform: skewY(-10deg);
  width: 70%;
  right: 30%;
  transition: all 1s ease-in;
}
.launchpad-container:hover .supp-app {
  bottom: 22%;
  width: 58%;
  right: 30.5%;
  transform: rotateY(0deg) rotateZ(0deg);
  border: none;
}

.flip-card {
  perspective: 1000px;
}
.flip-inner {
  transition: transform 0.7s;
  transform-style: preserve-3d;
}
.box-shadow-sm {
  box-shadow: 0 0 14px -3px rgba(0, 0, 0, 0.2);
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front,
.flip-back {
  backface-visibility: hidden;
}
.flip-back {
  transform: rotateY(180deg);
}
.flip-card h5 {
  color: #f16c2e;
  font-size: 20px;
}

/* coming soon */
#hori {
  position: fixed;
  width: 200px;

  left: 0;
  top: 50%;
  height: 200px;
}
#hori2 {
  position: fixed;
  width: 200px;
  right: 0;
  top: 50%;
  height: 200px;
}
#heart {
  z-index: 100;
  position: absolute;
  top: 0px;
  right: 720px;
  color: red;
  display: block;
}
#sec {
  height: 700px;
  position: relative;
}

.industries_head h3 {
  font-family: "metropolis 500";
}

.industries_head img {
  transform: scale(0.7);
}
/* Add this to your global CSS */
.scroll-image-animate {
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.scroll-image-animate.in-view {
  /* transform: translateY(-20px);  */
  transform: scale(1);
}

.terms_condition {
  font-family: "metropolis 700";
}

.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
  position: relative;
}

.list {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
}

.animation-item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  overflow: hidden;
  padding: 10px 0;
}

.item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: 6rem;
  left: 3rem;
}

.item_content {
  background-color: #fff;
  color: #292929;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  /* padding: 3rem; */
  display: flex;
  position: relative;
  /* width: 50%; */
}
/* 
    .item_media {
      object-fit: cover;
      width: auto;
      height: auto;
    } */

@media (max-width: 768px) {
  .animation-item {
    display: flex;
    flex-direction: column !important;
    background: #fff;
  }
}

/* @media (max-width: 575.98px) {
      .heading {
        font-size: 2.5rem;
      }

      .animation-item {
        display: flex;
        flex-direction: column;
      }

      .item_content,
      .item_media {
        height: 50vh;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
      }

      .item_number {
        font-size: 0.5rem;
        top: 1.5rem;
      }
    } */

/* .pricing_iframe_scrollbar iframe::-webkit-scrollbar{
      display: none;
    } */

.mobile_app_container h1,
.mobile_app_container ul li strong {
  font-family: "metropolis 800";
}
.carousel-slide {
  transition: opacity 0.5s ease-in-out;
}
