@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
  --transition: all 0.5s ease-in-out;
}
/* shortcut css code start */
.relative {
  position: relative;
  overflow: hidden;
}
.flex {
  display: flex;
}
.flex-coloumn {
  display: flex;
  flex-direction: column;
}
.align-center {
  display: flex;
  align-items: center;
}
.justify-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-20 {
  gap: 20px;
}
.gap-50 {
  gap: 50px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-90 {
  padding-bottom: 90px;
}
.pt-30 {
  padding-top: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-100 {
  margin-top: 50px;
}
.mb-150 {
  margin-bottom: 150px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
  line-height: 30px;
}
.fw-600 {
  font-weight: 600;
}
.txt-primary {
  color: #be1e45;
}
.txt-center {
  text-align: center;
}
/* shortcut css code end */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #1c1c1c;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7em;
  font-size: 18px;
}
a {
  text-decoration: none;
  color: #1c1c1c;
  cursor: pointer;
}

ul li {
  list-style: none;
}

.js-cont {
  position: relative;
  width: 100%;
  height: 100%;
}

.js-scroll {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  will-change: transform;
}
.scroll-control {
  position: fixed;
  right: 20px;
  top: 25%;
  transform: translateX(-50%);
  z-index: 999;
}
.scroll-control span {
  cursor: pointer;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 15px 0;
  background-color: #564e4e;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
.scroll-control span:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.scroll-control .one.selected,
.scroll-control .two.selected,
.scroll-control .three.selected,
.scroll-control .one.selected,
.scroll-control .four.selected {
  background-color: #be1e45;
  opacity: 1;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.btn-primary {
  background: #be1e45;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 40px 0 #c8184426;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}
.btn-primary:hover {
  background: #ab143a;
  box-shadow: 0 8px 40px 0 #c818444d;
  transition: all 0.5s ease-in-out;
}
.transparent-btn {
  padding: 8px 20px;
  padding-right: 40px;
  border-radius: 8px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.transparent-btn img {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);

  transition: all 0.5s ease-in-out;
}
.transparent-btn:hover {
  border: 1px solid #be1e45;
  color: #fff;
  background: #be1e45;
  box-shadow: 0 8px 40px 0 #c8184426;
  transition: all 0.5s ease-in-out;
}
.transparent-btn:hover img {
  transform: translate(5px, -50%);
  filter: brightness(0) invert(1);
  transition: all 0.5s ease-in-out;
}

p {
  font-family: "Open Sans", sans-serif;
}
header {
  background: #fff;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
}
.logo-div {
  margin-left: -50px;
  height: 85px;
  width: 250px;
}
.logo-div .img-responsive {
  height: 100%;
}
.right-nav ul {
  display: flex;
  gap: 70px;
  padding-top: 25px;
}
.right-nav ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #263b90;
  transition: var(--transition);
}
.right-nav ul li .selected {
  color: #be1e45;
  text-decoration: underline;
  text-decoration-color: #be1e45;
}
.right-nav ul li a:hover {
  color: #be1e45;
  text-decoration: underline;
  text-decoration-color: #be1e45;
  transition: var(--transition);
}
.below-header-wrapper {
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.left-contents {
  margin-top: -20px;
}
.left-contents h1 {
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}
.left-contents h1 span {
  color: #be1e45;
}
.left-contents-details {
  color: #263b90;
  font-weight: 600;
  font-size: 19px;
}
.right-contents .img-holder {
  height: 500px;
  width: 500px;
  margin-left: 50px;
}
.right-contents .img-holder img {
  height: 100%;
}
.below-hero-header {
  background: #f8f8f8e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.below-header-p {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  text-align: justify;
  color: #be1e45;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.below-header-p-section {
  background: #f8f8f8e5;
}
.our-product-inside {
  width: 85%;
  margin: 0 auto;
}
.our-product-inside h5 {
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 700;
  line-height: 46px;
  color: #000000;
  text-decoration: underline;
}
.our-product-inside a {
  font-family: Open Sans;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  color: #273a90;
  padding-right: 20px;
  border-right: 1px solid #273a90;
}
#particles-js {
  width: 100%;
  position: relative;
  z-index: 999;
}
/* .below-header-p-section-below{
  background: #f8f8f8e5;
  height: 100px;
} */
.grey-section {
  background: #f2f3f8;
  /* padding: 50px 0; */
}
.service-header {
  font-size: 24px;
  font-weight: 700;
  color: #263b90;
  text-decoration: underline;
  text-decoration-color: #263b90;
  text-align: center;
}

.service-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  justify-content: center;
}
.service-tabs {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.red-gallery {
  padding: 14px;
  background: #be1e45;
  border-radius: 4px;
  width: 65px;
  height: 65px;
  box-shadow: 0 8px 40px 0 #7090b040;
  margin-bottom: 10px;
}
.red-gallery .img-responsive {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-out;
}
.service-sub-div.sub-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease-out;
}
.gallery .img-responsive {
  margin-top: 18.5px;
  height: 37px;
  width: 37px;
  transition: all 0.3s ease-out;
}
.gallery:hover {
  padding: 14px;
  background: #be1e45;
  border-radius: 4px;
  box-shadow: 0 8px 40px 0 #7090b040;
  height: 65px;
  width: 65px;
  transition: all 0.3s ease-out;
}
.gallery {
  height: 65px;
  width: 65px;
  transition: all 0.3s ease-out;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.gallery:hover .img-responsive {
  margin-top: 0;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
  height: 37px;
  width: 37px;
  transition: all 0.3s ease-out;
}
.white-section {
  background: #fff;
  border-radius: 4px;
}
.white-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 60px 0;
}
.tab {
  display: none;
}
.tab-active {
  display: block;
}
.active-a .gallery {
  padding: 14px;
  background: #be1e45;
  border-radius: 4px;
  box-shadow: 0 8px 40px 0 #7090b040;
  height: 65px;
  width: 65px;
}
.active-a .gallery .img-responsive {
  margin-top: 0;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
  height: 37px;
  width: 37px;
}
.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-three button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
.left-section .img-holder .img-responsive {
  height: 100%;
}
.left-section .img-holder {
  height: 220px;
  padding-right: 20px;
  border-right: 1px solid #aca6a6;
}
.right-section {
  padding: 0 20px;
}
.right-section p {
  line-height: 30px;
}
.right-section a {
  color: #263b90;
  font-size: 12px;
}
.trusted-by-section {
  display: flex;
  align-items: center;
}
.trusted-by-wrappers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  align-items: center;
  justify-items: center;
}
.trusted-by-logo {
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.trusted-by-logo:hover {
  transform: translateY(-5px);
  transition: all 0.5s ease-in-out;
}
.splide__pagination {
  bottom: -3em;
}
.splide__pagination__page {
  background: #d9d9d9;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 15px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 15px;
}
.splide__pagination__page.is-active {
  background: #263b90;
  transform: scale(1);
  z-index: 1;
}

footer {
  background: #272727;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  color: #fff;
}
.logo-info .img-holder {
  width: 300px;
  height: 150px;
}
.logo-info .img-holder .img-responsive {
  filter: brightness(0) invert(1);
  height: 100%;
}
.logo-info p {
  font-size: 16px;
  line-height: 30px;
  width: 75%;
}
.sub-footer {
  padding-top: 60px;
}
.sub-footer h2 {
  font-size: 20px;
  color: #be1e45;
  font-weight: 700;
  padding-bottom: 50px;
}
.sub-footer ul li {
  padding-bottom: 20px;
}
.sub-footer ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 25px;
}
.sub-footer ul a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.social-media {
  float: right;
  display: flex;
  gap: 40px;
  padding-top: 40px;
}
.social-media-box {
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright {
  padding: 10px 0;
}
.copyright p {
  font-size: 12px;
  color: #be1e45;
}
.product-h1 h1 {
  font-size: 50px;
  font-weight: 600;
  color: #263b90;
}
.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.product-card {
  padding: 15px;
  width: 530px;
  transition: all 0.5s ease-in-out;
}
.product-card:hover {
  background: #fff;
  box-shadow: 0px 100px 167px 0px #00041a08;
  border-radius: 12px;
}

.product-card:hover .product-name {
  color: #be1e45;
  transition: all 0.5s ease-in-out;
}
.gallery-img {
  width: 500px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;

  position: relative;
  z-index: 1;
}
.gallery-img img {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  height: 100%;
}
.product-card:hover img {
  filter: saturate(150%);
  transition: filter 0.5s ease;
}
.scanner-img {
  /* height: 300px; */
  background: #e2e2e2;
}
.inner-img {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 10%;
  z-index: 5;
  width: 400px;
}

.lower-card .product-name {
  color: #000000;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  padding: 15px 0;
  transition: all 0.5s ease-in-out;
}
.border-box {
  border: 1px solid #273a90;
  border-radius: 12px;
  padding: 10px;
}
.lower-card p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #273a90;
}
.lower-card .btn-primary {
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.product-heading-section {
  margin-top: 10px;
}
.product-headings-box {
  position: relative;
}
canvas {
  position: absolute;
  top: 0;
  z-index: 99;
}
.product-headings {
  background-repeat: no-repeat;
  padding: 180px 0;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  background-color: #263b90;
  background-size: cover;
}
.product-headings-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  padding-bottom: 30px;
  color: #fff;
  position: relative;
  z-index: 9999;
}
.product-heading-details {
  display: flex;
  gap: 10px;
  padding-bottom: 40px;
  position: relative;
  z-index: 999;
}
.product-heading-box {
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 999;
}
.popup-vdo {
  /* width: 400px;
  height: 200px; */
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
}
.popup-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
.currently-used h2 {
  color: #fff;
  padding-top: 30px;
  text-align: center;
  padding-bottom: 30px;
}
.currently-used-logo {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px;
}
.currently-used-logo .flex {
  gap: 20px;
}
.currently-used-logo-box {
  background: #fff;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  height: 50px;
  position: relative;
  z-index: 9999;
}
.currently-used-logo-box img {
  height: 100%;
  position: relative;
  z-index: 9999;
}

.currently-used-logo-box:hover {
  transform: translateY(-5px);
  transition: all 0.5s ease-in-out;
}
.product1-wrapper {
  padding-bottom: 50px;
  padding-top: 50px;
}
.product-img {
  height: 350px;
}
.product-img .img-responsive {
  height: 100%;
}

.product1-details h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  color: #be1e45;
  padding-bottom: 20px;
}

