@font-face {
  font-family: pxGrotesk-Reg;
  src: url(./Assets/Fonts/Px\ Grotesk\ Regular.ttf);
}

@font-face {
  font-family: pxGrotesk-Bold;
  src: url(./Assets/Fonts/Px\ Grotesk\ Bold.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: pxGrotesk-Reg;
  color: #000;
}

body {
  overflow-x: hidden;
}

header {
  position: relative;
  width: 100%;
}

header nav {
  background-color: transparent !important;
  padding: 30px 20px !important;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  position: relative;
}

header nav .navbar-brand img {
  width: 100px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

header nav .container-fluid {
  /* align-items: flex-start !important; */
  justify-content: flex-start !important;
  /* gap: ; */
  padding: none !important;
  /* margin: auto; */
  width: 100%;
  /* position: relative; */
}

header nav .container-fluid .navbar-collapse {
  flex-grow: unset;
  margin: auto;
}

header nav .container-fluid .navbar-collapse > ul {
  /* width: ; */
  gap: 40px;
}

header nav .container-fluid .navbar-collapse > ul li .nav-link {
  font-family: pxGrotesk-Bold;
  font-size: 18px;
  /* font-weight: 800; */
  color: #fff;
}

header section.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

header section.banner .swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

header section.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  /* transform: scale(1); */
  background-color: #fff;
  opacity: 1;
  border-radius: 10px;
}

header
  section.banner
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #ff491b;
  width: 50px;
}

