* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body {
  /* font-family: "industry", sans-serif; */
  font-family: "Titillium Web";
  /* font-family: "poppins", sans-serif; */
  color: #000;
  font-size: 14px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  transition: all 0.4s ease-in-out;
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 1px solid #555555;
}

p {
  font-size: 14px;
  /* font-family: "poppins", sans-serif; */
  /* font-family: "industry", sans-serif; */
  font-family: "Titillium Web";
  line-height: 24px;
  color: #424242;
}

a {
  font-size: 14px;
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  /* font-family: "industry", sans-serif; */
  font-family: "Titillium Web";
  /* font-family: "poppins", sans-serif; */
}

a:hover {
  text-decoration: none;
  outline: none;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

li {
  font-size: 14px;
  /* font-family: "poppins", sans-serif; */
  /* font-family: "industry", sans-serif; */
  font-family: "Titillium Web";
  line-height: 24px;
  color: #424242;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5 {
  /* font-family: "industry", sans-serif; */
  font-family: "Titillium Web";
  /* font-family: "Raleway", sans-serif; */
  margin: 0px;
}

p {
  margin: 0px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.justify-center {
  justify-content: center;
}

.mt-20 {
  margin-top: 20px;
}

.align-item-center {
  align-items: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

.site-width {
  max-width: 1250px;
  margin: 0px auto;
}

@media screen and (max-width: 1518px) and (min-width: 1368px) {
  .site-width {
    max-width: 1372px;
    padding: 0px 40px;
  }
}

@media screen and (max-width: 1708px) and (min-width: 1519px) {
  .site-width {
    max-width: 1552px;
    padding: 0px 40px;
  }
}

@media screen and (max-width: 1920px) and (min-width: 1709px) {
  .site-width {
    max-width: 1642px;
    padding: 0px 40px;
  }
}

@media screen and (max-width: 2500px) and (min-width: 1921px) {
  .site-width {
    max-width: 1842px;
    padding: 0px 40px;
  }
}

@media screen and (max-width: 1280px) and (min-width: 1024px) {
  .site-width {
    padding: 0px 40px;
    max-width: 1200px;
    padding: 0px 40px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 888px) {
  .site-width {
    padding: 0px 40px;
  }
}

@media screen and (max-width: 888px) and (min-width: 769px) {
  .site-width {
    padding: 0px 40px;
  }
}

@media screen and (max-width: 768px) {
  .site-width {
    padding: 0px 20px;
  }
}

/* Loader  */
.pageWrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #000b1c;
  z-index: 1001;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #002e74;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0075ea;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #f2f3fffa;
  z-index: 1000;
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* Loader end */

/* Header */
.header-section {
  position: relative;
  z-index: 111;
  transition: 0.4s ease-out;
  background: transparent;
}

.header-main-wrap {
  display: flex;
  margin-top: 0px;
  align-items: center;
}

.logo-section {
  width: 165px;
  position: relative;
  top: 0px;
  padding: 10px;
  /* background: #ffffff; */
  background: transparent;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */
  z-index: 11;
  transition: 0.4s ease-in-out;
}

.logo-section img {
  width: 200px;
  transition: 0.4s ease-in-out;
  /* filter: invert(2) grayscale(2) brightness(10) contrast(9); */
}

.main-navigation {
  margin: auto 0px auto auto;
  transition: 0.4s ease-in-out;
}

.main-navigation ul.menu-bar-ul {
  display: flex;
  position: relative;
  left: 0px;
}

.main-navigation ul li a.navlinks {
  padding: 18px 10px;
  display: block;
  color: #fff;
  transition: 0.4s ease-in-out;
  font-weight: 600;
}

.main-navigation ul li a {
  font-size: 16px;
}

.menu-has-child {
  position: relative;
}

.main-navigation ul li.menu-has-child:hover .drop-down {
  top: 60px;
  visibility: visible;
  opacity: 1;
}

.main-navigation ul li.menu-has-child a.navlinks i {
  transition: 0.4s ease-in-out;
  font-size: 14px;
  position: relative;
  top: 0px;
  margin-left: 3px;
}

/* .main-navigation ul li.menu-has-child:hover a.navlinks i {
    transform: scaleY(-1);
} */

.drop-down {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 70px;
  width: 300px;
  background: #ffffffe6;
  padding: 4px 14px 4px 14px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.drop-down li a.sub-navlinks {
  display: block;
  line-height: 38px;
  border-bottom: 1px solid #c7c7c7;
  color: #111111;
}

.drop-down li:last-child a.sub-navlinks {
  border-bottom: none;
}

.drop-down li a.sub-navlinks i {
  margin-right: 5px;
  font-size: 14px;
}

.drop-down li a.sub-navlinks:hover {
  padding-left: 8px;
}

.toggle-btn {
  padding: 12px 6px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #ffffff2b;
  position: relative;
  z-index: 111;
  cursor: pointer;
}

.toggle-btn span {
  width: 26px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 3px 3px;
  transition: 0.4 ease-out;
}

.toggle-btn span:nth-child(2) {
  width: 22px;
  margin-left: 6px;
}

.toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
  position: relative;
}

.toggle-btn.active span:nth-child(3) {
  transform: rotate(314deg);
  top: -5px;
  position: relative;
}

.toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.the-sider-bar {
  position: fixed;
  top: 0px;
  right: -100%;
  transition: 0.4s ease-in-out;
  width: 100%;
  height: 100vh;
  background: #3d3e64;
  z-index: 11;
}

.the-sider-bar.show {
  right: 0%;
  transition: 0.5s ease-out;
}

.side-wrapper {
  max-width: 65%;
  width: 100%;
  margin: auto;
  position: relative;
  top: 16%;
  bottom: 25%;
}

.side-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-navigation ul li a {
  color: #fff;
  padding: 10px 0px;
  display: block;
  font-size: 18px;
}

.side-drop-down {
  display: none;
}

.side-social-links ul li a {
  color: #fff;
}

.side-social-links ul li a i {
  display: block;
  padding: 10px;
}

.side-contanct-wrap {
  margin-top: 20px;
}

.side-contanct-wrap h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0ff;
}

.side-contanct-wrap ul {
  display: grid;
  justify-content: flex-start;
  align-items: center;
}

.side-contanct-wrap ul li {
  margin: 4px;
}

.side-contanct-wrap ul li i {
  color: #cbcbcb;
  margin-right: 6px;
}

.side-contanct-wrap ul li a {
  color: #fff;
}

.header-section.sticky {
  position: fixed;
  top: 0px;
  transition: 0.4s ease-out;
  width: 100%;
  background: #D3F1FD;
  padding: 0px 0px;
  padding-top: 0px;
}

.header-section.sticky .logo-section {
  position: inherit;
  width: 110px;
  box-shadow: none;
}

.header-section.sticky .main-navigation ul li a.navlinks {
  color: #000;
  padding: 10px 16px;
}

.header-section.sticky .main-navigation ul.menu-bar-ul {
  left: 0px;
}

.header-section.sticky .main-navigation ul li.menu-has-child:hover .drop-down {
  top: 55px;
}

.header-section.sticky .logo-section img {
  /* filter: none; */
}

.header-section.sticky .topHeaderSocial ul li a.topContactLinks {
  color: #fff;
}

.header-section.sticky .topHeader.Inheader {
  top: 0px;
}

.header-section .toggle-btn {
  background: #f1f1f185;
  display: none;
}

.header-section .toggle-btn span {
  background-color: #002f75;
}

.topHeader {
  background: #000b1c;
  padding: 5px 0px;
}

.topHeader.Inheader {
  background: transparent;
  position: relative;
  top: -6px;
  transition: 0.4s ease-in-out;
}

.topHeaderWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topHeaderSocial ul {
  display: flex;
  align-items: center;
  color: #fff;
}

.topHeaderSocial ul li {
  color: #fff;
  transition: 0.4s ease-in-out;
  margin: 0px 5px 0px 5px;
}

.topHeaderSocial ul li a.topContactLinks {
  color: #fff;
  line-height: 24px;
}

.topHeaderSocial ul li a.topContactLinks i {
  color: #fff;
  margin-right: 5px;
  position: relative;
  top: 1px;
  font-size: 12px;
}

.topHeaderSocial ul li a.topContactLinks i.fa-envelope {
  font-size: 12px;
}

.topHeaderSocial ul li a.topSocialLinks {
  color: #fff;
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
}

.topHeaderSocial ul li a.topSocialLinks i {
  position: relative;
  z-index: 2;
  transition: 0.4s ease-in-out;
  line-height: 24px;
}

.topHeaderWrapper a,
.topHeaderWrapper p,
.topHeaderWrapper li {
  font-size: 12px;
  color: #fff;
}

.topHeaderSocial ul li a.topSocialLinks::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  background: #fff;
  border-radius: 100%;
  z-index: 1;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
  margin: auto;
}

.topHeaderSocial ul li a.topSocialLinks:hover:before {
  visibility: visible;
  opacity: 1;
  width: 22px;
  height: 22px;
}

.topHeaderSocial ul li a.topSocialLinks:hover i {
  color: #000;
}

/* Banenr */
.banner-carousel {
  position: relative;
  margin-top: -88px;
}

.banner-slider-wrapper {
  position: relative;
}

.banner-slider-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #00000061, #00000012);
  z-index: 1;
}

.banner-content-wrapper {
  z-index: 11;
  position: absolute;
  width: 100%;
  height: fit-content;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  right: 0;
  display: flex;
  align-items: center;
}

.banner-content {
  position: relative;

  width: 65%;
  text-align: center;
}

.banner-content h4 {
  font-size: 44px;
  color: #F9BC00;
  font-weight: bolder;
  line-height: normal;
  text-shadow: 1px 1px 2px #000;
  /* transform: scale(1); */
  transition: 5s ease-out !important;
  animation: zoomText 5s !important;
}

@keyframes zoomText {
  from {
    opacity: 0 !important;
    transform: scale(0, 0);
  }

  to {
    opacity: 1 !important;
    transform: scale(1, 1);
  }
}

.banner-content p {
  color: #ededed;
  margin-top: 12px;
}

/* .banner-carousel .owl-item .item .banner-img img {
  transition: 2s ease-out !important;
  transform: scale(1) !important;
} */

.banner-carousel .owl-item .item {
  overflow: hidden;
}

.banner-carousel .owl-item .item .banner-img img.active {
  transform: scale(1.5);
  transition: 15s ease-out;
  animation: zoom 15s;
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

/* .banner-carousel .owl-item.active .item .banner-img img {
  -webkit-animation: zoom 15s;
  animation: zoom 15s;
  padding: 0;
  width: 100%;
} */

.banner-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  color: #fff;
  left: 0.5%;
  font-size: 36px;
  background: #ffffff2e;
  width: 31px;
  height: 42px;
  line-height: 7px;
  visibility: hidden;
  transition: 0.4s ease-out;
  font-size: 14px;
}

.banner-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  color: #fff;
  right: 0.5%;
  font-size: 36px;
  background: #ffffff2e;
  width: 31px;
  height: 42px;
  line-height: 7px;
  visibility: hidden;
  transition: 0.4s ease-out;
  font-size: 14px;
}

