@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@font-face {
  font-family: "Rumeno";
  src: url("../font/Rumeno-Regular.woff2") format("woff2"),
    url("../font/Rumeno-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.Open-Sans {
  font-family: "Open Sans", sans-serif;
}

:root {
  --main-font: "Rumeno", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--main-font);
  overflow-x: hidden;
}

.common-button {
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 400;
  border: 1px solid #eee;
  background: transparent;
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.6s;
  border-radius: 100px;
}

.common-button:hover {
  background-color: #214082;
  color: #fff;
  border: 1px solid #214082;
}

.common-button2 {
  color: #c9c9ce;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 20px;
  transition: 0.6s;
  position: relative;
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 100px;
}

.common-button2:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
}

.common-button2:hover:before {
  display: none;
}

.common-button2::before {
  height: 3px;
  background-color: #c9c9ce;
  position: absolute;
  content: "";
  width: calc(100% - -5%);
  bottom: -18px;
  left: -5px;
}

.common-button3 {
  font-size: 20px;
  padding: 10px 20px;
  background: transparent;
  border-radius: 500px;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  border: 1px solid #fff;
  transition: 0.6s;
}

.common-button3 img {
  width: 20px;
}

.common-button3:hover {
  background-color: #fff;
  color: #000;
}

.common-button3:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7461%)
    hue-rotate(80deg) brightness(92%) contrast(92%);
}

.sub-title {
  color: #ffffff;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 64px;
  text-transform: capitalize;
}

section {
  padding: 80px 0px;
}

.site-header {
    background: #ffffff;
    padding: 0px 0px;
    position: relative;
    z-index: 7;
    border-bottom: 1px solid #1e222212;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .right-nav {
  display: flex;
  align-items: center;
}

.site-header .nav-menu {
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.site-header .header-nav li a {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    padding: 35px 15px;
}

.site-header .header-nav .nav-item.dropdown .solutions-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #000000;
    right: 0;
    margin-inline: auto;
}
.site-header .header-nav li a img {
    filter: invert(1);
}
.header-cta a.common-button {
    border-color: #000;
    color: #000;
}
.header-cta a.common-button:hover {
    border-color: #000;
    color: #fff;
}