header section.banner-2 {
  background-image: url(./Assets/Image/banner-svg-01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

header section.banner-2 .vr {
  width: 3px;
  /* border: 1px solid #fff; */
  border-radius: 260%;
  background-color: #fff;
  opacity: 1;
  height: 60%;
  align-self: auto;
  margin: 10px;
  /* box-shadow: 0 0 2px 2px black; */
}

header section.banner-2 .banner2Content {
  display: flex;
  /* width: fit-content; */
  /* flex-wrap: wrap; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 260px;
  position: relative;
  left: 0%;
  animation: slide 1s ease 1;
}

@keyframes slide {
  0% {
    left: -100%;
  }

  100% {
    left: 0%;
  }
}

header section.banner-2 .banner2Content img {
  width: 80px;
  /* aspect-ratio: 113 / 89; */
}

header section.banner-2 .banner2Content h1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

body section.about {
  /* padding: 20px; */
  position: relative;
}

body section.about .aboutInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  position: relative;
  animation: aboutSlide 1s ease 1;
}

@keyframes aboutSlide {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

body section.about .aboutInfo > h1 {
  font-size: 52px;
  font-weight: 600;
  margin: 20px 0;
}

body section.about .aboutInfo > div {
  padding: 0 140px;
}

body section.about .aboutInfo .aboutPara {
  font-size: 30px;
  font-family: pxGrotesk-Reg;
  /* font-weight: 400; */
  color: #333333;
}

body section.about .aboutInfo .aboutPara h3 {
  display: inline-block;
  font-size: 30px;
  /* color: #000; */
  font-weight: 600;
}

body section.about .aboutInfo .aboutPara h3 strong {
  color: #fff;
  background-color: #ff491b;
}

body section.products {
  width: 100vw;
}

body section.products .Product {
  display: flex;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 0 20px;
}

body section.products .Product .ProductContent {
  display: flex;
  /* width: 50%; */
}

body section.products .Product .ProductContent > div {
  width: 50%;
  position: relative;
}

body section.products .Product .ProductContent .ProductImg img {
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

body section.products .Product .ProductContent:nth-child(1) .ProductImg img {
  animation: productImg1 1s ease 1 1s;
}

@keyframes productImg1 {
  0% {
    left: -110%;
  }

  100% {
    left: 0;
  }
}

body section.products .Product .ProductContent:nth-child(2) .ProductImg img {
  animation: productImg2 1s ease 1 1s;
}

@keyframes productImg2 {
  0% {
    right: -110%;
  }

  100% {
    right: 0;
  }
}

body section.products .Product .ProductContent .ProductDetails {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  padding: 0 80px;
  position: relative;
}

body section.products .Product .ProductContent .ProductDetails h1 {
  font-size: 50px;
  font-weight: 600;
}

body section.products .Product .ProductContent .ProductDetails p {
  text-align: justify;
  font-size: 14px;
  line-height: 2;
  color: #333333;
}

/* body section.products .Product .ProductContent .ProductDetails > a {
    width: fit-content;
    text-decoration: none;
    color: #000 ;
    font-size: 14px;
    border: 2px solid black;
    padding: 10px 20px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    background-color: transparent;
    
}

body section.products .Product .ProductContent .ProductDetails > a::before {
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    transition:all 0.4s ease;
    z-index: -1;
}

body section.products .Product .ProductContent .ProductDetails > a:hover {
    z-index: 2;
    color: #fff !important;
    transition:all 0.4s ease !important;
}

body section.products .Product .ProductContent .ProductDetails > a:hover::before {
    transform: scale(1);
} */

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor {
  font-size: 1em;
  color: #000 !important;
  border: 2px solid #000 !important;
  background: 0 0 !important;
  display: inline-block;
  transition: 0.4s;
  border-radius: 0 !important;
  position: relative;
  text-decoration: none;
  padding: 20px 70px;
}

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor:hover {
  z-index: 2;
  color: #fff !important;
  transition: all 0.4s ease !important;
}

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor:hover
  span {
  color: #fff;
  transition: 0.4s;
}

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor
  span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 99999;
  font-size: 14px;
}

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor:before {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

body
  section.products
  .Product
  .ProductContent
  .ProductDetails
  .video-display-btn
  .button_achor:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

body section.products .ProductCards {
  padding: 100px 30px;
  /* position: relative; */
}

body section.products .ProductCards .swiperProducts {
  position: relative;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide {
  background-color: #333333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  border-radius: 10px;
  position: relative !important;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.349);
  border-radius: 10px;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* transform: translate(-50%,-50%); */
  z-index: 1;
  color: #fff;
  padding: 90px 60px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */

  & h1 {
    color: #fff;
  }

  & p {
    color: #fff;
    text-align: justify;
    width: 70%;
    line-height: 1.2;
    font-size: 16px;
  }
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide.interactiveWhiteBoard {
  background-image: url(./Assets/Image/whiteboard-slide-new.jpeg);
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide.interactiveDigitalKiosks {
  background-image: url(./Assets/Image/kiosk-slide.jpeg);
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide.transDisplay {
  background-image: url(./Assets/Image/transparent-lcd-slide.jpeg);
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide.fundraisingDeck {
  background-image: url(./Assets/Image/digital-signage-new.jpeg);
}

/* body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn {
    align-self: flex-end;
  } */

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor {
  font-size: 2em;
  color: #fff !important;
  border: 2px solid #fff !important;
  background: 0 0 !important;
  display: inline-block;
  transition: 0.4s;
  border-radius: 0 !important;
  position: relative;
  text-decoration: none;
  /* padding: 20px 70px; */
  width: 160px;
  height: 60px;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor:hover {
  z-index: 2;
  color: #000 !important;
  transition: all 0.4s ease !important;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor:hover
  span {
  color: #000;
  transition: 0.4s;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor
  span {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 99999;
  font-size: 14px;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor:before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

body
  section.products
  .ProductCards
  .swiperProducts
  .swiper-wrapper
  .swiper-slide
  .ProductDetails
  .video-display-btn
  .button_achor:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

body section.products .ProductCards .swiperProducts .swiper-button-prev,
body section.products .ProductCards .swiperProducts .swiper-button-next {
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  box-shadow: 2px 2px 10px 3px rgb(221, 143, 122, 0.6);
}

body section.products .ProductCards .swiperProducts .swiper-button-prev::after,
body section.products .ProductCards .swiperProducts .swiper-button-next::after {
  content: "";
  position: relative;
  /* font-family: "Font Awesome 5 Free"; */
}

body section.products .ProductCards .swiperProducts .swiper-button-prev i,
body section.products .ProductCards .swiperProducts .swiper-button-next i {
  position: absolute;
  color: #000 !important;
  font-size: 30px;
  /* font-weight: 200; */
  /* box-shadow: inset 0 0 0 10px #ff0; */
}

/* body section.products .ProductCards .swiperProducts .swiper-button-prev i::after ,
body section.products .ProductCards .swiperProducts .swiper-button-next i::after {
    box-shadow: inset 0 0 0 10px #ff0;
    color: #ff0;
} */

/* body section.products .ProductCards .swiperProducts .swiper-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
} */

body section.testiLocate .testi {
  width: 100%;
  background-color: #1d1c1b;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

body section.testiLocate .testi::after {
  content: "";
  background-image: url(./Assets/Image/location-bar-new.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -38px;
  width: 100%;
  height: 38px;
  z-index: 99;
}

body section.testiLocate .testi .testiMain {
  width: 900px;
  position: relative;
}

body section.testiLocate .testi .testiMain .testiSwiper {
  overflow: hidden;
}

body section.testiLocate .testi .testiMain .testiSwiper .swiper-button-next,
body section.testiLocate .testi .testiMain .testiSwiper .swiper-button-prev {
  position: absolute;
  z-index: 999;
  font-size: 16px;

  & i {
    color: #fff;
    background-color: #0000006c;
    padding: 10px 14px;
    border-radius: 20px;
  }

  &::after {
    content: "";
  }
}

body section.testiLocate .testi .testiMain .testiSwiper .swiper-button-next {
  right: -40px;
}

body section.testiLocate .testi .testiMain .testiSwiper .swiper-button-prev {
  left: -40px;
}

body section.testiLocate .testi .testiSwiper .swiper-wrapper .swiper-slide {
  background-color: #fff;
  overflow: hidden;
}

body section.testiLocate .testi .testiSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

body section.testiLocate .locate {
  display: flex;
}

body section.testiLocate .locate .locateImg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: end;
  width: 50%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body section.testiLocate .locate .locateImg.KHI {
  background-image: url(./Assets/Image/karachi-bg.jpg);
}

body section.testiLocate .locate .locateImg.LHR {
  background-image: url(./Assets/Image/lahore-bg-new.jpg);
}

body section.testiLocate .locate .locateImg .locateContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  color: #fff;
  position: absolute;
  /* text-align: center; */
}

body section.testiLocate .locate .locateImg:nth-child(1) .locateContent {
  animation: khiSlide 1s ease;
}

@keyframes khiSlide {
  0% {
    left: -100%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

body section.testiLocate .locate .locateImg:nth-child(2) .locateContent {
  animation: lhrSlide 1s ease;
}

@keyframes lhrSlide {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

body section.testiLocate .locate .locateImg .locateContent i::before {
  color: #fff;
  font-size: 6rem;
}

body section.testiLocate .locate .locateImg .locateContent h1 {
  font-size: 3rem;
  font-weight: 600;
}

body section.testiLocate .locate .locateImg .locateContent span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

body section.testiLocate .locate .locateImg .locateContent span a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}

body section.testiLocate .locate .locateImg .locateContent span a:hover {
  color: #ff491b;
}

body footer {
  background-color: #1d1c1b;
  padding: 60px 60px 0 60px;

  & hr {
    color: #fff;
  }
}

body footer .footerMainContent {
  padding: 0 20px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

body footer .footerMainContent .footerSubMain.footerContentMain {
  width: 100%;
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #fff;
  /* gap: 20px; */
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr:nth-child(1)
  th {
  text-align: start;
  vertical-align: baseline;
  /* align-items: baseline; */
  /* justify-content: baseline; */

  &:nth-child(1) {
    width: 40%;
  }

  &:nth-child(2) {
    width: fit-content !important;
  }
  & h5 {
    margin: 0;
    vertical-align: baseline;
  }
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr
  th,
body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr
  td {
  padding-right: 20px;
  /* width: fit-content; */
  color: #fff;
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr:nth-child(3)
  td
  div {
  display: flex;
  flex-direction: column;

  & a {
    color: #fff;
    text-decoration: none;
  }
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr
  th:last-child,
body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr
  td:last-child {
  padding-right: 0;
}

body
  footer
  .footerMainContent
  .footerSubMain.footerContentMain
  table#footerSubContent
  tr
  th
  img {
  width: 80px;
}

body footer .footerMainContent .footerSubMain.mainSocial {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #fff;
}

body footer .footerMainContent .footerSubMain.mainSocial .social {
  display: flex;
  gap: 14px;
}

body footer .footerMainContent .footerSubMain.mainSocial h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

body footer .footerMainContent .footerSubMain.mainSocial a {
  font-size: 20px;

  & i::before {
    color: #fff;
    /* font-size: 16px; */
  }
}

body footer .footerCopyRight {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* color: #fff; */
}

body footer .footerCopyRight span {
  color: #fff;
  font-size: 12px;

  & i::before {
    color: #fff;
    /* font-size: 1px; */
  }

  & a {
    color: #fff;
    text-decoration: none;
    &:hover {
      text-decoration: underline;
    }
  }
}

body footer .footerUpwardBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body footer .footerUpwardBtn a.btn {
  /* background-color: #333333;
  border-radius: 20px; */
  border: none;
}

body footer .footerUpwardBtn a.btn i::before {
  color: #fff;
}

@media only screen and (max-width: 992px) {
  header nav .container-fluid .navbar-toggler {
    margin-left: auto;
    border: none;

    &:focus {
      box-shadow: none;
    }
  }

  header nav .container-fluid .navbar-toggler i::before {
    font-size: 36px;
    color: #fff;
  }

  /* header nav .container-fluid .collapse {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1D1C1B;
    margin: 0;
    width: 200px;
    height: 100vh;
  } */
}

@media only screen and (max-width: 768px) {
  /* body {
    width: 100vw;
    overflow: hidden;
  } */
  body section.testiLocate .testi .testiMain {
    width: 600px;
  }

  body header section.banner-2 .banner2Content {
    background-color: transparent;
    width: 120px;
  }

  body header section.banner-2 .banner2Content img {
    width: 50px;
  }

  body header section.banner-2 .banner2Content h1 {
    /* width: 100px; */
    font-size: 10px;
  }

  body section.about .aboutInfo h1 {
    font-size: 32px;
  }

  body section.about .aboutInfo div.aboutPara {

    font-size: 20px;

    & h3 {
      display: inline;
      font-size: 20px;
    }
  }

  body section.about .aboutInfo div.aboutSubPara {
    font-size: 12px;
  }
}