.banner-carousel:hover .owl-nav button.owl-next {
  visibility: visible;
}

.banner-carousel:hover .owl-nav button.owl-prev {
  visibility: visible;
}

.owl-theme.banner-carousel .owl-nav {
  margin-top: 0px;
}

.btn-1 {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  margin-top: 20px;
  color: #3d3e64;
  font-weight: 500;
  transition: 0.4s ease-out;
}

.btn-1:hover {
  color: #fff;
  background: #3d3e64;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* .about-us {
  position: relative;
  background: linear-gradient(#e6f1ffc4, #e6f1ffc4),
    url(../img/texture/texture1.png);
  background-size: contain;
  background-position: right top;
} */

.engine_image {
  float: none;
  margin: auto;
  width: 614px;
  height: 614px;
}

.engine_image {
  float: none;
  width: 100%;
  height: auto;
  position: relative;
  margin: 0px;
  transform: none;
}

.engine_image [class*="image_wrap_"] {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  transform: none;
  bottom: 0px;
  right: 0px;
}

.engine_image [class*="image_wrap_"] img {
  margin: auto;
  width: 100%;
}

.engine_image .image_wrap_1 {
  z-index: 4;
  max-width: 22%;
}

.engine_image .image_wrap_2 {
  z-index: 2;
  max-width: 100%;
  margin: auto;
}

.engine_image .image_wrap_3 {
  z-index: 2;
  max-width: 100%;
  margin: auto;
}

.engine_image .image_wrap_4 {
  margin: auto;
  width: 100%;
  position: relative;
  transform: none;
  left: 0px;
  top: 0px;
}

.engine_image .image_wrap_2 img {
  animation: spin 40s infinite linear;
}

.engine_image .image_wrap_3 img {
  animation: spinReverse 40s infinite linear;
}

/* Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 5000ms infinite linear;
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.spinReverse {
  animation: spinReverse 5000ms infinite linear;
}

.about-img-sec {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.about-img-sec img {
  width: 100%;
}

.about-exp {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}

.about-exp-wrapp {
  padding: 26px 20px;
  width: 170px;
  height: 170px;
  background: #3d3e64;
  border-radius: 100%;
  border: 5px solid #ddd;
  text-align: center;
  display: block;
}

.about-exp-wrapp::after {
  position: absolute;
  border: 10px solid #3c3e64d1;
  animation: zoomBig2 3.25s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes zoomBig2 {
  0% {
    transform: translate(0%, 0%) scale(0.9);
    opacity: 1;
    border-width: 3px;
  }

  40% {
    opacity: 0.5;
    border-width: 2px;
  }

  65% {
    border-width: 1px;
  }

  100% {
    transform: translate(-0%, -0%) scale(1.5);
    opacity: 0;
    border-width: 1px;
  }
}

.aboutImgWraper {
  position: relative;
}

.aboutImgWraper img.aboutImgNew {
  position: relative;
  z-index: 3;
}

.aboutImgWraper img.aboutImgLine {
  position: absolute;
  bottom: -20px;
  left: 0px;
  z-index: 1;
}

.aboutImgWraper img.aboutImgsetting {
  position: absolute;
  top: 1px;
  z-index: 2;
  width: 80%;
  margin: 0px auto;
  left: 0px;
  animation: unset;
  right: 0px;
  opacity: 0.8;
}

.about-exp-wrapp h4 {
  color: #ffff;
  font-size: 48px;
  display: inline;
  font-weight: bold;
}

.about-exp-wrapp span {
  color: #fff;
}

.about-us-content-wrapper {
  margin-left: 20px;
  position: relative;
  z-index: 3;
}

.about-us-title h4 {
  color: #343434;
  font-weight: 800;
  font-size: 44px;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}

.about-us-title h4 span {
  color: #072d74;
}

.about-exp-wrapp p {
  color: #fff;
  line-height: 19px;
  margin-top: 2px;
  text-transform: uppercase;
}

.about-us-strong p {
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 11px;
}

.about-us-nor p {
  text-align: justify;
  margin-bottom: 10px;
}

.about-us-nor p:first-child {
  margin-top: 14px;
}

.btn-2 {
  display: inline-block;
  padding: 10px 20px;
  border: 1.8px solid #3d3e64;
  color: #b61515;
  font-weight: 400;
  border-radius: 8px;
  margin-top: 20px;
}

/* Buttons */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 30px;
  border: 1px solid;
  border-color: white;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 500;
  color: #092d77;
  box-shadow: 0 0 0 1px #002f75;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 21px;
  fill: #1f387e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #002f75;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 30px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
  color: #fff;
}

.animated-button:hover svg {
  fill: #ffffff;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* Buttons end*/
.about-us-content-wrapper .animated-button {
  margin-top: 24px;
}

.what-we-do {
  background: #3c3e640a;
  position: relative;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title h4 {
  display: inline-block;
  margin: 0px auto;
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #343434;
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 3px;
  background-color: #072d74;
  border-radius: 4px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background-color: #f30401;
  border-radius: 50%;
  border: 2px solid #fff;
}

.section-title p {
  padding: 0px 5%;
  margin-top: 10px;
}

.bg2 {
  background: linear-gradient(180deg, #24263eeb, #24263eeb);
  background-size: cover;
  background-position: center;
}

.ourIndustry {
  overflow: hidden;
}

.testimonials-bg {
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  height: 100%;
  z-index: -1;
}

.testimonials-bg img {
  width: 100%;
}

.whatwedo-card {
  margin-bottom: 40px;
  min-height: 260px;
}

.wwd-icon {
  border-radius: 50%;
  background: #ffffff;
  width: 110px;
  height: 110px;
  position: relative;
  margin: auto;
  transition: 0.5s ease-out;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -54px;
  border: 2px solid #006caa;
}

.wwd-icon::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  background: #002f74;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  z-index: 1;
  filter: blur(0px);
  left: 0px;
  margin: auto;
  transform: none;
  transition: 0.4s ease-in-out;
}

.whatwedo-card:hover .wwd-icon::before {
  height: 100%;
  width: 100%;
}

.wwd-icon img {
  /* width: 100%; */
  width: 60px;
  position: relative;
  z-index: 11;
  -webkit-animation: mover 5s infinite linear;
  animation: mover 5s infinite linear;
}

.whatwedo-card:hover .wwd-icon {
  transition: 0.5s ease-out;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-0px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-0px);
  }
}