.product1-details h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  color: #be1e45;
  padding-bottom: 20px;
  width: 80%;
  color:black;
}
.product1-wrapper .flex {
  gap: 30px;
  padding: 45px 0;
  width: 100%;
}
.product1-img {
  width: 100%;
}
.product1-img img {
  height: 100%;
}

.product-detail-text {
  font-size: 20px;
  line-height: 30px;
  border-top: 1px solid #aca6a6;
  padding-top: 30px;
}
.feature-benefit-section {
  background: #f2f3f8;
  padding: 100px 0;
}
.feature-benefit-section .product1-details h2 {
  text-decoration: underline;
  text-decoration-color: #be1e45;
  padding-bottom: 40px;
}
.product1-details ul li {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #263b90;
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}
.product1-details ul li::before {
  content: ".";
  color: #263b90;
  display: inline-block;
  width: 1em;
  font-size: 30px;
  position: absolute;
  left: -20px;
  top: -8px;
}

.sub-headings-blue {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: #263b90;
  text-decoration: underline;
  text-decoration-color: #263b90;
  text-align: center;
}

.small-box-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.small-box {
  width: 50px;
  height: 50px;
  background: #d9d9d9;
}
.contact-box {
  background: #fff;
  padding: 150px 0;
}
.contact-box-wrapper {
  display: flex;
  gap: 150px;
  justify-content: center;
}
.contact-box-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #be1e45;
}
.btn-primary {
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 30px;
}
.contact-box1-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  padding: 0 100px;
  padding-bottom: 0;
  margin-top: -150px;
}
.contact-box1 {
  border: 1px solid #f2f3f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
.iti__country-list {
  font-size: 15px;
}
.intl-tel-input,
.iti {
  width: 100%;
}
.contact-box1-content {
  font-size: 16px;
  color: #263b90;
}
.circle-container {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #be1e45;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 135px;
}
.contact-box1:hover {
  background: #f2f3f8;
  transition: var(--transition);
}
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-left-header {
  font-size: 38px;
  font-weight: 600;
  line-height: 48px;
  color: #be1e45;
  padding-bottom: 20px;
}
.contact-left-content p {
  font-size: 12px;
  line-height: 15px;
  padding-bottom: 30px;
  width: 60%;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.name-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-wrapper1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #564e4e;
  padding-bottom: 5px;
}
.input-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-controller {
  background: #f2f3f8;
  border-radius: 4px;
  outline: none;
  border: none;
  height: 35px;
  padding-left: 10px;
}
textarea {
  resize: none;
  height: 110px !important;
  padding-top: 8px;
  font-family: "Montserrat", sans-serif;
}
#phn {
  padding-left: 90px;
}
#success-message {
  display: none;
  color: green;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}