.site-header .header-logo img {
    width: 100%;
    max-width: 300px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta ul {
  line-height: normal;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-cta ul li a {
  font-size: 1.125rem;
  color: #9e9fa3;
  font-weight: 400;
  text-underline-offset: 4px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 64px;
}

.header-cta ul li a:hover {
  text-decoration: underline;
}

.header-shrink {
  width: 100%;
  position: fixed;
  z-index: 878;
  top: 0;
  left: 0;
  right: 0;
}

/* Hero Video Section */

.hero-video {
  position: relative;
  width: 100%;
  height: 90vh;
  /* full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Video */

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

/* Overlay for readability */

.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Content */

.hero-video .container {
  position: relative;
  z-index: 2;
}

.hero-video-content {
  max-width: 620px;
  color: #fff;
  text-align: left;
  width: 100%;
}

.hero-video-content h1 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.hero-video-content p {
  font-size: 18px;
  margin: 8px 0px;
  text-transform: capitalize;
}

/* .hero-video-content a {
    background: #214082;
    border: 1px solid #214082;
} */

/* .hero-video-content a:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
} */

.banner-bt {
  margin-top: 35px;
}

.about-waper {
  background: #000;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}

.about-waper::after {
  width: 100%;
  max-width: 58%;
  position: absolute;
  content: "";
  background-image: url(../images/about-us.png);
  height: 100%;
  right: 0px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 65%;
  background-position: right;
  top: 0px;
}

.about-content .sub-title {
  margin-bottom: 25px;
  display: block;
}

.about-content p {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 24px;
  width: 100%;
  max-width: 485px;
  border-left: 7px solid #214082;
  padding-left: 18px;
  margin-bottom: 35px;
}

.about-content .about-bx {
  padding-left: 20px;
}

.certifications-wrapper .section-title {
  margin-bottom: 40px;
}

.certifications-wrapper .cert-logo-box {
  background: #fff;
  padding: 25px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin: 0px 15px 0px 0px;
  min-height: 200px;
}

.certifications-wrapper .slick-slide img {
  width: 100%;
  max-width: 180px;
}

.last-bx img {
  height: 120px;
  object-fit: contain;
}

.certifications-wrapper {
  background-color: #f4f3f9;
}

.services-wrapper {
  background-color: #1e2222;
}

.overlay-bx {
  position: absolute;
  transition: 0.6s;
  bottom: -40px;
  text-align: center;
  width: 100%;
  z-index: 88;
}

.services-wrapper .section-title h2 {
  color: #fff;
  margin-bottom: 0px;
}

.certifications-slider .slick-prev,
.certifications-slider .slick-next {
  position: absolute;
  top: -34%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 0%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-right: 6px;
}

.certifications-slider .slick-prev {
  right: 50px;
}

.certifications-slider .slick-next {
  right: 0;
}

.certifications-slider .slick-prev:before,
.certifications-slider .slick-next:before {
  content: "";
  background-image: url(../images/Arrow\ right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 70%;
  width: 70%;
  object-fit: cover;
}

.certifications-slider .slick-prev:before {
  transform: scale(-1);
}

.slick-prev {
  left: unset;
  right: 43px;
}

.services-wrapper .section-title {
  margin-bottom: 40px;
  padding: 0;
}

.services-grid {
  display: grid;
  padding: 0px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid .service-card-img img {
  width: 100%;
  transition: 0.7s;
  max-width: 100%;
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: 0.7s;
  border-radius: 20px;
}

.service-card:hover .overlay-bx {
  bottom: 15px;
}

.service-card .overlay-bx span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  text-transform: capitalize;
  border-bottom: 2px solid;
}

.service-card-content * {
  color: #fff;
}

.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 15px 15px;
}

.service-card-content::before {
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  inset: 0;
  background: #000000;
  z-index: -1;
  background: linear-gradient(
    183deg,
    rgb(0 0 0 / 45%) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.service-card-content h3 {
  font-size: 25px;
  line-height: 28px;
  margin: 0px;
  max-width: 165px;
}

.service-card:hover img {
  transform: scale(1.1);
}

.ser-btn {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.clients-wrapper .sub-title {
  color: #000;
  margin-bottom: 5px;
  display: block;
}

.clients-wrapper .section-title {
  margin-bottom: 55px;
}

.clients-wrapper .clients-row {
    display: grid;
    column-gap: 30px;
    row-gap: 30px;
    justify-content: center;
    justify-self: center;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
}

.client-logo img {
  height: 110px;
  width: 110px;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #75757550;
  margin-bottom: 17px;
  padding: 11px;
  background-color: transparent;
  transition: 0.4s;
  flex: 0 0 48%;
}

.client-card:hover {
  background-color: #f2f2f2;
  transform: scale(1.1) !important;
}

.client-info {
  width: 100%;
  max-width: 350px;
}

.client-arrow img {
  width: 20px;
}

.client-card:last-of-type {
  margin: 0px;
  /* padding: 0px; */
  border: 0px;
}

.client-card:nth-of-type(11) {
  margin: 0px;
  border: 0px;
}

.consultants-wrapper {
  background-color: #000;
}

.consultants-image img {
  width: 436px;
  margin-inline: auto;
  height: 567px;
}

.consultants-image {
  text-align: center;
}

.consultants-content {
  padding-top: 55px;
}

.consultants-content .sub-title {
  margin-bottom: 25px;
  display: inline-block;
}

.consultants-content p {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 24px;
  width: 100%;
  max-width: 500px;
  border-left: 7px solid #214082;
  padding-left: 18px;
  margin-bottom: 35px;
}

.consultants-content a {
  padding-left: 20px;
}

.consultants-content .common-button2::before {
  content: "";
  width: calc(100% - 0%);
  left: 12px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}

.industrial-partners-wrapper .partner-logo img {
  width: 100%;
  max-width: 160px;
}

.industrial-partners-wrapper .sub-title {
  color: #000;
}

.site-footer {
  background-color: #1e2222;
  padding: 80px 0px 0;
  padding-bottom: 0px;
}

.join-team-content h3 {
  color: #fff;
  margin: 0px;
  font-size: 50px;
  text-align: center;
}

.join-team-content p {
  color: #fff;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  margin: 0px;
  padding: 15px 0px;
}

.join-btn a {
  width: max-content;
  margin-inline: auto;
}

.join-team-content {
  /* border-block-end: 1px solid #ffffff80;
  padding-bottom: 75px; */
  margin-bottom: 75px;
}
.footer-bottom-wrapper {
    display: none;
}
.footer-bottom-wrapper h2 {
  color: #fff;
}

.social-icons {
  display: flex;
  align-items: center;
  margin-top: 50px;
  border-bottom: 2px solid #ffffff;
  gap: 117px;
  padding-bottom: 45px;
}

.social-icon-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-card .icon i {
  color: #fff;
  font-size: 50px;
}

.platform-name p {
  margin: 0px;
  font-size: 20px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  max-width: 50px;
}

.footer-bottom-wrapper2 {
  background: #000;
}

.align-bx {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 35px 0px;
}

.footer-info-grid a img {
    width: 100%;
    max-width: 280px;
    filter: brightness(24);
}

.footer-info-grid p {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0px;
}

.footer-info-grid span,  .footer-info-grid span a{
  font-size: 17px;
  margin-top: 5px;
  display: block;
  color: #fff;
  text-decoration:none;
}

.social-links ul {
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
  list-style: none;
  gap: 15px;
  justify-content: end;
}

.social-links ul li a {
  color: #fff;
  font-size: 18px;
}

.social-links {
  display: flex;
  justify-content: end;
}

.social-links a {
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  color: #fff;
}

/* home2 css  */

#about-waper2::after {
  display: none;
}

#about-waper2 {
  position: relative;
}

#about-waper2::before {
    height: 680px;
    width: 680px;
    position: absolute;
    content: "";
    background: #000000c2;
    right: 15px;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0px 0px 31px #000000c4;
}

/* #about-waper2::before {
    width: 100%;
    max-width: 58%;
    position: absolute;
    content: "";
    background-image: url(../images/ab-bg-1.png);
    height: 100%;
    right: 0px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 52%;
    background-position: 92% 30%;
} */

#hero-slider-section .slick-dots {
  display: none !important;
}

#hero-slider-section {
  background: #000000;
  padding: 75px 0px;
}

/* 
.slick-slide img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    border: 1px solid #eeeeee67;
} */

#hero-slider-section .slide-text {
  opacity: 0;
  transition: 0.7s;
}

#hero-slider-section .slide-item.active-slide .slide-text {
  opacity: 1;
}