.wwd-text-content {
  background: linear-gradient(180deg, #ffffff9e, #ffffff99),
    url(../img/texture/texture3.jpg);
  margin-top: 0px;
  text-align: center;
  padding: 65px 12px 30px 12px;
  min-height: 228px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  border-top: 3px solid #006caa;
  background-size: cover;
}

.wwd-title h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.wwd-btn {
  text-align: center;
  margin-top: -30px;
  position: relative;
  z-index: 6;
}

.wwd-btn a {
  width: 40px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(45deg, #e9f2ff, #ebf1f9);
  color: #165ed1;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.wwd-btn a:hover {
  background: #b61515;
}

.ourservicesCardWrap {
  margin-top: 40px;
}

/* Specialization */
.ourSpecialization {
  position: relative;
  background: rgb(226, 247, 249);
  padding: 50px 0px;
  overflow: hidden;
}

.ourSpecialization2 {
  position: relative;
  background: linear-gradient(#ffffffe6, white),
    url(../img/texture/texture2.jpg);
  padding: 20px 0px;
  overflow: hidden;
}

.tp-technology-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.specializationWrapper {
  margin-top: 40px;
}

.specializationWrapper .row {
  gap: 22px 0px;
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  /* margin-bottom: 35px; */
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front {
  background: linear-gradient(90deg, #ffffff, #f8f8f9);
}

.flip-box-back {
  background: linear-gradient(90deg, #f8f9ff, #fdfdff);
  text-align: center;
}

.specializationWrapper.ourProject .flip-box-front {
  background: linear-gradient(90deg, #f8f8f8, #ffff);
}

.specializationWrapper.ourProject .flip-box-back {
  background: linear-gradient(90deg, #fff, #f8f8f8);
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 225px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #ededed;
}

.ourProjectSec .flip-box-front,
.ourProjectSec .flip-box-back {
  min-height: 327px;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: relative;
  left: 0;
  width: 100%;
  padding: 12px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(0%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(0%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(0%) translateZ(60px) scale(0.94);
  top: 0%;
  height: 100%;

}

.flip-box-back .inner {
  max-height: 200px;
  overflow-y: auto;
}

.indusryImgWrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.indusryImgWrap img {
  width: 100%;
  transform: scale(1.5);
  transition: 5s ease-out;
  animation: zoom 5s infinite;
}

.flip-box-header {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

.indsutryContent {
  padding: 0px;
  text-align: center;
  padding-bottom: 14px;
  padding-top: 5px;
}

.flip-box p {
  font-size: 15px;
  color: #111;
  margin-top: 12px;
}

.flip-box p i {
  font-size: 14px;
}

.flip-box-img {
  margin-top: 6px;
  width: 16px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}

.industryNavigation.border2 {
  border-top: 1px dashed #ddd;
}

.industryNavigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.industryNavigation ul li {
  font-size: 15px;
}

.industryNavigation ul li i {
  background: #e9f2ff;
  border-radius: 5px;
  width: 32px;
  display: inline-block;
  height: 32px;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
}

.industryWrapper {
  margin-top: 40px;
}

.brands-section .industryCard {
  width: auto;
  margin-bottom: 29px;
  position: relative;
}

.industryCard {
  width: 100%;
  margin-bottom: 29px;
  position: relative;
}

.brands-section .industryImg1 {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100px !important;
  position: relative;
}

.brands-section .industryImg1 img {
  border-radius: 50px 15% / 10px 25%;
}

.industryImg {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  position: relative;
}

.industryCard:hover .industryImg:before {
  -webkit-animation: zoom-hover 0.75s;
  animation: zoom-hover 0.75s;
}

.industryImg:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

@-webkit-keyframes zoom-hover {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes zoom-hover {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.industryImg img {
  width: 100%;
  transition: 0.4s ease-in-out;
}

.industryCard:hover .industryImg img {
  transform: scale(1.05);
}

.industryContent {
  background: #e8f1ff;
  padding: 13px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.industryContent h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.industryContent p {
  margin-bottom: 6px;
}

.industryCard a {
  display: inline-block;
  padding: 7px 20px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 3;
  bottom: -8px;
  background: linear-gradient(15deg, #00c7b4, #002f75);
  width: fit-content;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 500;
  border: none;
}

.industrySlider.owl-carousel {
  position: relative;
}

.industrySlider.owl-carousel .owl-nav {
  margin: 0px;
}

.industrySlider.owl-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  left: -50px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
}

.industrySlider.owl-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  right: -50px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
}

.section-title.light h4 {
  color: #fff;
}

.section-title.light p {
  color: #f5f5f5;
}

.section-title.light::before {
  background-color: #ffffff;
}

.modelImgWrap {
  width: 100%;
  min-height: 300px;
  position: relative;
}

.modelmg {
  position: absolute;
  width: 100%;
}

.modelmg img {
  transition: 0.4s ease-in-out;
  width: 100%;
}

.modelImgWrap:hover img#shapreRotate2 {
  transform: scale(1.03);
}

.modelmg .circlMover {
  position: absolute;
  width: 52%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
}

.modelmg .circlMover {
  position: absolute;
  width: 49%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  border: 4px solid #003275;
  border-radius: 100%;
}

.modelmg img.circlMover {
  animation: spinReverse 40s infinite linear;
}

.modelArrow img {
  animation: spin 40s infinite linear;
}

/* Model Style Two */
.engageTitleWrap {
  width: 100%;
}

.engageTitle {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #072d74;
  color: #fff;
  padding: 18px;
  position: relative;
  margin: 0px auto;
  -webkit-animation: video-pulse-presentation 3s linear infinite;
  animation: video-pulse-presentation 3s linear infinite;
}

.engageTitle::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  background: url(../img/other/circle_engine_4.png);
  background-size: 100%;
  background-repeat: no-repeat;
  left: -19px;
  right: 0px;
  top: -5px;
  bottom: 0px;
  margin: auto;
  background-position: center center;
}

@-webkit-keyframes video-pulse-presentation {
  0% {
    -webkit-box-shadow: 0 0 0 0 #652dffb3, 0 0 0 0 rgba(171, 45, 255, 0.7);
    box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
  }

  40% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%),
      0 0 0 0 rgba(171, 45, 255, 0.7);
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
  }

  80% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%),
      0 0 0 30px rgb(245 112 9 / 0%);
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%),
      0 0 0 30px rgb(245 112 9 / 0%);
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
  }
}

@keyframes video-pulse-presentation {
  0% {
    -webkit-box-shadow: 0 0 0 0 #652dffb3, 0 0 0 0 #652dffb3;
    box-shadow: 0 0 0 0 #652dffb3, 0 0 0 0 #652dffb3;
  }

  40% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #652dffb3;
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #652dffb3;
  }

  80% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%),
      0 0 0 30px rgb(245 112 9 / 0%);
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%),
      0 0 0 30px rgb(245 112 9 / 0%);
    box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
  }
}

.engageTitle h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  position: relative;
  z-index: 2;
}

.engageContentRow {
  width: 100%;
  position: relative;
  z-index: 3;
}

.engageContentRow.first {
  display: flex;
  justify-content: center;
  gap: 45%;
}

.engageContentRow.second {
  display: flex;
  gap: 180px;
  justify-content: center;
  margin-top: 30px;
}

.engageContentRow.third {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.engageMainCard {
  width: 120px;
  height: 120px;
  background: linear-gradient(0deg, #002e74, #537bb7);
  border-radius: 100%;
  text-align: center;
  padding: 17px 15px;
  position: relative;
  transition: 0.4s ease-in-out;
}

.engageMainCard:hover {
  transform: scale(1.09);
}

.engageMainCard::after {
  content: "";
  width: 147px;
  height: 147px;
  position: absolute;
  background: url(../img/other/circle_engine_3.png);
  background-size: 100%;
  background-repeat: no-repeat;
  left: -13px;
  right: 0px;
  top: -2px;
  bottom: 0px;
  margin: auto;
  background-position: center center;
  display: none;
  /* animation: spinReverse 40s infinite linear; */
}

.engageMainCard .modelIco {
  width: 39px;
  height: 39px;
  transition: 0.4s ease-in-out;
}

.engageMainCard:hover .modelIco {
  transform: rotate(360deg);
}

.engageMainCard h5 {
  font-size: 13px;
  line-height: 16px;
  margin-top: 9px;
  color: #fff;
  font-weight: 600;
}

.engageContentWrap {
  position: relative;
}

.engageConnector {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  bottom: 0px;
  z-index: 1;
}

.engageConnector div {
  display: block;
  width: 3px;
  height: 100%;
  background: #002e74;
  position: relative;
  animation: lineAnimation 3s linear infinite;
}

@keyframes lineAnimation {
  0% {
    background: #002e74;
  }

  50% {
    background: #045ce0;
  }

  100% {
    background: #b10404;
  }
}

.engageConnector div::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #002e74;
  border-radius: 100%;
  left: -3px;
  top: 0px;
}

.engageConnector div::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #002e74;
  border-radius: 100%;
  left: -3px;
  bottom: 0px;
}

.engageConnector div:nth-child(1) {
  margin: 15px 46% 28px auto;
  background: #002e74;
  height: 65%;
}

.engageConnector div:nth-child(2) {
  margin: 15px 0% 28px 46%;
  background: #002e74;
  height: 65%;
  top: 0px;
  position: absolute;
}

.engageConnector div:nth-child(3) {
  margin: 3px 0% 28px 61%;
  background: #002e74;
  height: 50%;
  top: 0px;
  position: absolute;
}

.engageConnector div:nth-child(4) {
  margin: 3px 0% 28px 39%;
  background: #002e74;
  height: 50%;
  top: 0px;
  position: absolute;
}

.engageConnector div:nth-child(5) {
  margin: -38px 0% 28px 32%;
  background: #002e74;
  height: 26%;
  top: 0px;
  position: absolute;
}

.engageConnector div:nth-child(6) {
  margin: -38px 0% 28px 68%;
  background: #002e74;
  height: 26%;
  top: 0px;
  position: absolute;
}

/* Model Style Two  end */

.saInfoCardWrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.saInfoCard {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  background: linear-gradient(45deg, #002f74, #00acb3);
  border-radius: 80px;
  position: relative;
  overflow: hidden;
}

.saInfoCard.firstcol {
  flex-direction: row-reverse;
}

.saInfoCard.secondcol {
  flex-direction: unset;
}

.saInfoImg {
  width: 70px;
  height: 78px;
  background: #ffffff;
  border: 0;
  border-radius: 100%;
  position: absolute;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saInfoImgCard {
  width: 68px;
  height: 68px;
  border-radius: 100%;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 10px;
  margin: auto;
  position: relative;
  z-index: 2;
  border: 6px solid #0aa9b1;
  right: -6px;
}

.saInfoCard.secondcol {
  background: linear-gradient(45deg, #00acb3, #002f74);
}

.saInfoImg img {
  width: 100%;
}

.saInfoContent {
  width: 65%;
  padding: 10px;
  margin-left: 6px;
  margin-right: auto;
}

.saInfoContent h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.saInfoContent p {
  font-size: 14px;
  line-height: 21px;
  color: #ddd;
}

.saInfoCard.secondcol .saInfoImg {
  right: auto;
  left: -5px;
  width: 80px;
}

.saInfoCard.secondcol .saInfoImgCard {
  right: 1px;
}

.saInfoCard.secondcol .saInfoContent {
  margin-left: auto;
  margin-right: 0px;
  text-align: right;
}

.staffMainimgWrap {
  position: relative;
}

.staffAugmentationImg {
  position: relative;
  /* top: -60px; */
  width: 90%;
  float: right;
}

.staffAugmentationImg img {
  width: 100%;
}

.staffAugmentationImg .stagImgWrap {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.staffAugmentationImg .stagImgWrap:last-child {
  position: initial;
}

/* .staffAugmentation {
  background: linear-gradient(180deg, #ffffffb3, #fffffff0),
    url(../img/bg/bg3.jpg);
  background-size: contain;
} */

.staffAugmentationImg img.stagimg {
  transition: 0.4s ease-in-out;
}

.staffAugmentationImg img.stagimg.i {
  position: initial;
}

.staffAugmentationImg:hover img.stagimg.ii {
  transform: scale(1.05);
}

.staffAugmentationImg:hover img.stagimg.iv {
  transform: scale(1.05);
}

.staffMainImg {
  width: 63%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.staffMainImg::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 22px;
  background: #111;
  bottom: -21px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 100%;
  filter: blur(7px);
  opacity: 0.4;
}

.staffMainImg img {
  width: 100%;
  animation: upandDown 7s linear infinite;
}

@keyframes upandDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.staffIndicator {
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: 248px;
  z-index: 1;
}

.staffIndicator img {
  width: 100%;
}

.saContainer {
  margin-top: 40px;
}

.SAsomeParaContent {
  margin-top: 30px;
}

.book-img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.book-img {
  overflow: hidden;
}

.our-book-card {
  cursor: pointer;
}

.our-book-card img {
  width: 100%;
  transition: 0.5s ease-out;
}

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

.our-book-content {
  text-align: center;
  margin: 10px 0px;
}

.our-book-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #343434;
}

.books {
  min-height: 640px;
}

#main {
  width: 100%;
}

#main:after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
}

#filter {
  margin: 0 auto;
}

#filter:after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
}