.contact-form .btn-primary {
  color: #fff;
  outline: none;
  border: none;
  padding: 12px 0;
  font-size: 16px;
}
/* for mobile menu */
.ham-icon {
  display: none;
}

.mobile-menu-contents {
  display: none;
}
.our-team-section h1 {
  font-weight: 600;
  font-size: 54px;
  text-align: center;
  color: #263b90;
  padding-bottom: 70px;
  padding-top: 70px;
}
.our-team-wrapper1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}
.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 75%;
  margin: 0 auto;
}
.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  row-gap: 70px;
  padding-bottom: 70px;
}
.team-card {
  padding: 15px;
  border: 0.5px solid #273a90;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
}
.team-name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #be1e45;
  font-weight: 700;
}
.team-detail {
  font-size: 14px;
  color: #263b90;
  font-style: italic;
}
.upper-team-card {
  width: 190px;
}
.bread-crumbs {
  display: flex;
  gap: 8px;
}
.bread-crumbs a {
  font-size: 14px;
  line-height: 28px;
  color: #403f3f;
  font-family: Open Sans;
}
.bread-crumbs .active {
  color: #263b90;
  font-weight: 600;
}
.services-section {
  background-color: #eeeeec;
}
.services-section h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #be1d45;
}
.services-section h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 49px;
  color: #263b90;
}
.service-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.service-box {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 8px 40px 0px #7090b040;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.service-box h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #be1d45;
  padding-bottom: 12px;
  transition: all 0.5s ease-in-out;
}
.service-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #3a3a3a;
  transition: all 0.5s ease-in-out;
}
.service-box img {
  transition: all 0.5s ease-in-out;
}
.service-box:hover {
  background: #be1d45;
  transition: all 0.5s ease-in-out;
}
.service-box:hover h6 {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.service-box:hover p {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.service-box:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1300px) {
  .container {
    width: 90%;
  }
  .left-contents h1 {
    width: 90%;
  }

  .below-header-p {
    margin-top: -30px;
  }

  .circle-container {
    left: 45%;
  }
  .product-wrapper {
    gap: 30px;
  }
  .product-card {
    width: 430px;
  }
  .gallery-img {
    width: 400px;
    height: 330px;
  }
  .upper-team-card {
    width: 150px;
  }
  .team-card {
    padding: 5px;
    height: 260px;
  }
  .inner-img {
    width: 320px;
  }
  .right-contents .img-holder {
    height: 450px;
    width: 450px;
  }
  .left-contents h1 {
    font-size: 32px;
  }
  .trusted-by-wrappers {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .left-contents h1 {
    width: 97%;
  }
  .contact-box1-wrapper {
    gap: 40px;
    padding: 0 50px;
  }
  .responsive-map {
    overflow: hidden;
    position: relative;
    width: 500px;
  }
  .right-contents .img-holder {
    height: 400px;
    width: 400px;
  }
  .below-header-wrapper {
    padding-top: 110px;
  }
  .left-contents-details {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .scroll-control {
    display: none;
  }
  .below-header-wrapper {
    padding-top: 75px;
  }
  .pb-30 {
    padding-bottom: 20px;
  }
  .pb-40 {
    padding-bottom: 30px;
  }
  .left-contents h1 {
    font-size: 30px;
    line-height: 42px;
    padding-top: 105px;
    width: 100%;
  }
  .splide__arrow--prev {
    left: -1em;
  }

  .splide__arrow--next {
    right: -1em;
  }
  .trusted-by-wrappers {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    color: #fff;
    gap: 10px;
  }
  .logo-info .img-holder {
    width: 250px;
    height: 150px;
    margin-left: -50px;
  }
  .logo-info p {
    font-size: 16px;
    line-height: 30px;
    width: 90%;
  }
  .contact-box1-wrapper {
    gap: 25px;
    padding: 0;
  }
  .product-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .responsive-map {
    width: 100%;
  }
  .responsive-map iframe {
    width: 100%;
  }
  .product-card {
    width: 350px;
  }
  .gallery-img {
    width: 320px;
    height: 270px;
  }
  .lower-card .product-name {
    font-size: 24px;
    line-height: 34px;
    padding: 10px 0;
  }
  .lower-card p {
    font-size: 11px;
  }
  .border-box {
    padding: 8px;
  }
  .product-h1 h1 {
    font-size: 35px;
  }
  .pb-50 {
    padding-bottom: 30px !important;
    padding-left: 12px;
  }
  .inner-img {
    width: 280px;
  }
  .right-contents .img-holder {
    height: 340px;
    width: 340px;
  }
  .left-contents h1 {
    font-size: 26px;
    padding-top: 90px;
    width: 100%;
  }
  .left-contents-details {
    font-size: 16px;
  }
  .transparent-btn {
    font-size: 14px;
  }
  .btn-primary {
    font-size: 14px;
  }
  .below-header-p {
    font-size: 22px;

    text-align: normal;
  }
}
@media (max-width: 808px) {
  .product-heading-section {
    /* height: 350px !important; */
  }
  .product-headings {
    margin-top: 0;
  }

  .product1-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    padding-top: 40px;
  }

  .small-text {
    padding-bottom: 20px;
  }
  .product1-details h2 {
    padding-bottom: 10px;
  }
  .product-detail-text {
    padding-top: 25px;
  }
  .product1-details ul {
    gap: 20px;
  }

  .small-box-wrapper {
    gap: 25px;
  }
  .small-box {
    width: 40px;
    height: 40px;
    background: #d9d9d9;
  }
  .mb-70 {
    margin-bottom: 0;
  }
  .product-card {
    width: 325px;
  }
  .gallery-img {
    width: 295px;
    height: 235px;
  }
  .lower-card .product-name {
    font-size: 22px;
  }
  .lower-card p {
    font-size: 10px;
  }
  .product-heading-section {
    margin-top: 0;
  }
  .bottom-row {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
  }
  .top-row {
    width: auto;
    margin: 0;
  }
  .our-team-section h1 {
    font-size: 36px;
    padding: 50px 0;
  }
  .our-team-wrapper1 {
    gap: 50px;
  }
  .inner-img {
    width: 250px;
  }
  .right-contents .img-holder {
    height: 325px;
    width: 310px;
    margin-left: 25px;
  }
  .left-contents h1 {
    font-size: 24px;
    padding-top: 60px;
  }
  .below-header-wrapper {
    padding-top: 80px;
  }
  .trusted-by-wrappers {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .our-product-inside a {
    font-size: 20px;
    line-height: 30px;
  }
  .services-section h2 {
    font-size: 30px;

    line-height: 45px;
  }
  .services-section h3 {
    font-size: 28px;
  }
  .service-section-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .mt-50 {
    margin-top: 20px;
  }
  .mb-100 {
    margin-bottom: 50px;
  }
  .pb-30 {
    padding-bottom: 20px;
  }
  .below-header-wrapper {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
  .left-contents h1 {
    font-size: 28px;
    line-height: 40px;
    padding-top: 75px;
  }

  .trusted-by-wrappers {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
  }
  .below-header-p {
    font-size: 18px;
    line-height: 30px;
  }
  .white-section-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    padding-bottom: 30px;
  }
  .left-section .img-holder {
    border-right: none;
    width: 260px;
    margin: 0 auto;
  }
  .splide__arrow--prev {
    left: 1em;
  }

  .splide__arrow--next {
    right: 1em;
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .copyright {
    padding: 10px 0;
  }
  .copyright p {
    font-size: 10px;
  }

  .mobile-menu-contents {
    display: block;
    padding: 20px;
    background: #fff;
    color: var(--primary);
    position: fixed;
    left: -250px;
    opacity: 0;
    top: 0;
    /* overflow: hidden; */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    height: auto;
    width: 100%;
    box-shadow: 0 14px 32px rgb(0 0 0 / 10%);
    overflow-y: scroll;
    z-index: 99999;
  }

  .mobile-menu-contents.active {
    visibility: visible;
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .ham-icon {
    display: block;
    width: 25px;
    padding-top: 30px;
  }
  .logo-div {
    margin-left: -50px;
    height: 85px;
    width: 250px;
  }
  .logo-holder {
    margin-left: -50px;
    height: 100px;
    width: 200px;
    margin-top: -30px;
  }
  .right-nav {
    display: none;
  }
  .cross-icon {
    width: 25px;
    margin-top: -10px;
  }
  .menu-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-contents {
    font-weight: 600;
    color: #263b90;
    padding-bottom: 30px;
  }
  .header-contents a {
    color: #263b90;
  }
  .mobile-menu-contents .flex-coloumn {
    align-items: flex-end;
  }
  .sub-footer ul li {
    padding-bottom: 12px;
    font-size: 15px;
  }
  .sub-footer ul li a {
    font-size: 15px;

    padding-bottom: 20px;
  }
  .logo-info p {
    font-size: 15px;
  }
  .sub-footer {
    padding-top: 20px;
  }
  .sub-footer h2 {
    font-size: 18px;
    padding-bottom: 22px;
  }
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-h1 h1 {
    font-size: 25px;
  }
  .contact-box1-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-box1 {
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .circle-container .location-img {
    width: 14px;
  }
  .contact-left-header {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 15px;
  }
  .contact-left-content p {
    padding-bottom: 15px;
    width: 75%;
  }
  .contact-form-wrapper1 {
    gap: 15px;
  }
  .contact-top {
    height: 500px !important;
    margin-top: 120px;
  }
  .responsive-map {
    width: 100%;
    height: 350px;
  }
  .product-heading-box {
    padding: 8px;
    font-size: 12px;
  }
  .product-heading-details {
    gap: 7px;
  }
  /* .product-heading-section {
    height: 450px !important;
  } */
  .product-headings {
    padding-top: 80px;
  }
  .product-headings-name {
    font-size: 20px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .product1-details h2 {
    font-size: 20px;
    padding-bottom: 5px;
  }
  .currently-used h2 {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .popup-vdo {
    width: 350px;
    height: 180px;
  }
  .small-text {
    padding-bottom: 10px;
  }
  .product-detail-text {
    font-size: 16px;
    line-height: 26px;

    padding-top: 20px;
  }
  .fs-20 {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-benefit-section {
    padding: 50px 10px;
  }
  .product1-details ul li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 20px;
  }
  .pb-70 {
    padding-bottom: 35px !important;
  }
  .product1-details ul {
    gap: 0px;
  }
  .sub-headings-blue {
    font-size: 28px;
    line-height: 35px;
  }
  .small-box-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  .contact-box-wrapper .btn-primary {
    font-size: 16px;
    padding: 10px 30px;
    width: 160px;
    display: flex;
    justify-content: center;
  }
  .contact-box-wrapper {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .contact-box-text {
    font-size: 27px;
    line-height: 35px;
  }
  .used-by-section {
    /* height: 550px !important; */
    padding-top: 0px;
  }
  .contact-box-wrapper .btn-primary {
    font-size: 14px;
    padding: 10px 25px;
    width: 150px;
  }
  .product-card {
    width: 100%;
  }
  .gallery-img {
    width: 100%;
  }
  .product1-details h1 {
    font-size: 24px;

    line-height: 35px;
    padding-bottom: 10px;
  }
  .product1-wrapper-section {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .product1-wrapper {
    padding-bottom: 0;
    padding-top: 30px;
  }
  .bottom-row {
    grid-template-columns: 1fr;
    row-gap: 30px;
    gap: 30px;
  }
  .top-row {
    width: auto;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .our-team-section h1 {
    font-size: 28px;
    padding: 30px 0;
  }
  .our-team-wrapper1 {
    gap: 30px;
  }
  .inner-img {
    left: 15%;
  }
  .left-contents h1 {
    font-size: 22px;
    line-height: 35px;
    padding-top: 45px;
  }
  .left-contents {
    margin-top: 0px;
    grid-row: none;
  }
  .right-contents .img-holder {
    height: 250px;
    width: 250px;
  }
  .left-contents h1 {
    font-size: 22px;
    line-height: 35px;
    padding-top: 35px;
  }
  .below-header-wrapper {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    gap: 20px;
  }
  .responsive-map {
    height: 270px;
    margin-bottom: 50px;
  }
  .product1-details ul li::before {
    left: -10px;
    top: -8px;
  }
  .service-tabs {
    gap: 14px;
  }
  .service-sub-div.sub-services .fs-16 {
    display: none;
  }
  .left-section .img-holder {
    width: 180px;
    height: 135px;
  }
  .service-tabs-wrapper {
    gap: 25px;
  }
  .active-a .gallery {
    height: 58px;
    width: 58px;
  }
  .gallery {
    height: 58px;
    width: 58px;
  }
  .gallery .img-responsive {
    height: 30px;
    width: 30px;
  }

  .right-section .fs-16 {
    font-size: 14px;
    line-height: 25px;
  }
  .trusted-by-logo img {
    width: 100%;
    object-fit: cover;
  }
  .trusted-by-logo {
    width: 75px;
  }
  .trusted-by-wrappers {
    gap: 15px;
  }
  .below-header-p {
    margin-bottom: 30px;
  }
  .our-product-inside .flex {
    flex-direction: column;
  }
  .our-product-inside h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .our-product-inside a {
    font-size: 18px;
    line-height: 30px;
    border-right: none;
  }
  .gap-20 {
    gap: 10px;
  }
  .services-section h2 {
    font-size: 22px;
    line-height: 35px;
  }
  .services-section h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .service-box h6 {
    font-size: 18px;
    font-weight: 600;

    padding-bottom: 12px;
  }
  .service-box {
    padding: 20px 10px;

    gap: 12px;
  }
  .service-box p {
    font-size: 14px;

    line-height: 25px;
  }
  .service-box img {
    width: 40px;
  }
  .services-section {
    margin-top: 0;
  }
}
@media (max-width: 395px) {
  .right-contents .img-holder {
    height: 200px;
    width: 210px;
    margin-left: 30px;
  }
  .left-contents h1 {
    font-size: 20px;
    padding-top: 25px;
  }
  .product1-wrapper {
    padding-bottom: 0;
    padding-top: 30px;
  }
  .pb-30 {
    padding-bottom: 12px;
  }
  .pb-40 {
    padding-bottom: 22px;
  }
  .name-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1600px) {
  .below-header-wrapper {
    padding-top: 120px;
  }
}
@media (min-width: 1708px) {
  .below-header-wrapper {
    padding-top: 150px;
  }
}
@media (min-width: 2008px) {
  .below-header-wrapper {
    padding-top: 190px;
  }
}