#hero-slider-section .container-fluid {
  width: 100%;
  max-width: 89%;
  margin-right: 0px;
  display: block;
  margin-left: auto;
}

#hero-slider-section .slick-slide {
  margin: 0px 30px 0px 0px;
  padding: 0px 5px 0px 0px;
}

#hero-slider-section .slide-item {
  position: relative;
  overflow: hidden;
}

#hero-slider-section .slide-item img {
  width: 100%;
  display: block;
}

#hero-slider-section .slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 50px 40px;
  transition: 0.7s;
  top: 0;
  text-align: left;
  width: 100%;
  /* opacity: 0; */
}

/* 
#hero-slider-section .slide-item:hover .slide-text {
    opacity: 1;
} */

#hero-slider-section p {
  font-weight: 400;
  font-size: 25px;
  text-transform: capitalize;
  margin-bottom: 30px;
  width: 100%;
  max-width: 900px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Adds ... at the end */
}

#hero-slider-section .slide-text::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  transition: 0.7s;
  background: #000000;
  background: linear-gradient(
    183deg,
    rgb(0 0 0 / 0%) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  inset: 0;
}

#hero-slider-section .slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 50px 40px;
  top: 0;
  text-align: left;
  width: 100%;
  transition: 0.7s;
}

#hero-slider-section .inner-text {
  position: relative;
  z-index: 888;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  position: absolute;
  top: 89%;
  transform: translateY(-50%);
  z-index: 5;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0;
  transition: all 0.3s ease;
  background: transparent;
  margin-right: 6px;
}

.hero-slider .slick-prev {
  left: unset;
  right: 33%;
}