#filters {
  width: fit-content;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #002e74;
  padding: 0px 0px;
  display: flex;
  align-items: center;
}

#filters li {
  color: #003075;
  cursor: pointer;
  display: inline-block;
  padding: 13px 10px;
  transition: all 0.5s ease;
  margin: 0px;
  position: relative;
  background: white;
  border-radius: 0;
  border: none;
  width: 200px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#filters li.active {
  background: #003075;
  color: #fff;
}

#filters li::after {
  /* content: ''; */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30%;
  height: 2px;
  background: #b61515;
}

#filters li h4 {
  font-size: 18px;
  font-weight: 600;
}

#filters li:hover {
  color: #b61515;
}

#containerfilter {
  width: 100%;
}

#containerfilter:after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
}

#containerfilter .filter-item {
  visibility: visible;
  /* width: 31.33333333%; */
  /* margin: 1%; */
  float: left;
  transition: all 0.5s ease;
  /* border-radius: 5px; */
}

#containerfilter .filter-item.hidden {
  width: 0;
  height: 0;
  margin: 0;
  /* transform: scaleY(0); */
  opacity: 0;
  visibility: hidden;
}

.testimonials {
  background: #3c3e640a;
}

.testimonial-section {
  width: 80%;
  margin: auto;
}

.testimonial-card {
  padding: 30px;
  text-align: center;
}

.testi-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel .owl-item .testi-img img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  display: inline-block;
}

.testi-img i {
  padding: 20px;
  margin: 0px 20px;
  color: #fff8f8;
  font-size: 32px;
}

.testi-content p {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ddd;
}

.testi-author h4 {
  font-size: 20px;
  font-weight: 700;
  color: #e5f1ff;
}

.testi-author p {
  color: #b5b5b5;
  font-size: 15px;
}

.testimonial-carousel.owl-carousel .owl-nav button.owl-prev {
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: #ddd;
  line-height: 8px;
}

.testimonial-carousel.owl-carousel .owl-nav button.owl-next {
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: #ddd;
  line-height: 8px;
}

.testimonial-carousel.owl-carousel .owl-nav button.owl-prev:hover {
  background: #ddd;
  color: #002e74;
}

.testimonial-carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: #ddd;
  color: #002e74;
}

.get-in-touch-form {
  padding: 30px;
}

.getintouch {
  padding: 30px;
}

.get-in-touch-row {
  /* background: #dddddd14;  */
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
  overflow: hidden;
}

.getintouch label {
  color: #34344e;
  position: relative;
  top: 36px;
  left: 11px;
  transition: 0.5s ease-out;
}

.getinput.position label {
  top: 0px;
  left: 0px;
}

.getintouch input {
  width: 100%;
  color: #222222;
  line-height: 1;
  padding: 13px 10px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid #82b0bf;
  margin-bottom: 18px;
  max-width: 100%;
  font-size: 15px;
  transition: 0.3s ease;
  background: transparent;
}

.getintouch input:focus {
  box-shadow: none;
}

.getintouch input::placeholder {
  color: #cbcbcb;
  color: transparent;
}

.getintouch textarea {
  width: 100%;
  color: #222222;
  line-height: 1;
  padding: 13px 10px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid #82b0bf;
  margin-bottom: 18px;
  max-width: 100%;
  font-size: 15px;
  transition: 0.3s ease;
  background: transparent;
}

.getintouch textarea::placeholder {
  color: #cbcbcb;
  color: transparent;
}

.getintouch textarea:focus {
  box-shadow: none;
}

.footer {
  background-color: #030016;
  background-image: url(../img/texture/footer-bg-1.png);
  background-size: 100%;
}

.footer-logo {
  width: 150px;
  background: #fff0;
  padding: 10px;
  border-radius: 8px;
}

.footer-logo img {
  width: 100%;
}

.footer-content:hover .footer-title h4::after {
  width: 100px;
  background: linear-gradient(87deg, #c6c6c6, transparent);
}

.footer-content-para p {
  text-align: justify;
  margin-top: 10px;
  margin-right: 20px;
  color: #d1d1d1;
}

.footer-title h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 20px;
  position: relative;
}

.footer-title h4::after {
  position: absolute;
  content: "";
  bottom: 12px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(87deg, #c6c6c6, transparent);
  transition: 0.4s ease-in-out;
}

.footer-links a {
  color: #ffffff;
  line-height: 28px;
  font-size: 12px;
}

.footer-address ul li a {
  font-size: 12px;
}

.footer p {
  font-size: 12px;
}

.footer-links a:hover {
  color: #00b1e9;
}

.footer-address ul li {
  display: flex;
  align-items: baseline;
}

.footer-address ul li i {
  color: #00b1e9;
  margin-right: 10px;
}

.footer-address ul li a {
  color: #fff;
  line-height: 30px;
}

.footer-address ul li a:hover {
  color: #00b1e9;
}

.footer-social-links {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-social-links li a i {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
}

.footer-social-links li a i.fa-facebook-f {
  color: #0075ea !important;
}

.footer-social-links li a i.fa-instagram {
  color: #be0b31;
}

/* 
.footer-social-links li a i.fa-instagram::after{
    background: #fff;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    border-radius: 50%;
    z-index: 1;
} */
.footer-social-links li a i.fa-linkedin-in {
  color: #0a66c2 !important;
}

.footer-social-links li a i.fa-twitter {
  color: #009feb !important;
}

.footer-social-links li p {
  color: #fff;
  margin-right: 10px;
}

.footer-copyright {
  background: #000000;
  padding: 10px 0px;
}

.aks-logo p {
  color: #fff;
  font-size: 12px;
}

.aks-logo p span {
  color: #00b1e9;
  font-weight: 600;
}

/* preloader Animation */
/* Preloader */
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ebfdff;
  z-index: 99999999;
}

#preloader-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader-logo img {
  width: 54px;
  -webkit-animation: breathing 2s ease-out infinite normal;
  animation: breathing 2s ease-out infinite normal;
}

.loading-msg {
  width: 100%;
  font-size: 0.75em;
  color: #555;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-top: 3px solid #2e3192;
  border-radius: 100%;
  position: absolute;
  top: 7px;
  bottom: 0;
  left: -2px;
  right: 0;
  margin: auto;
  animation: spin_loader 1s infinite ease;
}

@keyframes spin_loader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#loading-msg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 0.8em;
}