.hero-slider .slick-prev:before {
  content: "←";
  font-size: 22px;
  color: #fff;
  line-height: 50px;
  display: block;
  text-align: center;
  transform: scale(-1);
}

.hero-slider .slick-next {
  right: 33%;
  margin-top: 36px;
}

.hero-slider .slick-next:before {
  content: "→";
  font-size: 22px;
  color: #fff;
  line-height: 50px;
  display: block;
  text-align: center;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  content: "";
  background-image: url(../images/Arrow\ right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: invert(1);
}

.hero-slider .slide-item {
  transition: 0.7s;
  overflow: hidden;
}

.hero-slider .slide-item img {
  transition: 0.7s;
}

.hero-slider .slide-item:hover img {
  transform: scale(1.1);
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Hexagon Icons */

.hex-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hex i {
  font-size: 40px;
  color: #fff;
}

.about-waper {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#binaryCanvas {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  top: 90px;
  right: 40px;
  margin-left: auto;
  width: 100%;
  max-width: 48%;
  height: 74%;
  border-radius: 28px;
}

/* Ensure content is above canvas */

.about-content {
    position: relative;
    z-index: 3;
}

.bg-imag img {
    position: relative;
    z-index: 2;
    left: 90px;
    width: 100%;
    max-width: 400px;
    top: -3px;
}

.client-logo {
  width: 127px;
  text-align: center;
}

.team-section {
  background-color: #1e2222;
}

.team-section h2 {
  color: #fff;
}

/* .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
} */

.team-section .team-bx {
    margin: 0px 10px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.team-overlay-bx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #214082;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
    transform: translate(0px, -100%);
}
.team-section .team-bx:hover .team-overlay-bx{
	opacity: 1;
	transform: translate(0px, 0%);
}

.team-bx .image-bx img {
  width: 100%;
  max-width: 100%;
  /* transition: 0.5s; */
}

.team-bx {
  border: 1px solid #ffffff26;
  display: block;
}

.team-bx .image-bx {
  margin: 10px 9.5px 0;
}

.team-text-bx {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    margin: 15px 0;
    position: relative;
}

.team-text-bx h3 {
  color: #fff;
  font-size: 22px;
  text-align: center;
}

.team-text-bx h3 {
  color: #fff;
  font-size: 22px;
  text-align: center;
  margin-bottom: 5px;
}

.team-text-bx span {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 17px;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.team-section .image-bx {
  position: relative;
}

.team-section .image-overlay {
  position: absolute;
  background: #1e2222;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 10px;
  top: 10px;
  transition: 0.4s;
  transform: scale(0);
  bottom: 10px;
  right: 10px;
}

.team-section .team-bx:hover .image-overlay {
  transform: scale(1);
}

.team-section .image-overlay sup {
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 2px solid#fff;
  padding-bottom: 12px;
}

.team-section .team-bx a {
  text-decoration: none;
}

.team-section .slick-next {
  right: -25px;
  display: none !important;
}

.team-section .slick-dots {
  bottom: -59px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.team-section .slick-dots li button {
    width: 30px;
    height: 8px;
    border-radius: 0%;
    background-color: #3b4444;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.team-section .slick-dots li button:hover {
  background-color: #666;
}

.team-section .slick-dots li.slick-active button {
  background-color: #f4f3f9;
  /* active color (blue) */
  /* transform: scale(1.3); */
}

.team-section .section-title {
  margin-bottom: 0px;
}

.team-section .section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-section .text-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  display: none;
  width: 95%;
  height: 100%;
  background: #1e2222;
  margin-inline: auto;
  left: 0;
  top: 0;
  align-items: center;
  padding-top: 29px;
  transition: 0.4s;
  transform: scale(0);
}

.team-section .text-overlay sup {
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 2px solid#fff;
  padding-bottom: 12px;
}

.team-bx:hover .text-overlay {
  transform: scale(1);
}

.team-bx .team-text-bx h3 {
  transition: 0.4s;
}

/* .team-bx:hover .team-text-bx h3 {
  transform: scale(0);
}

.team-bx .team-text-bx span {
  transition: 0.4s;
} */

/* .team-bx:hover .team-text-bx span {
  transform: scale(0);
} */

.team-bx .image-bx {
  overflow: hidden;
  transition: 0.4s;
}

.team-bx .image-bx img {
  transition: 0.4s;
  /* border: 2px solid #1e2222; */
}

.team-bx:hover .image-bx img {
  transform: scale(1.1);
}

.about-wrapper2 .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.about-wrapper2 .about-grid .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-wrapper2 .about-grid .about-image {
  height: 100%;
  margin-right: 20px;
}

.slick-header {
  padding: 50px 0px;
  text-align: center;
  background: #fff;
}

.page-header h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 64px;
  text-transform: capitalize;
}

.about-wrapper2 {
  background: #1e2222;
}

.about-wrapper2 .section-title h2 {
  color: #fff;
}

.about-text p {
  color: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.mission-section {
  background-color: #f4f3f9;
}

.mission-bx {
  text-align: center;
  padding: 20px 30px;
  width: 100%;
  font-size: 17px;
  filter: drop-shadow(10px 7px 10px rgba(0, 0, 0, 0.2));
  box-shadow: inset 2px 2px 2px white, inset -1px -1px 1px rgb(0 0 0 / 0%);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  outline: 2px solid #f4f3f9;
  outline-offset: -12px;
}

.mission-bx:hover {
  outline: 2px solid #1e2222;
}

.mission-section .container {
  width: 100%;
  max-width: 79%;
}

.mission-section .icon-bx img {
  width: 100%;
  max-width: 80px;
  padding: 8px;
}

.mission-section .text-bx h3 {
  margin-bottom: 5px;
}

.cta-section .cta-text {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.cta-section .cta-text .section-title h2 {
  font-size: 40px;
  line-height: 52px;
}

.cta-section .common-button3 {
  border: 1px solid #000;
  color: #000;
  width: max-content;
  margin-inline: auto;
  margin-top: 15px;
}

.cta-section .common-button3 img {
  filter: invert(1);
}

section.inner-banner.overlay-dark h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 64px;
  text-transform: capitalize;
}

.icon-bx-wraper {
  position: relative;
  padding: 18px;
  transition: all 0.2s;
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  background: #ffffff;
  height: 100%;
  border: 1px solid #dedede;
}

.icon-bx-wraper .icon-bx {
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #214082;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  flex: 0 0 60px;
  background: #1e2222;
}

.icon-bx-wraper .icon-bx i {
  font-size: 26px;
  color: #ffffff;
}

.icon-bx-wraper h5 {
  margin-top: 0;
  color: #000000;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 5px;
}

.icon-content a {
  color: #1e2222;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.contact-form-section {
  position: relative;
  background-attachment: fixed;
  background-image: url(https://www.techmansystems.com/images/Frame%202777.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.cater_form {
  padding: 30px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 0 2px #857b7b42;
  border: 1px solid #cacaca;
}

.cater_form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}
.cater_form .input_field, .cater_form .textarea_field {
    margin-bottom: 20px;
}
.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.textarea_field {
  width: 100%;
}

textarea#message {
  height: 100px;
}

.inner-banner {
  padding: 50px 0px;
  background: #fff;
}

.inner-banner .row {
  margin-top: 17px;
}

.contact-form-section textarea::placeholder {
  color: #313131e5;
  font-family: 400;
  text-transform: capitalize;
}

.contact-form-section input::placeholder {
  text-transform: capitalize;
  color: #313131e5;
  font-family: 400;
}

.cater_form .input_field input,
.cater_form .textarea_field textarea,
.cater_form .input_field select {
  width: 100%;
  width: 100%;
  border-radius: 0px;
  padding: 11px;
  border: 1px solid #9b9b9b8a;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  background-color: transparent;
}

.contact-form-section .section-title h2 {
  line-height: normal;
}

.common-button4 {
  border: 1px solid #000;
  color: #000;
  width: max-content;
  /* margin-inline: auto; */
}

.common-button4 img {
  filter: invert(1);
}

.common-button4:hover {
  background-color: #000;
  color: #fff;
}

.common-button4:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7500%)
    hue-rotate(141deg) brightness(104%) contrast(102%);
}

.submit-btn {
  display: flex;
  justify-content: end;
}
.g-recaptcha {
    max-height: 60px;
}
span.error {
    background: red;
    color: #fff;
    display: block;
    padding: 0 5px;
}
section.google-map {
  padding: 0px;
  line-height: 0px !important;
}

.google-map .container {
  padding: 0px;
  width: 100%;
  max-width: 100%;
}

.google-map iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
}

.team-section2 {
  background: #fff;
}

.team-section2 .team-text-bx h3 {
  color: #000;
}

.team-section2 .team-text-bx span {
  color: #000;
}

.team-section2 .team-grid2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 25px;
  row-gap: 30px;
}

.team-section2 .team-bx {
  border: 1px solid #1e2222;
  display: block;
  background: #fff;
  flex: 0 0 30%;
  margin: 0px;
}

.team-section2 .team-bx:hover h3 {
  color: #fff;
}



.team-section2 .team-bx:hover {
  background-color: #1e2222;
}

.clients-wrapper2 .client-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    margin: 0px;
    border: 1px solid #e3e3e3;
    min-height: auto;
    flex: 0 0 30%;
}

.clients-wrapper2 .client-arrow {
  display: none;
}

/* .clients-wrapper2 .clients-row .client-card:nth-child(1) {
    border-left: 0px;
} */