.spinner img {
  display: flex;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

/* Go to top */

#button {
  display: inline-block;
  background-color: #003175;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
  font-size: 10px;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* 08-09-2023 */
.bnrshape1 {
  position: absolute;
  left: -3%;
  top: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background: linear-gradient(90deg, #0000004f, transparent);
  margin: auto;
  -webkit-animation: breathing 5s ease-out infinite normal;
  animation: breathing 5s ease-out infinite normal;
  backdrop-filter: blur(1px);
  filter: blur(0px);
}

@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.bnrshape1::after {
  position: absolute;
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #87878752;
  border-radius: 100%;
  animation: zoomBig 5s linear infinite;
  animation-delay: 1.3s;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.bnrshape1::before {
  position: absolute;
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #93939326;
  border-radius: 100%;
  animation: zoomBig 5s linear infinite;
  animation-delay: 1.7s;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
    border-width: 3px;
  }

  40% {
    opacity: 0.5;
    border-width: 2px;
  }

  65% {
    border-width: 1px;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    border-width: 1px;
  }
}

.bnrshape2 {
  border: 1px solid #d9d9d9;
  width: 33px;
  height: 33px;
  position: absolute;
  left: 77px;
  bottom: 36px;
  border-radius: 50%;
  animation: zoomBig 3s linear infinite;
  visibility: visible;
  animation-delay: 1100ms;
}

.banner-content-wrapper {
  justify-content: center;
  background-image: url(../img/icons/banner-bg-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top -70px;
}

.bannerSection {
  position: relative;
}

.bannerBtnContent {
  position: absolute;
  bottom: 8%;
  z-index: 3;
  left: 0px;
  right: 0px;
  width: fit-content;
  margin: auto;
}

.bannerBtnContent a {
  background: linear-gradient(90deg, #ff912f, #af5900);
  display: block;
  padding: 6px 16px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 500;
  animation: bnrBtnAni 1.4s infinite linear;
}

@keyframes bnrBtnAni {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.5;
  }

  30% {
    opacity: 0.2;
  }

  40% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.bg-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  width: 100%;
  height: 77vh;
  z-index: -1;
}

.aboutImgWraper {
  width: 100%;
  border-radius: 10px;
  position: relative;
}

.aboutImgWraper::after {
  position: absolute;
  content: "";
  width: 81%;
  height: 81%;
  background: #d5e7ff;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  filter: blur(60px);
}

.aboutImgWraper img {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  animation: upandDown 5s linear infinite;
}

.about-shape-1 {
  position: absolute;
  right: 50px;
  top: 36px;
  visibility: visible;
  animation-delay: 300ms;
  animation-name: zoomIn;
}

.about-shape-1 img {
  animation: rotated 20s infinite linear;
}

@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.bg-img-2 {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bg-img-2 img {
  width: 126%;
  -webkit-animation: breathing 5s ease-out infinite normal;
  animation: breathing 5s ease-out infinite normal;
  opacity: 0.6;
  object-fit: fill;
}

.ourServicesWrapper {
  position: relative;
  z-index: 5;
}

.testimonials {
  background-image: url(../img/texture/testimonial-bg-2a.png);
  background-size: cover;
  background-position: center;
  background-color: #202840;
  background-blend-mode: color-burn;
}

.books {
  background-image: url(../img/bg/service-bg-2.jpg);
  background-size: contain;
}

.book-img {
  position: relative;
}

.book-img::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #00000078;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.book-img-connect {
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  width: 40px;
  height: 40px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: rotate(45deg);
}

.our-book-card:hover .book-img:after {
  top: 0;
  opacity: 1;
}

.our-book-card:hover .book-img .book-img-connect {
  visibility: visible;
  top: 0px;
  opacity: 1;
  transform: rotate(0deg);
}

.get-in-touch {
  background-image: url(../img/texture/form-bg.png);
  background-size: contain;
}

.get-in-touch-form {
  background-color: #ffff;
}

.socialSticky {
  position: fixed;
  right: 15px;
  top: 35%;
  max-height: 100vh;
  z-index: 33;
}

.socialSticky ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.socialSticky a {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 36px;
  border-radius: 100%;
  background: #ffffffa3;
  backdrop-filter: blur(5px);
  font-size: 13px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.socialSticky i {
  color: #000b1c;
}

.socialSticky a:hover {
  background: #fff;
  backdrop-filter: blur(0px);
}

.socialSticky a:hover i.fa-facebook-f {
  color: #0075ea;
}

.socialSticky a:hover i.fa-instagram {
  background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.socialSticky a:hover i.fa-linkedin-in {
  color: #0077b5;
}

.socialSticky a:hover i.fa-x-twitter {
  color: #000;
}

.socialSticky a:hover i.fa-youtube {
  color: #f70000;
}

.support {
  position: fixed;
  display: flex;
  width: 135px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: #003075bf;
  border-radius: 50px;
  z-index: 9999;
  bottom: 43px;
  left: 20px;
  padding: 7px;
  color: #fff;
  line-height: 18px;
  font-size: 14px;
  backdrop-filter: blur(7px);
}

.support img {
  width: 40px;
  margin-right: 5px;
}

#whatsapp {
  position: fixed;
  right: 30px;
  text-align: center;
  height: 50px;
  width: 50px;
  font-size: 35px;
  background-color: #13a4e1;
  border-radius: 100%;
  bottom: 100px;
  z-index: 100000000000;
  -webkit-animation: mymove 3s;
  -webkit-animation-iteration-count: infinite;
  animation: mymove 3s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes mymove {
  from {
    bottom: 100px;
  }

  to {
    bottom: 100px;
    background-color: #01e675;
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
  }
}

@keyframes mymove {
  from {
    bottom: 100px;
  }

  to {
    bottom: 100px;
    background-color: #01e675;
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
  }
}

.chatbot {
  position: fixed;
  left: 30px;
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  bottom: 100px;
  z-index: 100000000000;
  animation: bounce 4s infinite ease-in-out;
  animation-delay: 3s;
}

.chatbot img {
  width: 100%;
}

.textMover h4 {
  position: absolute;
  font-size: 120px;
  font-weight: 900;
  /* text-transform: uppercase; */
  right: 0px;
  z-index: -1;
}

.textMover1 h4 {
  top: -57px;
  color: #9393931f;
}

.textMover2 h4 {
  font-size: 90px;
  top: -150px;
  color: #9393931f;
  z-index: 2;
  right: 0px;
  margin: auto;
  left: 0px;
  text-align: center;
}

.textMover3 h4 {
  font-size: 90px;
  top: -250px;
  color: #9393931f;
  z-index: 2;
  right: 0px;
  margin: auto;
  left: 0px;
  text-align: center;
}

.textMover4 h4 {
  font-size: 90px;
  top: -290px;
  color: #9393931f;
  z-index: 2;
  right: 0px;
  margin: auto;
  left: 0px;
  text-align: center;
}

.textMover5 h4 {
  font-size: 98px;
  right: 130px;
  color: #9393931f;
  z-index: 2;
  margin: auto;
  left: 0px;
  text-align: center;
  width: fit-content;
  top: 67px;
}

.textMover6 h4 {
  font-size: 98px;
  right: 0px;
  color: #9393931f;
  z-index: 2;
  margin: auto;
  left: -27%;
  text-align: left;
  top: -40px;
}

.textMover7 h4 {
  font-size: 90px;
  top: -514px;
  color: #9393931f;
  z-index: 2;
  right: 0px;
  margin: auto;
  left: 0px;
  text-align: center;
}

#tsparticles {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: 1;
  display: none !important;
}

#tsparticles canvas {
  position: unset !important;
}

.homeFromBg {
  position: relative;
}

.homeFromBg .bg-img-2 {
  align-items: normal;
}

.hctFromWrapper {
  position: relative;
  z-index: 3;
}

.hctFromContainer {
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  background: linear-gradient(#ffffff, #ffffff),
    url(../img/texture/texture2.png);
  background-size: cover;
  margin-bottom: 0;
  position: relative;
  background-blend-mode: hue;
  margin-left: 30px;
  z-index: 3;
  margin-bottom: 50px;
}

.formWrapper {
  margin-top: 20px;
}

.formWrapper .form-control {
  border-radius: 30px;
  padding: 7px 20px;
}

textarea.form-control {
  min-height: 80px;
}

.formWrapper .form-control.form-select:focus {
  box-shadow: none;
  border-color: #a62418;
}

.hctFromContainer .form-group {
  display: block;
  margin-bottom: 14px;
}

.hctFromContainer .form-group span {
  margin-bottom: 10px;
  font-weight: 500;
  display: inline-block;
}

.hctFromContainer .form-group input:focus {
  box-shadow: none;
  border-color: #c7002a;
}

.hctFromContainer .form-group textarea:focus {
  box-shadow: none;
  border-color: #c7002a;
}

.homectfrombg {
  position: absolute;
  z-index: 1;
  width: 75%;
  height: 100%;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  background-image: url(../img/bg/bg-3.jpg);
  background-color: #141414;
  background-blend-mode: soft-light;
}

.homeFormWrapper {
  padding-left: 40px;
}

.formSubmitBtn button {
  /* display: inline-block; */
  font-family: "Campton";
  text-align: center;
  margin: 0px auto;
}

.gm-style .place-card-large {
  display: none !important;
}

.inrbnr {
  position: relative;
  margin-top: -88px;
  min-height: 210px;
  background: linear-gradient(83deg, #76767659, #464646ab),
    url(../img/bgs/inner-bnr-bg.png);
  background-size: 100%;
  padding-top: 30px;
}

.inrbnrimg {
  width: 100%;
  height: 200px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 1;
}

.inrbnrimg img {
  width: 40%;
  position: relative;
}

.inrbnrtext {
  text-align: center;
}

.inrbnrContent {
  position: relative;
  z-index: 2;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inrbnrtext h2 {
  font-size: 32px;
  color: #431616;
  font-weight: 600;
}

.inrbrnNav {
  display: flex;
  align-items: center;
  margin-top: 3px;
  justify-content: flex-start;
  justify-content: center;
}

.inrbrnNav li a i {
  font-size: 13px;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.inrbrnNav li {
  position: relative;
  border-right: 1px solid #00248b;
  padding: 0px 10px;
}

.inrbrnNav li:last-child {
  border: none;
}

.inrbrnNav li:last-child a {
  color: #d97600;
  font-weight: 600;
}

.bannerPara {
  padding: 0px 10%;
}

.inrbnrwithPara.inrbnr {
  position: relative;
  margin-top: -88px;
  min-height: 500px;
  background: linear-gradient(83deg, #76767659, #464646ab),
    url(../img/bgs/inner-bnr-bg.png);
  background-size: cover;
  padding-top: 90px;
}

.featuresWrapper {
  max-width: 100%;
  margin: 0px auto;
  margin-top: 50px;
}

.featuresCard {
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #009aca29;
  min-height: 144px;
  box-shadow: rgb(0 0 0 / 4%) 0px 3px 12px;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
  min-height: 200px;
}

.featuresCard:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.096) 0px 25px 20px -20px;
}

.fCardImg {
  width: 20%;
  margin: 0px auto;
}

.fCardImg img {
  width: 100%;
  /* filter: hue-rotate(255deg); */
}

.fCardContent {
  width: 80%;
  padding-left: 26px;
}

.fCardContent h4 {
  font-size: 20px;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 5px;
}

.fCardContent p {
  text-align: justify;
}

.what-we-do.innerpage .whatwedo-card .wwd-icon img {
  transition: 0.3s ease-in-out;
}

.what-we-do.innerpage .whatwedo-card:hover .wwd-icon img {
  filter: invert(1) brightness(2);
}

.ourIndustry.OurValues .industryContent p {
  margin-bottom: 0px;
}

.ourIndustry.OurValues .industryContent {
  min-height: 154px;
}

.whyChooseJantacareList .normalList {
  margin-top: 20px;
}

.whyChooseJantacareList .normalList li {
  padding: 10px;
  background-color: #ffffffab;
  margin-bottom: 11px;
  border-radius: 10px;
  background-image: url(../img/icons/bullet-point.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: left 10px top 12px;
  padding-left: 37px;
  text-align: justify;
}

.joinusAbout .about-us-title h4 {
  text-align: center;
}

.joinusAbout .about-us-nor p {
  text-align: center;
}

.whyChooseImg {
  border: 3px solid #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
  overflow: hidden;
}

.whyChooseImg img {
  width: 100%;
}

.whyChooseImg.nothingstyle {
  box-shadow: none;
  border: none;
}

.inrbnr.inrbnrwithPara {
  background-image: url(../img/bg/Orotuff.jpg);
  background-position: center;
}

.inrbnr.inrbnrwithPara .inrbnrtext h2 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.inrbnr.inrbnrwithPara .inrbnrtext h4 {
  color: #fff;
}

.inrbnr.inrbnrwithPara .inrbnrtext .bannerPara {
  color: #ddd;
  margin-top: 10px;
}

.masList {
  margin-top: 30px;
}

.masList .normalList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.masList .normalList li {
  padding: 11px;
  background-color: #ffffffe0;
  margin-bottom: 11px;
  border-radius: 10px;
  background-image: url(../img/icons/bullet-point.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: left 10px top 12px;
  padding-left: 37px;
  text-align: justify;
  width: 48%;
  box-shadow: rgb(100 100 111 / 6%) 0px 7px 29px 0px;
  font-weight: 600;
  font-size: 15px;
}

.masModculesWrapper .wwd-text-content {
  min-height: auto;
  padding-top: 63px;
  padding-bottom: 10px;
}

.masModculesWrapper .wwd-icon {
  width: 90px;
  height: 90px;
  margin-bottom: -45px;
}

.masModculesWrapper .wwd-icon img {
  width: 50px;
}

.masModculesWrapper .whatwedo-card {
  min-height: auto;
}

.masModculesWrapper .wwd-title h4 {
  font-size: 18px;
  font-weight: 700;
}

.about-us-title.masTitle {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mastitleicon {
  width: 74px;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 8px;
  border-radius: 10px;
}

.about-us-title.masTitle h4 {
  font-size: 32px;
}

.masPartCard {
  margin-top: 20px;
  padding: 22px;
  border-radius: 6px;
  box-shadow: rgb(17 17 26 / 0%) 0px 0px 16px;
  background: radial-gradient(white, #f2f8ff);
  border: 1px solid #e1eeff;
}

.masPartCard .partTitle {
  font-size: 20px;
  font-weight: 700;
}

.normalList {
  margin-top: 10px;
}

.normalList li {
  background-color: none;
  margin-bottom: 5px;
  border-radius: 0px;
  background-image: url(../img/icons/bullet-point.png);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: left 2px top 6px;
  padding-left: 24px;
  text-align: justify;
}

.ourSpecialization.bgstyle2 {
  background: linear-gradient(#e6f1ffc4, #e6f1ffc4),
    url(../img/texture/texture2.jpg);
}

.ourSpecialization2.bgstyle2 {
  background: linear-gradient(#e6f1ffc4, #e6f1ffc4),
    url(../img/texture/texture2.jpg);
}

.masModulesWrapper {
  margin-top: 40px;
}

.masModCard {
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: linear-gradient(180deg, #ffffff9e, #ffffff99),
    url(../img/texture/texture3.jpg);
  border-radius: 10px;
  margin-bottom: 22px;
  transition: 0.4s ease-in-out;
  background-size: cover;
  cursor: pointer;
}

.masModCard:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, #ffffff9e, #ffffff99),
    url(../img/texture/texture3.jpg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.masModIco {
  width: 40%;
  margin: auto;
  margin-bottom: 12px;
}

.masModIco img {
  width: 100%;
}

.masModContent {
  text-align: center;
}

.masModContent h4 {
  font-size: 16px;
  font-weight: 700;
  color: #003275;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

.whyChooseus {
  background: radial-gradient(#ffffffd9, #ffffffd9),
    url(../img/bg/why-sec-bg.jpg);
  background-size: 100% 100%;
}

.whychoosWrap {
  margin-top: 50px;
}

.topleftcorImg {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  width: 170px;
}

.whyChooseTile {
  position: relative;
  min-height: 330px;
  min-height: auto;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.whyChooseTile::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  transition: 0.4s ease-in-out;
  border-radius: 10px;
  background: radial-gradient(#fff, #e6f7ff);
}

/* 
.whyChooseTile.tile1::after {
    background: radial-gradient(#fff, #e6f7ff);
}

.whyChooseTile.tile2::after {
    background: radial-gradient(#fff, #ffe6fa);
}

.whyChooseTile.tile3::after {
    background: radial-gradient(#fff, #dbffbb);
}

.whyChooseTile.tile4::after {
    background: radial-gradient(#fff, #ffe6e6);
}

.whyChooseTile.tile5::after {
    background: radial-gradient(#fff, #f7ffce);
} */

.whyChooseTile:hover:after {
  height: 100%;
}

.whyChooseTileIcon {
  width: 90px;
  margin: auto;
  padding: 19px;
  height: 90px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s ease-in;
  margin-top: 19px;
  z-index: 2;
}

.whyChooseTile:hover .whyChooseTileIcon {
  background: #fff;
}

.whyChooseTileIcon img {
  width: 100%;
}

.whyChooseTileContent {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 5px;
}

.whyChooseTileContent h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0px;
  margin-top: 10px;
}

.whyChooseTileContent p {
  position: relative;
  margin-top: -200px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.whyChooseTile:hover .whyChooseTileContent p {
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.masfeaturecard {
  display: flex;
  align-items: center;
}

.masfeatureIcon {
  width: 70px;
  height: 70px;
}

.masfeatureIcon img {
  width: 100%;
}

.masfeaturecontent {
  width: 96%;
  padding-left: 9px;
}

.masfeaturecontent h4 {
  font-size: 20px;
  font-weight: 700;
}

.masfeaturecontent p {
  margin-top: 6px;
}

.masServiceOffering .masPartCard {
  min-height: 390px;
}

.maximoServices .masModCard {
  min-height: 170px;
}

.ibmServiceOffering .masPartCard {
  min-height: 212px;
}

.ibmsoWrapper {
  margin-top: 30px;
}

.ibmsoWrapper .section-title {
  margin-bottom: 30px;
}

.ibmsotitle h4 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.ibmsotitle h4::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  width: 70px;
  height: 2px;
  background: #375d90;
}

.ibmsotitle h4::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -2px;
  right: 0;
  margin: auto;
  width: 32px;
  height: 10px;
  background-color: #f30401;
  border-radius: 10px;
  border: 2px solid #fff;
  margin-left: 0px;
  z-index: 1;
}

.whychooseimbMaximo .whyChooseTileContent p {
  margin-top: -90px;
}

.ibmServiceconfing .masPartCard {
  min-height: 140px;
}

.justaNote {
  padding: 16px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
}

/* .incardStyle .masPartCard {
    background: radial-gradient(white, #f2f8ff), url(../img/texture/futuristic-texture-min.png);
}
.incardStyle .masPartCard {
    background: radial-gradient(#fffffff7, #f2f8ff6b), url(https://img.freepik.com/free-vector/abstract-dotted-mesh-banner-wavy-style_1017-44856.jpg?t=st=1717240809~exp=1717244409~hmac=5137cd7…&w=996);
    background-size: 100%;
} */
.incardStyle .masPartCard {
  background: radial-gradient(#e6f1ff24, #e6f1ff8f),
    url(../img/texture/texture4.png);
  background-size: cover;
}

/* .incardStyle .masPartCard {
    background: radial-gradient(#ffffffed, #fffffff5), url(https://img.freepik.com/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010125.jpg?t=st=1717240964~exp=1717244564~hmac=6262196…&w=740);
    background-size: 100%;
    background-position: center;
} */
.modalContent .ibmsotitle h4 {
  margin-bottom: 20px;
  text-align: center;
}

.modalContent .ibmsotitle h4::before {
  margin-left: auto;
}

.modalContent .ibmsotitle h4::after {
  margin: auto;
  right: 0px;
}

.servicesInfoModal .modal-body {
  padding: 20px;
  padding-top: 40px;
}

.servicesInfoModal .modalContent p {
  text-align: justify;
}

.servicesInfoModal .modal-content {
  position: relative;
  background: radial-gradient(white, #ffffff75),
    url(../img/texture/texture3.jpg);
  background-size: contain;
}

.servicesInfoModal .modbtncls {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

#MaximoImplementationServicesWrap .masPartCard {
  min-height: 192px;
}

#MaximoCustomizationServicesWrap .masPartCard {
  min-height: 312px;
}

#MaximoAPIIntegrationWrap .masPartCard {
  min-height: 180px;
}

#MaximoUpgradesMaintenanceWrap .masPartCard {
  min-height: 340px;
}

#maximoReportingWrap .masPartCard {
  min-height: 270px;
}

#deployementTestingWrap .masPartCard {
  min-height: 230px;
}

#maximoTestingWrap .masPartCard {
  min-height: 210px;
}

#postDeploymentSupportWrap .masPartCard {
  min-height: 310px;
}

.serviceSecImg {
  width: 90%;
  float: right;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 3px solid #fff;
  border-radius: 15px;
  overflow: hidden;
}

.serviceSecImg img {
  width: 100%;
}

.serviceSecImg.withbgStyle {
  box-shadow: none;
  border: none;
  position: absolute;
  width: 30%;
  right: 0px;
  top: -30px;
  opacity: 0.3;
  border-radius: 0px;
  z-index: 1;
}

.serviceTitlWrap .masTitle,
.serviceTitlWrap .maspara {
  position: relative;
  z-index: 2;
}

.maspara p {
  text-align: justify;
}

#IDCstandardServicesWrap .masfeaturecontent h4 {
  font-size: 16px;
}

#IDCstandardServicesWrap .masfeaturecontent p {
  margin-top: 6px;
  line-height: 20px;
}

#ICDOnDemandServiceWrap .masfeaturecontent h4 {
  font-size: 16px;
}

#ICDOnDemandServiceWrap .masfeaturecontent p {
  margin-top: 6px;
  line-height: 20px;
}

.servicebg1 {
  background: linear-gradient(#e6f1ffc4, #e6f1ffc4),
    url(../img/texture/texture2.jpg);
}

.servicebg1 {
  background: linear-gradient(#e6f1ffc4, #e6f1ffc4),
    url(../img/texture/texture2.jpg);
}

.servicebg2 .masPartCard {
  background: #fff;
}

.cardPara {
  margin-bottom: 10px;
}

#ibmControlDeskWrap .masPartCard {
  min-height: 284px;
}

.masPartCard .prparaReadBtn {
  color: #424242;
  font-weight: 700;
  /* float: right; */
  position: relative;
  right: 2px;
  padding-bottom: 0px;
  margin-left: auto;
  margin-right: 0px;
  width: fit-content;
}

.ibmServiceCardbullet .masfeatureIcon {
  width: 16px;
  height: 16px;
}

.ibmServiceCardbullet .masPartCard {
  padding: 7px 10px;
  margin-top: 9px;
}

.ibmServiceCardbullet .masfeaturecontent h4 {
  font-size: 13px;
}

.serviceOfferingWrapp .about-us-title h4 {
  margin-bottom: 10px;
}

.ibmsoWrapper.service_offering {
  margin-top: 0px;
}

.serviceOfferingWrapp .animated-button {
  margin: auto;
}

.masPartCard.service_offering {
  padding: 30px;
  margin-top: 40px;
}

.masPartCard.service_offering .masPartCard {
  background: #fff;
}

/* Contact Us */
.contactInfoCard {
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #ffffff42;
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid #dddddd6b;
  transition: 0.4s ease-in-out;
  position: relative;
  min-height: 190px;
}

.contactInfoCard::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
  background: linear-gradient(45deg, #fff8f1, white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  visibility: hidden;
  opacity: 0;
}

.contactInfoCard:hover:after {
  height: 105%;
  width: 100.5%;
  visibility: visible;
  opacity: 1;
}

.contactinfoIoc {
  width: 90px;
  margin: auto;
  height: 90px;
  background: linear-gradient(180deg, #003075, #00255a);
  padding: 22px;
  border-radius: 20px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
  transition: 0.4s ease-in-out;
}

.contactInfoCard:hover .contactinfoIoc {
  transform: scale(1.04);
}

.contactinfoIoc img {
  filter: invert(3) brightness(5);
  width: 100%;
}

.contactinfoContent {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  text-align: center;
}

.contactinfoContent h5 {
  font-size: 20px;
  font-weight: 700;
  color: #00112a;
  margin-bottom: 6px;
  margin-top: 22px;
}

.contactinfoContent a {
  display: block;
  color: #111;
}

.mapSection {
  width: 100%;
  height: 100%;
}

.contactusFromCard {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.contactUsForm {
  background: linear-gradient(180deg, #ecf4ff, #f5faff),
    url(../img/bgs/main-texture.webp);
  background-size: 100%;
  background-blend-mode: darken;
}

.contactUsSection {
  padding-top: 90px;
}

.contactOfferWrap {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
}

.contactOfferHeader {
  text-align: center;
  padding: 20px;
  background: linear-gradient(285deg, #ffeded, #fff3e9);
  border-radius: 10px;
}

.contactOfferHeader h4 {
  font-size: 22px;
  font-weight: 600;
  color: #4c1616;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: normal;
}

.contactOfferContent {
  margin-top: 40px;
}

.contactOfferContent p {
  text-align: center;
  margin-bottom: 10px;
}

.contactOfferContent a {
  color: #a62418;
}

.contactOfferContent .ctofspan {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.contactOfferContent .ctofspan span {
  font-size: 18px;
  font-weight: 800;
  color: #ff7500;
}

.contactOfferContent h6 {
  text-align: center;
  color: #ff202d;
  font-size: 19px;
  margin-top: 30px;
}

.hctFromContainer.contactUs {
  margin-left: 0px;
  margin-bottom: 0px;
}

.captcha {
  padding: 0px;
  width: 177px;
  position: relative;
}

.hctFromContainer.contactUs h5 {
  font-size: 20px;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 5px;
}

.refreshcaptcha {
  position: absolute;
  top: 20px;
  bottom: 0px;
  margin: auto;
  right: -29px;
  height: fit-content;
}

.contactbtnSec .animated-button {
  margin-left: auto;
  margin-right: auto;
}

/* Media */
@media screen and (max-width: 1140px) and (min-width: 1025px) {
  .main-navigation ul li a.navlinks {
    padding: 18px 13px;
    font-size: 13px;
  }

  .drop-down li a.sub-navlinks {
    line-height: 32px;
    font-size: 14px;
  }

  .main-navigation ul li.menu-has-child:hover .drop-down {
    top: 73px;
  }

  .flip-box p {
    font-size: 14px;
  }

  .flip-box-front .industryflex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    justify-content: space-between;
    min-height: 277px;
  }

  .industryContent p {
    margin-bottom: 17px;
    font-size: 14px;
  }

  .industryContent {
    min-height: 170px;
  }

  .ourProjectSec .flip-box-front,
  .ourProjectSec .flip-box-back {
    min-height: 327px;
  }

  .ourProjectSec .flip-box-front .industryflex {
    min-height: 327px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .logo-section {
    width: 90px;
  }

  .banner-content h4 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .btn-1 {
    padding: 7px 15px;
    font-size: 14px;
  }

  .banner-content {
    top: 0%;
    width: 65%;
  }

  .main-navigation ul li a.navlinks {
    font-size: 16px !important;
    padding: 14px 9px;
  }

  .getintouch label {
    font-size: 13px;
  }

  .drop-down li a.sub-navlinks {
    font-size: 11px;
  }

  .main-navigation ul li.menu-has-child:hover .drop-down {
    top: 56px;
  }

  .header-section.sticky .main-navigation ul li a.navlinks {
    color: #111;
    padding: 10px 10px;
  }

  .specializationWrapper .col-md-3 {
    width: 45%;
  }

  .industryContent {
    min-height: 190px;
  }
}

@media screen and (max-width: 765px) and (min-width: 425px) {
  .modelImgWrap {
    min-height: 300px;
  }

  .main-navigation {
    display: none;
  }

  .logo-section {
    position: relative;
    width: 80px;
  }

  .header-main-wrap {
    justify-content: space-between;
  }

  .banner-carousel {
    margin-top: 0px;
  }

  .header-section.sticky .logo-section {
    position: relative;
    width: 60px;
  }

  .banner-content h4 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 10px;
    line-height: 15px;
    margin-top: 8px;
  }

  .btn-1 {
    padding: 4px 14px;
    font-size: 11px;
  }

  .banner-content {
    width: 60%;
  }

  .about-us-content-wrapper {
    margin-left: 0px;
  }

  #filters li {
    margin: 10px 14px 0px 0px;
  }

  #containerfilter .filter-item {
    width: 100%;
    margin: 0px;
  }

  .testi-img i {
    margin: 0px 10px;
  }

  .get-in-touch-form {
    padding: 30px 0px;
  }

  .col-md-6.aks-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 424px) and (min-width: 260px) {
  .section-title h4 {
    font-size: 26px;
  }

  .modelImgWrap {
    min-height: 210px;
  }

  .section-title p {
    padding: 0px;
  }

  .engine_image .image_wrap_4 {
    margin: -4px;
  }

  .engine_image {
    height: 198px;
  }

  .modelImgWrap {
    min-height: 400px;
  }

  .banner-carousel .owl-item .item {
    height: 216px;
  }

  .banner-slider-wrapper {
    height: 100%;
  }

  .banner-img {
    height: 100%;
  }

  .banner-img img {
    height: 100%;
  }

  .main-navigation {
    display: none;
  }

  .logo-section {
    position: relative;
    width: 80px;
  }

  .header-main-wrap {
    justify-content: space-between;
  }

  .banner-carousel {
    margin-top: 0px;
  }

  .header-section.sticky .logo-section {
    position: relative;
    width: 60px;
  }

  .banner-content h4 {
    font-size: 16px;
  }

  .banner-content p {
    font-size: 10px;
    line-height: 15px;
    margin-top: 8px;
  }

  .btn-1 {
    padding: 4px 14px;
    font-size: 11px;
  }

  .banner-content {
    width: 88%;
    margin-right: auto;
    margin: auto;
    left: 0px;
    right: 0px;
    text-align: center;
  }

  .about-us-content-wrapper {
    margin-left: 0px;
  }

  .about-us-title h4 {
    font-size: 28px;
    margin-top: 20px;
    text-align: center;
  }

  .about-us-strong p {
    text-align: center;
  }

  #filters li {
    margin: 10px 14px 0px 0px;
  }

  #containerfilter .filter-item {
    width: 100%;
    margin: 0px;
  }

  .testi-img i {
    margin: 0px 10px;
  }

  .get-in-touch-form {
    padding: 30px 0px;
  }

  .col-md-6.aks-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-2 {
    padding: 5px 13px;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    margin: 10px auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-2 i {
    margin-left: 5px;
  }

  .testi-img i {
    padding: 0px;
  }

  .testimonial-card {
    padding: 0px;
  }

  .testi-img {
    margin-top: 24px;
  }

  .inrbnr.inrbnrwithPara .inrbnrtext h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 319px) {
  .banner-carousel .owl-item .item {
    height: 216px;
  }

  .banner-slider-wrapper {
    height: 100%;
  }

  .banner-img {
    height: 100%;
  }

  .banner-img img {
    height: 100%;
  }

  .main-navigation {
    display: none;
  }

  .logo-section {
    position: relative;
    width: 80px;
  }

  .header-main-wrap {
    justify-content: space-between;
  }

  .banner-carousel {
    margin-top: 0px;
  }

  .header-section.sticky .logo-section {
    position: relative;
    width: 60px;
  }

  .banner-content h4 {
    font-size: 16px;
  }

  .banner-content p {
    font-size: 10px;
    line-height: 15px;
    margin-top: 8px;
  }

  .btn-1 {
    padding: 4px 14px;
    font-size: 11px;
  }

  .banner-content {
    width: 60%;
  }

  .about-us-content-wrapper {
    margin-left: 0px;
  }

  .about-us-title h4 {
    font-size: 28px;
    margin-top: 20px;
    text-align: center;
  }

  .about-us-strong p {
    text-align: center;
  }

  #filters li {
    margin: 10px 14px 0px 0px;
  }

  #containerfilter .filter-item {
    width: 100%;
    margin: 0px;
  }

  .testi-img i {
    margin: 0px 10px;
  }

  .get-in-touch-form {
    padding: 30px 0px;
  }

  .col-md-6.aks-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-2 {
    padding: 5px 13px;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    margin: 10px auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-2 i {
    margin-left: 5px;
  }

  .testi-img i {
    padding: 0px;
  }

  .testimonial-card {
    padding: 0px;
  }

  .testi-img {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .featuresCard {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .about-us-title.masTitle h4 {
    font-size: 20px;
    margin-top: 0px;
  }

  .about-us-title.masTitle {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 11px;
  }

  .serviceSecImg {
    width: 100%;
    margin-top: 20px;
  }

  .ibmsotitle h4 {
    text-align: center;
  }

  .ibmsotitle h4::before {
    margin-left: auto;
  }

  .ibmsotitle h4::after {
    right: 0px;
    margin: auto;
  }

  .masPartCard .partTitle {
    font-size: 16px;
  }

  .whychoosWrap .col {
    width: 100%;
    flex: auto;
  }

  .masPartCard {
    padding: 16px;
  }

  .normalList li {
    text-align: left;
  }

  .staffAugmentationImg {
    width: 100%;
  }

  .contactInfoCard {
    margin-bottom: 70px;
  }

  .fCardImg {
    width: 30%;
    margin: 0px auto;
    margin-bottom: 10px;
  }

  .fCardContent {
    width: 100%;
    padding-left: 0px;
    text-align: center;
  }

  .fCardContent p {
    text-align: center;
  }

  .inrbnr.inrbnrwithPara .inrbnrtext .bannerPara {
    margin-top: 0px;
    font-size: 12px;
    padding: 0px;
    line-height: normal;
  }

  .inrbnrwithPara.inrbnr {
    margin-top: 0px;
    padding-top: 70px;
  }

  .banner-content-wrapper {
    top: 15px;
  }

  .hctFromContainer {
    margin-left: 0px;
    padding: 20px;
  }

  .industrySlider.owl-carousel .owl-nav button.owl-prev {
    left: -13px;
    background: #003275d1;
  }

  .industrySlider.owl-carousel .owl-nav button.owl-next {
    right: -13px;
    background: #003275d1;
  }

  #filters li {
    margin: 0px;
    width: 100%;
    padding: 7px 6px;
  }

  #filters {
    flex-wrap: wrap;
  }

  .about-us-content-wrapper .animated-button {
    margin-left: auto;
    margin-right: auto;
  }

  .support {
    font-size: 8px;
    justify-content: space-between;
    line-height: 11px;
    padding: 7px;
    bottom: 26px;
    left: 20px;
    width: 99px;
    height: 35px;
  }

  .support img {
    width: 23px;
    margin-right: 5px;
  }

  .chatbot {
    position: fixed;
    left: 20px;
    text-align: center;
    height: 34px;
    width: 30px;
    border-radius: 100%;
    bottom: 70px;
    z-index: 100000000000;
    animation: bounce 4s infinite ease-in-out;
    animation-delay: 3s;
  }

  #whatsapp {
    height: 30px;
    width: 30px;
    font-size: 17px;
    right: 17px;
    bottom: 0px;
  }

  #button {
    width: 30px;
    height: 30px;
    font-size: 10px;
    right: 20px;
  }

  #button::after {
    font-size: 14px;
    line-height: 33px;
  }

  .header-section.sticky .logo-section img {
    filter: brightness(3) invert(1) grayscale(5) contrast(23);
  }

  .staffAugmentationImg {
    top: 0px;
  }

  .SAsomeParaContent {
    margin: 0px;
  }

  .staffAugmentationImg .stagImgWrap:last-child {
    position: initial;
  }

  .staffAugmentation .col-reverse {
    flex-direction: column-reverse;
  }

  .modelImgWrap .modelCircle.modelmg {
    position: initial;
  }

  .header-section .toggle-btn {
    display: block;
  }

  .main-navigation ul.menu-bar-ul {
    flex-direction: column;
  }

  .header-section.sticky .main-navigation ul li a.navlinks {
    color: #fff;
  }

  .main-navigation {
    display: none;
    width: 100%;
    position: fixed;
    top: 74px;
    z-index: 55;
    background: #09377a;
    left: 0px;
    right: 0px;
    margin: auto;
    min-height: 100vh;
  }

  .main-navigation ul li a.navlinks {
    border-bottom: 1px solid #dddddd3b;
    padding: 6px 16px;
    position: relative;
    color: #fff;
  }

  .main-navigation ul li.menu-has-child:hover .drop-down {
    top: unset;
    visibility: unset;
    opacity: unset;
  }

  .drop-down {
    opacity: 1;
    visibility: visible;
    position: unset;
    top: 70px;
    width: 100%;
    background: #00234c;
    padding: 0px 15px;
    width: 97%;
    margin: 0px auto;
    display: none;
    transition: unset !important;
  }

  .drop-down li a.sub-navlinks {
    color: #fff;
  }

  .header-section.sticky .logo-section {
    position: relative;
    width: 120px;
  }

  .drop-down li a.sub-navlinks:hover {
    padding-left: unset;
  }

  .drop-down li a.sub-navlinks {
    padding-left: 8px;
    padding: 0px 11px;
    font-size: 14px;
  }

  .header-section.sticky .main-navigation {
    top: 68px;
  }

  .main-navigation ul li.menu-has-child a.navlinks i {
    position: absolute;
    right: 4px;
    top: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #00244c;
    color: #fff;
    border-radius: 7px;
  }

  .engine_image [class*="image_wrap_"] img {
    width: 75%;
  }

  .modelImgWrap {
    width: 75%;
    margin: 0px auto;
    min-height: auto;
  }

  .logo-section {
    position: relative;
    width: 130px;
  }

  .main-navigation {
    transition: unset !important;
  }

  .aks-logo p {
    text-align: center;
  }

  .topHeaderWrapper {
    flex-direction: column;
  }

  /* .topHeaderSocial ul {
        flex-direction: column;
    } */
  .topHeaderWrapper a,
  .topHeaderWrapper p,
  .topHeaderWrapper li {
    font-size: 9px;
  }

  .engageContentRow.first {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
  }

  .engageContentRow.second {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 51px;
  }

  .engageContentRow.third {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .saInfoContent {
    width: 72%;
  }

  .staffMainImg {
    width: 63%;
    margin: 70px auto;
    margin-bottom: 50px;
  }

  .logo-section img {
    filter: none;
  }

  .topHeader.Inheader {
    display: none;
  }

  .about-shape-1 img {
    opacity: 0.4;
  }
}

/* our brands */

.clients-section {
  margin-top: 50px;
  padding: 100px 0px;
  /* background: linear-gradient(#e6f1ffc4, #e6f1ffc4), url(../img/texture/texture1.png); */
  background-size: contain;
  background-position: right top;
}

.clients {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.clients-border>li {
  position: relative;
}

.clients li {
  height: 100px;
  margin: 0 41px;
  width: 100px;
  display: inline-block;
  cursor: pointer;
}

.clients>li img {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.clients li img {
  max-width: 90%;
  -webkit-transition: all .35s ease-in-out;
  -o-transition: .35s all ease-in-out;
  transition: all .35s ease-in-out;
}

.clients-border>li:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #eee;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.black_box:after {
  background: #000000 !important;
}

.shadow-up {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* .clients li img {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.clients li:hover img {
  transform: scale(1.1);
} */

.shadow-3d1 {
  box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.45), 5px 5px 9px rgba(94, 104, 121, 0.3);
}

.shadow-3d2 {
  box-shadow: inset -5px -5px 9px rgba(255, 255, 255, 0.50), inset 5px 5px 9px rgba(94, 104, 121, 0.3);
}

.shadow-3d3 {
  box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.45), 5px 5px 9px rgba(94, 104, 121, 0.3);
}

#careers h2 {
  text-align: center;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid #4caf50;
  display: inline-block;
  padding-bottom: 5px;
}

/* Individual job section */
.job {
  margin-bottom: 30px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

.job h3 {
  color: #4caf50;
  font-size: 1.5em;
  margin: 10px 0;
}

.job p {
  color: #555;
  line-height: 1.6;
}

/* Job list */

/* Hover effect */
.job:hover {
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}





.directors {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d3f1fd;
}

.profile-card {
  position: relative;
  font-family: sans-serif;
  width: 300px;
  height: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
  margin: 0 25px;
}

.profile-card:hover {
  border-radius: 10px;
  height: 350px;
}

.profile-card .img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  z-index: 99;
}

.profile-card:hover .img {
  transform: translateY(-60px);
}

.img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
}

.profile-card:hover img {
  border-radius: 10px;
}

.caption {
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: 0.6s;
}

.profile-card:hover .caption {
  opacity: 1;
}

.caption h3 {
  font-size: 21px;
  font-family: sans-serif;
}

.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}

.caption .social-links a {
  color: #333;
  margin-right: 15px;
  font-size: 21px;
  transition: 0.6s;
}

.social-links a:hover {
  color: #0c52a1;
}

.orotuff-directors-section {
  line-height: 1.6;
  background-color: #d3f1fd;
  padding: 0px 0px 50px;
  color: #333;
}

.orotuff-directors-section .container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.orotuff-directors-section h1 {
  text-align: center;
  color: #fdbf07;
  font-size: 36px;
  margin-bottom: 20px;
}

.orotuff-directors-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.orotuff-directors-section .strong-text {
  font-weight: bold;
  color: #fdbf07;
}

.orotuff-directors-section .vision-list {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
}

.orotuff-directors-section .vision-list li {
  background-color: #e0f7fa;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 4px solid #fdbf07;
}

.orotuff-directors-section .directors {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.orotuff-directors-section .director {
  text-align: center;
}

.orotuff-directors-section .director h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}

.orotuff-directors-section .highlight {
  font-weight: bold;
  color: #fdbf07;
}

.orotuff-directors-section .footer {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #777;
}

section.stats {
  text-align: center;
  background-color: #f8f9fa; /* Light background color */
  padding: 50px 0;
}

.stats .stat-item {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.stats .stat-item:hover {
  transform: translateY(-10px);
}

.stats .number {
  font-size: 3rem;
  font-weight: bold;
  color: #5cc1c5;
}

.stats .description {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #555;
}