/* .clients-wrapper2 .clients-row .client-card:nth-child(4) {
  border-left: 0px;
}
.clients-wrapper2 .clients-row .client-card:nth-child(2) {
}

.clients-wrapper2 .clients-row .client-card:nth-child(7) {
  border-left: 0px;
}

.clients-wrapper2 .clients-row .client-card:nth-child(10) {
  border-left: 0px;
} */

.career-section {
  border-bottom: 2px solid #fff;
}

.solutions-list-style {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.solutions-list-style li {
  color: #fff;
}

.solutions-list-style li {
  position: relative;
  font-size: 16px;
  margin: 13px 0px;
  padding-left: 26px;
  color: #fff;
}

.solutions-list-style li::before {
  height: 11px;
  width: 11px;
  background-color: #fff;
  position: absolute;
  content: "";
  left: 4px;
  top: 7px;
  border-radius: 100px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.list-2 li {
  color: #000;
}

.list-2 li::before {
  outline: 2px solid #214082;
  background-color: #214082;
}

.about-parllex2 {
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-parllex2 .about-text2 {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  /* outline: 2px solid #f33335; */
  outline-offset: -7px;
}

/* ==========================
   SOLUTIONS DROPDOWN MENU
   ========================== */

.solutions-wrapper {
  position: absolute;
  top: 100%;
  left: -80%;
  background: #000;
  padding: 0px;
  border-radius: 0px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  z-index: 999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 0px;
  top: 97px;
  box-shadow: 0px 0px 0 5px #00000075;
}

/* .solutions-wrapper::before {
    height: 20px;
    width: 20px;
    background-color: #000;
    position: absolute;
    content: '';
    left: 45%;
    transform: translateX(-50%);
    top: -10px;
    transform: rotate(46deg);
} */

/* Show on hover */

.nav-item.dropdown:hover .solutions-wrapper {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* UL Reset */

.solutions-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solutions-wrapper ul li {
  margin-bottom: 0px;
}

.solutions-wrapper ul li:last-child {
  margin-bottom: 0;
}

.solutions-wrapper ul li a {
  display: block;
  padding: 10px 12px !important;
  color: #fff !important;
  transition: 0.3s;
  line-height: normal !important;
  border-bottom: 1px solid #eeeeee38;
  position: relative;
  z-index: 76;
}

.solutions-wrapper ul li a:hover {
  background: #214082;
  color: #fff !important;
}

.dropdown-toggle::after {
  display: none;
}

.access-top-wrapper {
  display: none;
}
.slide {
  display: none;
}
#openSlide {
  display: none;
}


.private-policy-cn h2 {
    position: relative;
    margin: 0 0px 18px 0px;
    padding: 10px 10px;
    max-width: 100%;
    font-size: 20px;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: 2px;
    background: #f4f3f9;
    color: #000;
    border-left: 5px solid #214082;
    background-clip: padding-box;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: none;
    line-height: inherit;
}
@media (max-width: 1269px) {
	.inner-banner .container {
		max-width: 100%;
	}
  .header-nav {
    display: none;
  }
  .site-header .nav-menu {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .access-top-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .access-top-wrapper a {
    padding: 10px 15px;
    background: #214082;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    border: 1px solid transparent;
    border: 0px;
  }
  .access-top-wrapper a:last-child {
    background: #000000;
    color: #fff;
  }
  .site-header {
    padding: 20px 15px;
  }

  .open-btn {
    background: #214082;
    border: none;
    border-radius: 0px;
    color: #fff;
    transition: 0.3s ease;
    height: 40px;
    width: 40px;
    font-size: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .open-btn:hover {
    background: #0ea5e9;
  }

.slide 
  .nav-menu li a {
    width: 100%;
    display: block;
    padding: 10px 10px;
    border-bottom: 1px solid #e3e3e329;
    text-decoration: none;
    font-size: 17px;
    text-transform: capitalize;
    color: #fff;
}
  /* Overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .slide-content ul {
    padding: 0;
    margin: 0px;
    list-style: none;
    margin-top: 100px;
  }

  .slide {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background: #214082;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 999;
    padding: 0px;
    box-sizing: border-box;
  }

  /* Active States */
  .overlay.active {
    display: block;
    opacity: 1;
  }
  .slide.active {
    transform: translateX(0);
  }
  .close-btn {
    background: #fff;
    border: none;
    color: #214082;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    font-weight: 700;
  }

  /* Slide Content */
  .slide-content {
    margin-top: 40px;
  }
  .slide-content h2 {
    margin-top: 0;
  }

  .slide {
    display: block;
  }

  #openSlide {
    display: block;
  }
  .header-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .menu-block {
    position: relative;
  }

.menu-block-dropdown {
    position: relative;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 999;
    margin-top: 0px !important;
    background: #0b2d75;
}
.dropdown-arrow {
    height: 30px;
    width: 30px;
    padding: 5px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(89%) saturate(7457%) hue-rotate(202deg) brightness(104%) contrast(112%);
}
span#Arrow-bx {
    position: absolute;
    right: 8px;
    top: 6px;
    background: #fff;
    border-radius: 50%;
}

  .menu-block-dropdown li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
  }


  .show-dropdown {
    display: block;
  }
}

@media (max-width: 991px) {
	.about-parllex2 {
		background-attachment: inherit;
		min-height: auto;
	}
	.clients-wrapper .clients-row {
		grid-template-columns: 1fr 1fr;
	}
	.team-info-img {
		margin-bottom: 25px;
	}
  .hero-video {
    width: 100%;
    height: 100%;
  }
  .hero-video-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .hero-video-bg {
    position: unset;
  }
  .hero-video {
    padding: 0px;
  }
  .hero-video {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .hero-video-bg video {
    height: 100%;
  }
  .banner-bt {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .hero-video-content h1 {
    font-size: 35px;
    color: #000;
  }
  .hero-video-content h1 br {
    display: none;
  }
  .hero-video-content p {
    color: #000;
  }
  .hero-video-content p br {
    display: none;
  }
  .hero-video::after {
    background: transparent;
  }
  .hero-video-content .common-button {
    border: 1px solid #000000;
    color: #000;
  }
  #binaryCanvas {
    display: none;
  }
  .about-waper .row .col-lg-6 + .col-lg-6 {
    display: none;
  }
  .about-content p {
    padding-left: 18px;
    margin-bottom: 22px;
    font-size: 20px;
    max-width: 100%;
  }
  .clients-wrapper .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  .services-wrapper .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  .certifications-wrapper .section-title {
    margin-bottom: 30px;
  }
  #about-waper2::before {
    display: none;
  }
  .about-waper {
    padding: 50px 0;
  }
  section {
    padding: 50px 0px;
  }
  .section-title h2 {
    font-size: 30px;
    line-height: normal;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-wrapper .section-title {
    margin-bottom: 30px;
  }
  .client-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .consultants-image img {
    width: 100%;
    margin-inline: auto;
    height: 100%;
    object-fit: cover;
  }
  .consultants-content p {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
  }
  .partners-grid {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .partner-logo {
    border: 1px solid #eee;
    padding: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
	.site-footer {
		padding: 50px 0px 0;
	}
  .footer-bottom-wrapper .section-title {
    text-align: center;
  }
  .sub-title {
    font-size: 20px;
  }
  .platform-name p {
    display: none;
  }
  .social-icons .icon {
    height: 45px;
    width: 45px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-icon-card .icon i {
    font-size: 24px;
  }
  .social-icons {
    margin-top: 35px;
    gap: 10px;
    padding-bottom: 40px;
    justify-content: center;
  }
  .footer-info-grid p {
    font-size: 18px;
  }
  #about-waper2 {
    height: auto;
    min-height: auto;
  }
  .join-team-content h3 {
    font-size: 40px;
  }
  .slick-header {
    padding: 35px 0px;
  }
  .about-wrapper2 .about-grid {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 35px;
    font-weight: 400;
    line-height: normal;
  }
  .about-wrapper2 .about-grid .about-image {
    height: 100%;
    margin-right: 0px;
  }

  .mission-section .container {
    width: 100%;
    max-width: 100%;
  }
  .team-section2 .team-bx {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .hero-video-content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .join-team-content p {
    font-size: 20px;

    margin: 0px;
    padding: 12px 0px;
    margin-bottom: 5px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .cta-section .cta-text .section-title h2 {
    font-size: 28px;
    line-height: normal;
  }
}

@media (max-width: 575px) {
  .site-header .header-logo img {
    max-width: 150px;
  }
  .hero-video-content {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .hero-video-content h1 {
    font-size: 27px;
  }
  .about-content .about-bx {
    margin-top: 30px;
  }
 .certifications-slider .slick-prev, .certifications-slider .slick-next {
    top: 118%;
}
  .certifications-wrapper {
    padding-bottom: 75px;
  }
  .certifications-slider .slick-prev {
    right: 200px;
  }
  .certifications-slider .slick-next {
    right: 150px;
  }
  .certifications-slider .slick-prev,
  .certifications-slider .slick-next {
    border: 1px solid #000;
  }
  .certifications-slider .section-title h2 {
    font-size: 30px;
    line-height: normal;
  }
  .certifications-wrapper .section-title {
    margin-bottom: 22px;
  }
  section {
    padding: 35px 0px;
  }
  .services-wrapper .section-title h2 {
    font-size: 26px;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 15px;
  }
  .service-card-content h3 {
    font-size: 23px;
    max-width: 100%;
  }
  .client-info h5 {
    font-size: 19px;
  }

  .clients-wrapper .clients-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .client-card {
    flex: 0 0 100%;
    width: calc(100% - 0%);
    flex-direction: column;
    border: 1px solid #eee;
    text-align: center;
  }
  .client-logo img {
    height: 80px;
    width: 80px;
  }
  .client-info h5 {
    font-size: 17px;
  }
  .client-card {
    height: 100%;
  }
  .client-card:last-of-type {
    border: 1px solid #eee !important;
  }
  .consultants-content {
    padding-top: 40px;
  }
  .sub-title {
    font-size: 18px;
  }
  .team-section .section-head {
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
  }
  .team-section .sub-title {
    font-size: 18px;
    text-align: center;
    display: block;
  }
  .team-section .slick-dots {
    bottom: -42px;
  }
  .site-footer {
    padding: 35px 0px 0;
  }
  .join-team-content h3 {
    font-size: 35px;
  }
  .join-team-content p {
    padding: 7px 0px;
    margin-bottom: 15px;
  }
  .align-bx {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
    justify-content: center;
    text-align: center;
    gap: 25px;
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }
  .site-footer {
    padding-bottom: 0px;
  }
  .consultants-wrapper {
    padding-bottom: 60px;
  }
  .certifications-wrapper .section-title h2 {
    font-size: 30px;
  }
  .common-button2::before {
    bottom: -8px;
    left: -5px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .join-team-content h3 {
    font-size: 30px;
  }
  .join-team-content {
    margin-bottom: 40px;
  }
}

.client-info h5 br {
    display: none;
}
