/**
 * Theme Name: Andglyph
 * Author: Andglyph Tech Solutions
 * Description: Analyse, Navigate & Develop
 * Version: 1.0.1
 * */

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ----- Global ----- */
:root {
  --primaryFont: "Roboto", sans-serif;
  --secondaryFont: "Poppins", sans-serif;
  --stylingFont: "Jost", sans-serif;
  --primaryColor: #67d294;
  --bodyColor: #404040;
  --blackColor: #252525;
  --whiteColor: #ffffff;
  --grayColor: #595959;
}

* {
  margin: 0;
  padding: 0;
  object-fit: cover;
}

img {
  max-width: 100%;
  width: auto;
}

div::after,
ul::after {
  display: block;
  clear: both;
  visibility: visible;
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 0;
}

ul li,
ol li {
  list-style-type: none;
}

p,
li {
  font-size: 18px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: var(--blackColor);
}

a:hover {
  text-decoration: none;
}

html {
  scroll-behavior: initial;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--primaryFont);
  font-weight: 400;
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondaryFont);
}

.custom-py-lg {
  padding: 175px 0;
}

.custom-py {
  padding: 150px 0;
}

.custom-px {
  padding: 0 150px;
}

.custom-pt {
  padding-top: 150px;
}

.custom-pb {
  padding-bottom: 150px;
}

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

.custom-pt-sm {
  padding-top: 100px;
}

.custom-py-sm {
  padding: 100px 0;
}

.custom-my {
  margin: 150px 0;
}

.custom-mx {
  margin: 0 150px;
}

.custom-mt {
  margin-top: 150px;
}

.custom-mb {
  margin-bottom: 150px;
}

.custom-mb-sm {
  margin-bottom: 50px;
}

.custom-btn {
  font-size: 18px;
  padding: 12px 45px;
  border-radius: 35px;
  display: inline-block;
  border: solid 1px var(--blackColor);
  background-color: transparent;
  color: var(--blackColor);
  font-weight: 600;
}

.custom-btn:hover {
  border: solid 1px #ec4b24;
  background-color: #ec4b24;
  color: #fff;
}

.container-fluid {
  padding: 0 75px;
}

.title h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 15px;
}

/* ----- Home Page ----- */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  max-width: 100%;
}

header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .container-fluid .logo {
  width: 15%;
}

header .container-fluid .navigation,
header .container-fluid .navigation .main-menu,
header .container-fluid .navigation .menu-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container-fluid .navigation .main-menu li {
  padding: 40px 25px 40px 0;
  position: relative;
}


header .container-fluid .navigation .main-menu li>a {
  padding: 7px;
  font-size: 17px;
  font-weight: 500;
}

header .container-fluid .navigation .main-menu li.drop-down-listing ul li>a {
  padding: 0 !important;
}

header .container-fluid .navigation .main-menu li>a:hover,
header .container-fluid .navigation .main-menu li>a.active {
  color: var(--grayColor);
}

header .container-fluid .navigation .menu-icon svg {
  width: 18px;
  height: 18px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--whiteColor);
  width: 250px;
  padding: 20px;
  display: none;
}

header .container-fluid .navigation .main-menu li.drop-down-listing:hover .sub-menu {
  display: block;
}

header .container-fluid .navigation .sub-menu li {
  padding: 7px 0;
}

.mini-hamburger,
.search-main {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #ffffff99;
  /* fill: rgba(255, 255, 255, 0.60); */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 15px;
}

.banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner .banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner .banner-sub-bg {
  z-index: 9;
}

.banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  width: 100%;
  text-align: center;
  padding: 200px 0 150px;
}

.banner-text-heading {
  display: inline-block;
}

.banner-text-heading h4 {
  display: flex;
  justify-content: end;
  font-size: 25px;
  font-weight: 500;
  font-family: var(--stylingFont);
  position: relative;
  z-index: 5;
  color: var(--whiteColor);
  padding-right: 8px;
}

.banner-text .banner-text-heading h1 {
  position: relative;
  z-index: 5;
  color: var(--whiteColor);
  text-shadow: 0px 0px 60px rgba(0, 0, 0, 0.2);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--whiteColor);
  font-family: var(--stylingFont);
  font-size: 165px;
  font-style: normal;
  font-weight: 300;
  line-height: 140px;
  letter-spacing: -4.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.banner-text .banner-text-heading h1 span {
  font-family: var(--secondaryFont);
  font-size: 145px;
  font-style: normal;
  font-weight: 100;
  line-height: 125px;
  letter-spacing: 0px;
}

.banner-text-sub-heading {
  position: relative;
  z-index: 15;
  color: var(--whiteColor);
}

.banner-text-sub-heading p {
  margin-bottom: 20px;
  font-size: 20px;
}

.banner-text-sub-heading .custom-btn {
  border: solid 1px var(--primaryColor);
  background-color: var(--primaryColor);
}

.banner-text-sub-heading .custom-btn:hover {
  border: solid 1px var(--whiteColor);
  background-color: var(--whiteColor);
}

.cloud1 {
  position: absolute;
  top: 20%;
  left: -20%;
  width: 50%;
  z-index: 5;
  animation: smokebg 60s infinite alternate;
}

.cloud2 {
  position: absolute;
  bottom: -8%;
  left: 28%;
  width: 50%;
  z-index: 5;
  animation: smokebg-2 55s infinite alternate;
}

.cloud3 {
  position: absolute;
  bottom: 0%;
  right: -15%;
  width: 45%;
  z-index: 10;
  animation: smokebg-3 90s infinite alternate;
}

.banner-btm-sec {
  padding: 25px 0;
  border-bottom: 1px solid #dfdfdf;
  background-color: var(--whiteColor);
}

.banner-btm-main,
.banner-btm-sub {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.banner-btm-sub-title {
  margin-right: 15px;
}

.banner-btm-sub-title h2 {
  color: var(--blackColor);
  text-align: center;
  font-family: var(--stylingFont);
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.banner-btm-sub-title h2 span {
  font-size: 30px;
}

.banner-btm-sub-con span {
  color: var(--grayColor);
  font-family: var(--primaryFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.banner-btm-sub-con span i {
  width: 17px;
  height: 17px;
  margin-right: 2px;
  display: inline-block;
}

.home-about {
  position: relative;
  overflow: hidden;
}

.home-about .home-about-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  z-index: -1;
}

.home-about .title h2 span {
  display: inline-block;
  margin-left: -18px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
}

.home-about .title h2 span img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.home-about .title h2 span:first-child {
  margin-left: 0;
}

.home-about-sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-sec-main {
  margin: 0 auto;
  text-align: center;
}

.home-about-sub-sec {
  width: 24%;
  position: relative;
}

.home-about-sub {
  position: relative;
}

.home-about-sub-sec h2 {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--secondaryFont);
  margin-bottom: 0;
  line-height: 35px;
}

.home-about-sub-sec h2 span {
  font-size: 25px;
  font-weight: 500;
}

.home-about-sub-sec:nth-child(1) .home-about-sub:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(44, 44, 44, 0) 0%,
      rgba(20, 20, 20, 0.75) 100%);
}

.home-about-sub-sec:nth-child(1) h2 {
  width: 80%;
  position: absolute;
  bottom: 25px;
  left: 10%;
  z-index: 15;
  color: var(--whiteColor);
}

.home-about-sub-sec:nth-child(1) h2 span {
  font-weight: 400;
}

.home-about-sub-sec:nth-child(1) .home-about-round {
  width: 57%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: var(--whiteColor);
}

.home-about-sub-sec:nth-child(2) .home-about-sub {
  margin-top: 150px;
  padding: 90px 0;
  background-color: var(--primaryColor);
}

.home-about-sub-sec:nth-child(2) .home-about-sub .home-about-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-about-sub-sec:nth-child(2) .home-about-sub .home-about-star1 {
  position: absolute;
  top: -100px;
  left: 55%;
  z-index: 1;
  width: 9%;
  animation: zoom-scale 10s infinite;
}

.home-about-sub-sec:nth-child(2) .home-about-sub .about-link {
  position: absolute;
  bottom: 15px;
  right: 25px;
  z-index: 1;
  width: 9%;
}

.home-about-sub-sec:nth-child(2) .home-about-sub .home-about-sub-text {
  position: relative;
  z-index: 15;
  color: var(--blackColor);
  width: 70%;
  margin: 0 auto;
}

.home-about-sub-sec:nth-child(2) .home-about-sub .home-about-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-sub-sec:nth-child(3) .home-about-sub {
  background-color: #fff2d1;
  margin-top: 50px;
}

.home-about-sub-sec:nth-child(3) .home-about-sub .home-about-sub-text {
  position: absolute;
  z-index: 15;
  color: var(--blackColor);
  width: 70%;
  bottom: 15px;
  right: 15px;
}

.home-about-sub-sec:nth-child(3) .home-about-sub .billMurray {
  position: absolute;
  z-index: 15;
  color: var(--blackColor);
  width: 60%;
  left: 10px;
  top: -50px;
}

.hover-right {
  -webkit-transform: perspective(800px) rotateY(25deg);
  -moz-transform: perspective(800px) rotateY(25deg);
  -o-transform: perspective(800px) rotateY(25deg);
  -ms-transform: perspective(800px) rotateY(25deg);
  transform: perspective(800px) rotateY(25deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.hover-left {
  -webkit-transform: perspective(800px) rotateY(-25deg);
  -moz-transform: perspective(800px) rotateY(-25deg);
  -o-transform: perspective(800px) rotateY(-25deg);
  -ms-transform: perspective(800px) rotateY(-25deg);
  transform: perspective(800px) rotateY(-25deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.start {
  -webkit-transform: perspective(800px) rotateY(0deg);
  -moz-transform: perspective(800px) rotateY(0deg);
  -o-transform: perspective(800px) rotateY(0deg);
  -ms-transform: perspective(800px) rotateY(0deg);
  transform: perspective(800px) rotateY(0deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.home-about-sub-sec:nth-child(4) .home-about-sub {
  background: #eef4fe;
  margin-top: 50px;
}

.home-about-sub-sec:nth-child(4) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .about-link {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 1;
  color: var(--blackColor);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--secondaryFont);
}

.home-about-sub-sec:nth-child(4) .home-about-sub .about-link img {
  width: 25px;
  margin-left: 5px;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: var(--whiteColor);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count1 {
  position: absolute;
  top: 35px;
  left: 45px;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
  position: absolute;
  top: 140px;
  right: 40px;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count h2 {
  font-size: 50px;
  margin-bottom: 5px;
  font-family: var(--secondaryFont);
  color: var(--blackColor);
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count span {
  font-size: 13px;
  font-family: var(--secondaryFont);
  color: var(--bodyColor);
  display: inline-flex;
  line-height: 20px;
  justify-content: center;
  width: 100%;
  font-weight: 500;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
  position: absolute;
  top: 85px;
  width: 25%;
  left: -120px;
}

.home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star3 {
  position: absolute;
  bottom: -15px;
  width: 20%;
  right: 40px;
  animation: zoom-scale 10s infinite;
}

.brand {
  padding: 0 15px;
}

.brand-img {
  border: solid 1px #dfdfdf;
}

.solutions {
  position: relative;
}

.solutions .solutions-vec {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;
  width: 35%;
}

.solutions-sec {
  height: 100%;
  padding-bottom: 25px;
  transition: all 0.3s ease-in-out;
}

.solutions-sec a {
  position: relative;
  padding: 35px;
  background-color: #f8f8f8;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.solutions-sec p {
  margin-bottom: 0;
  color: var(--bodyColor);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.solutions-sec h3 {
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 23px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.solutions-sec:hover p,
.solutions-sec:hover h3 {
  color: var(--whiteColor);
}

.solutions-sec .color-icon {
  margin-bottom: 25px;
  width: 100px;
}

.solutions-sec .white-icon {
  margin-top: 0;
  width: 100px;
}

.solutions-sec .white-icon,
.solutions-sec:hover .color-icon {
  transform: scale(0);
  height: 0;
  /* transition: all 0.3s ease-in-out; */
  margin-bottom: 0;
}

.solutions-sec .color-icon img,
.solutions-sec .white-icon img {
  width: 70%;
}

.solutions-sec:hover .white-icon {
  transform: scale(1);
  height: auto;
  margin-top: 25px;
}

.solutions-sec .ats-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.solutions-sec .ats-bg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.solu-main {
  position: relative;
  z-index: 9;
  height: 100%;
}

.solu-icon {
  position: absolute;
  z-index: 9;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

/*.solutions-sec:hover a {*/
/*  background-color: var(--primaryColor);*/
/*}*/

.solutions-sec:hover .ats-bg,
.solutions-sec:hover .solu-icon {
  opacity: 1;
}

.solutions-title .custom-btn {
  margin-top: 20px;
}

.home-project {
  overflow: hidden;
}

.home-project .container-fluid {
  padding: 0 0 0 75px;
}

.home-project .title p {
  width: 75%;
}

.home-project-slider {
  position: relative;
}

.home-project-slide a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.home-project-com {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 35px;
}

.home-project-com .home-project-text h3 {
  color: var(--blackColor);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: capitalize;
}

.home-project-com .home-project-text p {
  color: var(--blackColor);
}

.owl-theme .owl-nav {
  margin-top: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  right: 75px;
  top: -100px;
  display: inline-block;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: var(--whiteColor);
  width: 50px;
  height: 50px;
  border: solid 1px #c9c9c9;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  color: #707070;
  font-weight: 300;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  border: solid 1px var(--primaryColor);
  background: var(--primaryColor);
  transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-nav button:focus {
  display: none;
}

.home-project .btn-sec-main {
  text-align: right;
  padding-right: 75px;
  padding-top: 50px;
}

.home-project .title h2 {
  display: flex;
  align-items: center;
}

.home-project .title h2 span {
  width: 135px;
  height: auto;
  border-radius: 30px;
  display: inline-block;
  overflow: hidden;
  margin: 0 15px;
}

.home-project .title span img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.home-work {
  position: relative;
}

.home-work-sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-work-sec .home-work-box {
  text-align: center;
  width: 23%;
}

.home-work-sec .home-work-box:nth-child(even) {
  margin-top: 50px;
}

.home-work-sec .home-work-box .home-work-box-img {
  width: 165px;
  height: 165px;
  background-color: #f2fff8;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 25px;
}

.home-work-sec .home-work-box .home-work-box-img img {
  width: 60%;
  height: auto;
}

.home-work-sec .home-work-box:nth-child(even) .home-work-box-img {
  background-color: #fffbef;
}

.home-work .btn-sec-main {
  margin-top: 50px;
}

.home-work-box-text h3 {
  font-size: 22px;
  color: var(--blackColor);
  font-weight: 600;
}

.home-work-box-text p {
  margin-bottom: 0;
}

.home-work .work-bg-vec {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  top: 55%;
  transform: translateY(-45%);
}

.home-work .home-work-icon1 {
  position: absolute;
  left: 25%;
  top: -100px;
  z-index: -1;
  width: 100px;
}

.home-work .home-work-icon2 {
  position: absolute;
  left: 5%;
  top: 20px;
  z-index: -1;
  width: 100px;
}

.home-work .home-work-icon3 {
  position: absolute;
  right: 15%;
  top: 20px;
  z-index: -1;
  width: 115px;
}

.home-work .home-work-icon4 {
  position: absolute;
  right: 2%;
  top: 125px;
  z-index: -1;
  width: 115px;
}

.home-work .home-work-icon5 {
  position: absolute;
  right: 3%;
  bottom: -50px;
  z-index: -1;
  width: 115px;
}

.home-work .home-work-icon6 {
  position: absolute;
  left: 3%;
  bottom: 0;
  z-index: -1;
  width: 115px;
}

.feedback {
  position: relative;
  /*  background: var(--primaryColor);*/
}

.feedback-slide {
  padding: 0 10px;
}

.feedback-sec {
  position: relative;
  background-color: var(--whiteColor);
  transition: all 0.3s ease-in-out;
  padding: 25px 35px;
}

.feedback-icon1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 6%;
}

.feedback-icon2 {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 1;
  width: 7%;
}

.feedback-icon3 {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: 1;
  width: 8%;
}

.feedback-icon4 {
  position: absolute;
  bottom: 85px;
  right: 0;
  z-index: 1;
  width: 5%;
}

.feedback-icon5 {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 1;
  width: 8%;
}

.feedback-sec a {
  padding: 25px 35px;
  display: block;
}

.feedback-sec .feedback-content h5 {
  font-size: 14px;
  color: var(--blackColor);
  line-height: 25px;
  margin-bottom: 20px;
  overflow: hidden;
  /* max-width: 400px; */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.feedback-sec .feedback-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feedback-sec .feedback-btm .feedback-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  border-radius: 100%;
  border: none;
  color: var(--blackColor);
  width: 40px;
  height: 40px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.feedback-sec:hover .feedback-arrow {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.feedback-sec .feedback-btm .feedback-client {
  display: inline-flex;
  align-items: center;
  width: calc(100% - 50px);
}

.feedback-sec .feedback-btm .feedback-client-text {
  width: calc(100% - 70px);
}

.feedback-sec .feedback-btm .feedback-client-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blackColor);
  margin-bottom: 0;
}

.feedback-sec .feedback-btm .feedback-client-text p {
  font-size: 15px;
  font-weight: 400;
  color: var(--grayColor);
  margin-bottom: 0;
}

.feedback-sec .feedback-btm .feedback-client-text p span {
  font-weight: 600;
  color: var(--blackColor);
}

.feedback-sec .feedback-btm .feedback-client-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 20px;
}

.feedback-sec .feedback-btm .feedback-client-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.feedback .slick-dots {
  text-align: left;
  bottom: -40px;
  padding-left: 5px;
}

.feedback .slick-dots li {
  width: auto;
  height: auto;
}

.feedback .slick-dots li button {
  width: auto;
  height: auto;
  line-height: normal;
}

.feedback .slick-dots li button:before {
  font-size: 9px;
  width: auto;
  height: auto;
  opacity: 1;
  color: var(--whiteColor);
}

.feedback .slick-dots li.slick-active button:before {
  color: #276e45;
}

.feedback .btn-sec-main {
  text-align: right;
  padding-right: 10px;
}

.feedback .btn-sec-main .custom-btn:hover {
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
}

.image-holder {
  width: 95%;
}

.case-studies {
  position: relative;
}

.case-studies .case-vec1 {
  position: absolute;
  bottom: -35px;
  left: 250px;
  z-index: 1;
  width: 4%;
}

.case-studies .case-vec2 {
  position: absolute;
  top: -60px;
  right: 100px;
  z-index: 1;
  width: 3%;
}

.case-studies-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.case-studies-list li {
  width: 48%;
}

.case-studies-list li a {
  width: 100%;
  display: inline-block;
  overflow: hidden;
}

.admin-date {
  margin-bottom: 10px;
}

.admin-date span {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--grayColor);
  font-weight: 500;
}

.admin-date span:first-child {
  padding-right: 25px;
  position: relative;
}

.admin-date span:first-child::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  content: "";
  /*background: url(../images/case-studies/dots.svg) no-repeat center;*/
  background-size: cover;
}

.admin-date span:last-child {
  padding-left: 25px;
}

.admin-date .user-case {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.admin-date span:first-child {
  text-transform: capitalize;
}

.admin-date .calender-case {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.case-studies-list h3 {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
  line-height: 25px;
  color: var(--blackColor);
  transition: all 0.3s ease-in-out;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--grayColor);
  /*  margin-left: -100px;*/
  transition: all 0.3s ease-in-out;
}

.read-more .fa-arrow-right-long {
  width: 20px;
  margin-left: 10px;
  transition: margin 0.2s ease-in-out;
}

.case-studies-list a:hover .read-more .fa-arrow-right-long {
  width: 20px;
  margin-left: 20px;
}

.case-studies-list a:hover .read-more {
  margin-left: 0;
  color: var(--primaryColor);
}

.case-studies-list a:hover h3 {
  color: var(--primaryColor);
}

.case-studies .btn-sec-main {
  text-align: right;
  margin-top: 30px;
}

.case-studies-list li:nth-child(1),
.case-studies-list li:nth-child(2) {
  margin-bottom: 50px;
}

.footer-top {
  width: 100%;
  padding: 75px 0 40px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-main .footer-menu:nth-child(1) {
  width: 24%;
}

.footer-main .footer-menu:nth-child(2) {
  width: 24%;
}

.footer-main .footer-menu:nth-child(3) {
  width: 24%;
}

.footer-main .footer-menu:nth-child(4) {
  width: 24%;
}

.footer-links {
  font-size: 18px;
  color: #000;
}

.footer-logo {
  width: 70%;
  display: inline-block;
  height: 85px;
}

.footer-menu p {
  margin-bottom: 30px;
}

.footer-address {
  font-size: 18px;
  padding: 5px 0 0;
}

.footer-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 10px;
  color: var(--bodyColor);
  background-color: var(--whiteColor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}

.footer-icon:hover {
  color: var(--whiteColor);
  background-color: #ec4b24;
}

.footer-menu h5 {
  color: var(--blackColor);
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  height: 40px;
}

.footer-menu ul li {
  margin-bottom: 10px;
}

.footer-menu ul li a {
  padding: 5px 0;
  display: inline-block;
  color: var(--bodyColor);
}

.footer-menu ul li a:hover {
  color: #ec4b24;
}

.gap-between-items{margin-bottom: 20px;}

.gap-between-items svg{padding-right: 10px; height: 25px; width: 25px;}

/*.footer-main .footer-menu:nth-child(1) ul li {*/
/*  background-color: var(--whiteColor);*/
/*  padding: 20px;*/
/*  position: relative;*/
/*  text-align: center;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li span {*/
/*  position: absolute;*/
/*  top: 20px;*/
/*  left: 20px;*/
/*  display: inline-block;*/
/*  padding: 3px 24px;*/
/*  border: solid 1px #afafaf;*/
/*  color: var(--grayColor);*/
/*  border-radius: 20px;*/
/*  font-size: 15px;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li .dubai-office-img {*/
/*  width: 90px;*/
/*  margin: 0 auto;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li .kolkata-office-img {*/
/*  width: 80%;*/
/*  margin: 15px auto;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li h4 {*/
/*  font-size: 15px;*/
/*  font-weight: 600;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li p {*/
/*  font-size: 15px;*/
/*  color: var(--grayColor);*/
/*  margin-bottom: 10px;*/
/*}*/

/*.footer-main .footer-menu:nth-child(1) ul li a {*/
/*  font-size: 15px;*/
/*  color: var(--grayColor);*/
/*  margin-bottom: 10px;*/
/*  display: block;*/
/*  line-height: 20px;*/
/*  padding: 0;*/
/*}*/


.footer-btm {
  padding: 20px 0;
}

.footer-btm {
  padding: 30px 0;
  /*display: flex;*/
  /*justify-content: space-between;*/
  align-items: center;
}

.footer-btm p {
  font-size: 14px;
  margin-bottom: 0;
}

.footer-btm p a {
  color: var(--blackColor);
  font-weight: 600;
}

.footer-btm ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-btm ul li a {
  font-size: 14px;
  padding: 0 10px;
  display: inline-block;
  color: var(--grayColor);
}

/* ----- Keyframes Animation ----- */

@keyframes rotate-scale {
  0% {
    transform: rotate(-45deg) scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes zoom-scale {
  0% {
    transform: rotate(-180deg) scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: rotate(180deg) scale(1);
  }
}

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

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

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

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

@keyframes icon-move {
  0% {
    top: 20%;
    left: 60%;
    transform: translate(-40%, -80%);
  }

  50% {
    top: 80%;
    left: 40%;
    transform: translate(-60%, -20%);
  }

  100% {
    top: 20%;
    left: 60%;
    transform: translate(-40%, -80%);
  }
}

@keyframes smokebg {
  25% {
    transform: translate3d(100px, 0, 0) rotate(0.01deg);
  }

  50% {
    transform: translate3d(75px, -25px, 0) rotate(0.01deg);
  }

  75% {
    transform: translate3d(45px, 30px, 0) rotate(0.01deg);
  }

  100% {
    transform: translate3d(25px, -15px, 0) rotate(0.01deg);
  }
}

@keyframes smokebg-2 {
  25% {
    transform: translate3d(-100px, 0, 0) rotate(0.01deg);
  }

  50% {
    transform: translate3d(-75px, 25px, 0) rotate(0.01deg);
  }

  75% {
    transform: translate3d(-45px, 30px, 0) rotate(0.01deg);
  }

  100% {
    transform: translate3d(-25px, 15px, 0) rotate(0.01deg);
  }
}

@keyframes smokebg-3 {
  25% {
    transform: translate3d(-150px, 0, 0) rotate(0.01deg);
  }

  50% {
    transform: translate3d(-125px, -25px, 0) rotate(0.01deg);
  }

  75% {
    transform: translate3d(-75px, -30px, 0) rotate(0.01deg);
  }

  100% {
    transform: translate3d(-25px, -15px, 0) rotate(0.01deg);
  }
}





.work-progress-sec {
  background-color: #fff;
  position: relative;
  padding: 100px 0;
}

.work-progress-sec ul li {
  margin-bottom: 30px;
}

.work-progress-sec ul li h3 {
  color: #252525;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}

.work-progress-sec ul li h3::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #252525;
  border-radius: 50px;
}

.work-progress-img {
  width: 80%;
  margin-left: auto;
}







.we-done-sec {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
}

.we-done-sec .done-box {
  padding: 30px;
  background: #F8F8F8;
  position: relative;
  z-index: 1;

}

.we-done-sec .done-box h3 {
  color: #252525;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}




.choose_sec {
  background-color: #fff;
  position: relative;
  padding: 100px 0;
}

.choose_sec .choose-shape {
  position: absolute;
  left: -20px;
  top: -28%;
  width: 40%;
  z-index: 0;
}

.choose-con1 p {
  width: 85%;
}

.choose-con2 h3 {
  color: #252525;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

.choose-con2 ul li {
  margin-bottom: 30px;
}

.sd-choose-shape1 {
  position: absolute;
  top: 23.5%;
  left: 22%;
  z-index: 1;
  width: 1%;
  animation: zoom-scale 10s infinite;
}

.sd-choose-shape2 {
  position: absolute;
  top: 45%;
  left: 9%;
  width: 20px;
  z-index: 1;
  animation: rotate-scale 4s infinite;
}



.work-progress-sec .row {
  margin: 0;
}


/* faq sec */

.faq_sec {
  position: relative;
  background-color: #fff;
  padding: 30px 0;
}

.faq-accordian-div {
  margin: 0 auto;
  width: 60%;
}

.faq-item {
  width: 100%;
  transition: 0.3s
}

.faq-item details {
  margin-bottom: 20px !important;
  background-color: #fff !important;
  border-bottom: 1px solid #DFDFDF;
}

.faq-item h3 {
  color: #252525;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

.faq-item summary {
  list-style: none;
  padding: 15px 38px 15px 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item details[open] {
  border: none;
  margin-top: -1px;
}

.faq-ans {
  padding: 0px 42px 15px 15px;
  position: relative;
  animation: sweep .7s ease-in-out;
}

.faq-item details[open] summary {
  color: #000;
  border-radius: 5px 5px 0 0;
}

.faq-item details[open] summary~.faq-ans {
  animation: sweep .5s ease-in-out;
  color: #000;
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #DFDFDF;
}


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

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










.kolkata-office-img img {
  animation-name: kolkata;
  animation-duration: 5s;
  transition: 0.5s linear;
}

@keyframes kolkata {
  0% {
    filter: blur(10px);
    transition: all 0.5s linear;
  }

  100% {
    filter: blur(0);
    transition: all 0.5s linear;
  }
}

.dubai-office-img img {
  animation-name: dubai;
  animation-duration: 5s;
  transition: 0.5s linear;
}

@keyframes dubai {
  0% {
    filter: blur(10px);
    transition: all 0.5s linear;
  }

  100% {
    filter: blur(0);
    transition: all 0.5s linear;
  }
}


.inner-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: sticky;
  z-index: -1;
  top: 0;
}

.inner-banner-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  z-index: -1;
}

.inner-banner-text {
  padding: 200px 0 50px;
}

.inner-banner-text h1 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.inner-banner .vec-star1 {
  position: absolute;
  top: 140px;
  left: 230px;
  width: 30px;
  z-index: 1;
  animation: rotate-scale 4s infinite;
}

.inner-banner .vec-star2 {
  position: absolute;
  bottom: 50px;
  left: 55%;
  width: 30px;
  z-index: 1;
  animation: zoom-scale 4s infinite;
}

.inner-banner .vec-star3 {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 25px;
  z-index: 1;
  animation: zoom-scale 4s infinite;
}

.inner-banner .vec-idea {
  position: absolute;
  top: -40%;
  right: -5%;
  width: 6%;
  z-index: 1;
}

.pbmit-header-search-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.pbmit-header-search-btn input,
.pbmit-header-search-btn button {
  background: transparent;
  border: none;
  outline: none;
  font-size: 20px;
  color: #fff;
  width: 100%;
}

.pbmit-search-overlay.st-show .pbmit-header-search-btn {
  border-bottom: solid 1px #ddd;
}

.search-result-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}


.solutions-inner {
  background-color: var(--whiteColor);
}

.solutions-inner .solutions-sec a {
  background-color: var(--whiteColor);
  border: solid 1px var(--blackColor);
}

.solutions-inner .solutions-sec a:hover {
  background-color: var(--primaryColor);
}

.solutions-inner .solutions-sec ul li {
  color: var(--bodyColor);
  list-style-type: disc;
  margin-left: 18px;
}

.solutions-inner .solutions-sec a:hover ul li {
  color: var(--whiteColor);
}

.solutions-inner .btn-sec-main {
  margin-top: 50px;
}

.inner-brands {
  background-color: var(--whiteColor);
}



.details-serv {
  background-color: var(--whiteColor);
}

.details-serv-sec {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 20px;
}

.details-serv-sec .details-serv-box {
  background: #f8f8f8;
  padding: 40px;
}

.details-serv-sec .details-serv-box h4 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 132% */
  margin-bottom: 10px;
}

.details-serv-sec .details-serv-box p {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}

.details-serv-sec .details-serv-box .details-serv-img {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

.details-serv-sec .details-serv-box .details-serv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-serv-sec .details-serv-box:nth-child(3) {
  grid-row: 1/3;
}

.methods {
  background-color: var(--whiteColor);
  position: relative;
}

.methods .methods-vec {
  position: absolute;
  top: 0;
  left: -7%;
  width: 35%;
}

.methods .title h2 {
  font-weight: 600;
}

.methods .title {
  position: relative;
}

.methods .title .star {
  position: absolute;
  top: 120%;
  left: 85%;
  width: 5%;
  animation: rotate-scale 4s infinite;
}

.methods-con {
  margin-bottom: 35px;
}

.methods-con:last-child {
  margin-bottom: 0;
}

.methods-con h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 10px;
}

.methods-con ul li {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 15px;
  list-style-type: disc;
  margin-left: 18px;
}

.research {
  background-color: #eef4fe;
}


.margin-right-left-more {
  margin: 0 100px;
}

.margin-right-left-more p {
  margin-bottom: 75px;
}

.research-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
}

.research-main .research-sub {
  width: 48%;
  /*  padding-left: 100px;*/
  position: relative;
}

/*.research-main .research-sub .research-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  background-color: #ddd;
  border-radius: 100%;
}*/

.research-main .research-sub h3 {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 103.125% */
  margin-bottom: 15px;
}

.research-main .research-sub p {
  margin-bottom: 0;
}


.blog-listing {
  background-color: var(--whiteColor);
}

.product-cate-listing {
  position: sticky;
  top: 0;
  margin-bottom: 0;
}

.filter-widget .widget-title h4>svg {
  transition: all 0.3s ease-in-out;
  transform: rotate(0);
  margin-top: 0;
  width: 15px;
}

.sub-level:last-child {
  border-bottom: none;
}

.filter-widget .widget-title.active h4>svg {
  transform: rotate(-180deg);
}

ul.sublinks {
  display: none;
  padding-left: 10px;
}

.site-nav .minus {
  display: none;
}

.site-nav.active .minus {
  display: block;
}

.site-nav.active .plus {
  display: none;
}

.widget-title h4 {
  color: var(--bodyColor);
  font-size: 17px;
  font-weight: 500;
  border-bottom: none;
  padding: 15px 20px;
  background-color: #85E9AF54;
  cursor: pointer;
  margin-bottom: 0;
}

.widget-title.active h4 {
  border-bottom: solid 1px #e0e0e0;
}

.sub-level {
  border-bottom: solid 1px #e0e0e0;
  padding: 10px 20px;
}

.sub-sub-level {
  border-bottom: none;
  padding: 10px 20px;
}

.lvl2,
.lvl3 {
  padding: 5px 0;
}

.site-nav {
  font-size: 16px;
  font-weight: 500;
  color: var(--bodyColor);
}

a.site-nav-sub {
  line-height: 25px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}

a.site-nav-sub svg {
  margin-right: 5px;
}

.site-nav:hover,
a.site-nav-sub:hover {
  color: var(--bodyColor);
}

.site-nav svg {
  width: 13px;
}

.site-nav .plus,
.site-nav .minus {
  width: 14px;
  margin-top: 3px;
}

.widget-content {
  display: none;
}

.sidebar-widget {
  border: solid 1px #e0e0e0;
  margin-bottom: 10px;
}

.blog-listing-box-img {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.blog-listing-box-img a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.blog-listing-box-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.brand-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30%;
  z-index: 1;
}

.calendar-days {
  display: inline-block;
  height: 17px;
  width: 17px;
  margin-right: 10px;
}

.blog-listing-box {
  margin-bottom: 50px;

}

.blog-listing-box-text h3 a {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.23px;
  display: inline-block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.date span,
.user span,
.product-tag span,
.share-list span {
  font-size: 15px;
  line-height: 15px;
  font-family: var(--primaryFont);
  color: #6c6c6c;
}

.date {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-listing-box-text p {
  margin-bottom: 15px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.blog-listing-box-text a {
  line-height: 20px;
}

.blog-listing-box-text a svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-top: 5px;
  transition: all 0.3s ease-in-out;
}

.blog-listing-box-text a:hover svg {
  transform: translateX(5px);
}

.filter-search {
  position: relative !important;
  margin-bottom: 25px !important;
}

.recent-posts {
  border: 1px solid #e3e3e3;
}

.recent-posts>a {
  padding: 15px;
  display: inline-block;
  border-bottom: 1px solid #e3e3e3;
}

.recent-posts>a:last-child {
  border-bottom: none;
}

.recent-posts>a:hover {
  background-color: #f7f7f7;
}

.recent-post-img {
  width: 38%;
  height: 80px;
  margin-right: 4%;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-text {
  width: 58%;
}

.blog-listing .product-cate-listing {
  padding-left: 20px;
}

.popular-tag {
  padding: 15px;
  padding-bottom: 5px;
  border: 1px solid #e3e3e3;
}

.popular-tag a {
  padding: 5px 20px;
  border: 1px solid #e3e3e3;
  color: var(--bodyColor);
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 10px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--primaryFont);
}

.popular-tag a:hover {
  border: 1px solid var(--primaryColor);
  border-radius: 25px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.pagination ul {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination ul li {
  color: #1c1c1c;
  list-style: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  border: solid 1px #f1f1f1;
  border-radius: 100%;
  font-size: 18px;
  margin: 0 5px;
}

.pagination ul li a {
  transition: all 0.3s ease;
  width: 100%;
  display: inline-block;
}

.pagination li.active,
.pagination ul li:hover {
  color: #fff;
  background: #1c1c1c;
}

.pagination li.active a,
.pagination ul li:hover a {
  color: #fff;
}

.product-cate-listing h3 {
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
}

.recent-post-text h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--bodyColor);
  margin-bottom: 10px;
}

.btn-filter {
  margin-right: 15px;
  font-size: 17px;
  background: var(--blackColor);
  color: var(--whiteColor);
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  /*  line-height: 50px;*/
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  /*  display: inline-block;*/
  z-index: 999;
}

.video svg {
  font-size: 30px;
  color: var(--whiteColor);
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.portfolio {
  background-color: var(--whiteColor);
}

.portfolio-sec {
  gap: 25px 0;
}

.inner-brands-d {
  padding-bottom: 100px;
}

.brands-padding {
  background: #fff;
  padding: 0 0 100px 0;
}

.cus-pt {
  padding-top: 100px;
}


.blog-detail h4 {
  position: relative;
  padding-left: 25px;
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.21px;
}

.blog-detail h3 {
  display: flex;
  align-items: center;
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.21px;
  margin-bottom: 15px;
}

.blog-detail h3 svg {
  font-size: 5px;
  margin-right: 10px;
}

.blog-detail ul li {
  color: var(--bodyColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.21px;
  margin-bottom: 8px;
  list-style: circle;

}

.blog-detail h5 {
  color: var(--bodyColor);
  font-family: var(--primaryFont);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 30px;
  letter-spacing: 0.28px;
}

.blog-detail p {
  margin-bottom: 20px;
}

.short-des {
  position: relative;
  background-color: #f6f6f6;
  border: 1px solid #c9c9c9;
  margin-bottom: 50px;
  margin-top: 50px;
}

.blog-detail h4 {
  padding: 25px;
  position: relative;
  z-index: 9;
  color: var(--bodyColor);
  font-family: var(--secondaryFont);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

.blog-detail .short-des .colon {
  position: absolute;
  top: 17px;
  left: 20px;
  background: url(../images/blog/colon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 35px;
  width: 65px;
  z-index: 1;
  opacity: 0.7;
}

.blog-detail .wp-block-list {
  margin-left: 25px;
}

.prev-next {
  padding: 20px 0;
  border-top: solid 1px #d7d7d7;
  border-bottom: solid 1px #d7d7d7;
  margin-bottom: 35px;
}

.prev-next span {
  display: block;
}

.prev-next span:first-child {
  font-size: 16px;
  font-weight: 500;
}

.prev-next span:last-child {
  font-size: 18px;
  font-weight: 400;
  color: #393939;
}

.prev-next svg:first-child {
  font-size: 15px;
  margin-right: 20px;
}

.prev-next svg:last-child {
  font-size: 15px;
  margin-left: 20px;
}

.blog-detail .custom-btn {
  margin-top: 25px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
}

.blog-detail .form-control {
  border-radius: 0;
  margin-bottom: 25px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0;
  text-indent: 15px;
  outline: none;
}

.blog-detail ol {
  padding-left: 20px;
}

.blog-detail ol li {
  list-style-type: number;
  padding-bottom: 10px;
}

.blog-detail h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-detail textarea.form-control {
  height: auto;
  line-height: 50px;
  resize: none;
}

/*.np-btn-cust a[rel='previous']{display: flex; justify-content: start;}
.np-btn-cust a[rel='next']{display: flex; justify-content: end;}*/

.blog-detail .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #dee2e6;
}

.blog-detail input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  accent-color: var(--primaryColor);
  color: var(--whiteColor);
}

.blog-detail label {
  font-size: 17px;
  line-height: 17px;
}

.relater-blog {
  background-color: var(--whiteColor);
}

.blog-img-cc {
  margin-bottom: 30px;
}

.blog-img-cc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relater-blog-slider .owl-nav {
  display: block !important;
  right: 0;
}

.blog-detail-img {
  background-color: var(--whiteColor);
}

.blog-detail-img-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.blog-detail-share {
  display: flex;
  align-items: center;
}

.blog-detail-share span {
  margin-left: 15px;
}

.blog-detail-share a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-left: 15px;
  color: var(--bodyColor);
  background-color: #f1f1f1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}

.blog-detail-share a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.blog-detail-img-sec {
  width: 100%;
  height: auto;
}

.blog-detail-img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.xtra-b-width {
  width: 70%;
}

.xtra-b-width-p p {
  width: 55%;
}

#reply-title {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

#commentform p label {
  display: block;
  font-weight: 500;
}

#commentform p textarea {
  width: 100%;
  padding: 7px 25px;
  border: 1px solid #e0e0e0;
}

#commentform p input[type='text'] {
  width: 100%;
  padding: 7px 25px;
  border: 1px solid #e0e0e0;
}

.comment-form-cookies-consent {
  display: flex;
  justify-content: start;
  align-items: center;
}

.comment-form-cookies-consent label {
  display: inline-block !important;
  margin: 0;
  padding: 0;
}

.form-submit input[type='submit'] {
  margin-top: 25px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 45px;
  border-radius: 35px;
  display: inline-block;
}


.toc-item .toc-link {
  text-decoration: none;
  color: #757575;
}

.toc-item .toc-link:hover,
.toc-item .toc-link.active {
  font-weight: bold;
  color: #252525;
}

.contact-details {
  background-color: var(--whiteColor);
}

.contact-details-contain {
  width: 100%;
  padding-right: 40%;
  position: relative;
}

.vec-arrow {
  position: absolute;
  top: 60%;
  right: 0;
  width: 50%;
  z-index: 1;
  transform: translateY(-40%);
}

.contact-details-contain h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 50px;
}

.contact-details-contain ul {
  margin-bottom: 50px;
}

.contact-details-contain ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
}

.contact-details-contain ul li svg {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  margin-top: 3px;
}

.contact-details-contain ul li span {
  width: calc(100% - 40px);
  display: inline-block;
  color: var(--bodyColor);
  font-family: var(--primaryFont);
  font-size: 18px;
  line-height: 25px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25px;
}

.contact-details-contain .footer-icon {
  background-color: #f8f8f8;
}

.contact-details-contain .footer-icon:hover {
  background-color: var(--primaryColor);
}

.contact-details-form input {
  border: none;
  border-bottom: solid 1px var(--bodyColor);
  font-size: 18px;
  line-height: 40px;
  width: 100%;
  font-weight: 400;
  outline: none;
}

.contact-details-form input::placeholder {
  color: #adacac;
}

.contact-details-form {
  background: var(--color_03, #fff);
  box-shadow: 0px 0px 190px 0px rgba(0, 0, 0, 0.08);
  padding: 50px;
}

.contact-form-sec {
  gap: 20px 0;
}

.contact-form-sec .custom-btn {
  background-color: #ec4b24;
  border: none;
  color: var(--whiteColor);
  margin-top: 20px;
  width: 35%;
  padding: 5px 25px;
}

.contact-form-sec label {
  color: #adacac;
}

.contact-form-sec input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.contact-que {
  background-color: var(--whiteColor);
}

.contact-que h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 15px;
}

.accordion {
  background-color: transparent;
  color: var(--blackColor);
  padding-bottom: 20px;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--primaryFont);
  transition: all ease-in-out 0.5s;
}

.accordion:focus {
  outline: none;
}

.accordion-sec {
  border-bottom: solid 1px #dfdfdf;
  margin-bottom: 20px;
}

.panel {
  display: none;
  margin-bottom: 20px;
  overflow: hidden;
}

.panel p {
  font-size: 17px;
  color: var(--bodyColor);
  margin-bottom: 0;
}

.casestudies-details-img {
  background-color: var(--whiteColor);
}

.case-det-img {
  width: 100%;
  height: auto;
}

.case-det-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-client,
.the-challenges,
.solutions,
.result,
.technology-tools {
  background-color: var(--whiteColor);
}

.about-client h3,
.the-challenges h3,
.solutions h3,
.result h3,
.technology-tools h3 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  margin-bottom: 20px;
}

.technology-tools h3 {
  margin-bottom: 0;
  margin-right: 100px;
}

.about-client p {
  margin-bottom: 0;
}

.technology-tools-sec {
  display: flex;
  align-items: center;
}

.technology-tools-sec span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-left: 25px;
  border-radius: 100%;
  background: var(--whiteColor);
  box-shadow: 0px 9.8px 44.8px 0px #f0f0f0;
}

.case-det-text li {
  color: var(--bodyColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.21px;
  list-style-type: disc;
  margin-left: 25px;
}

.case-det-text li:not(:last-child) {
  margin-bottom: 10px;
}

.case-det-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudies-sec {
  background-color: var(--whiteColor);
  padding-top: 100px;
}

.casestudies-main {
  gap: 50px 0;
}

.casestudies-sec .pagination {
  margin-top: 50px;
}

.no-padding-cust span {
  padding-left: 0 !important;
}







.banner-img {
  width: 100%;
  margin-bottom: 70px;
}

/*.background-white{background: #fff;}*/
.projects {
  background-position: center;
  width: 100%;
  padding: 50px;
  height: 100%;
  background-size: cover;
}

.business {
  background-position: center;
  width: 100%;
  padding: 42px;
  height: 100%;
  background-size: cover;
}

.business h2,
.projects h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  margin-bottom: 0;

  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.45px;
}

.business p,
.projects p {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 24px;
  font-weight: 500;
}

.founder,
.ideal {
  background: #f8f8f8;
  padding: 35px;
}

.founder h2,
.ideal h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.45px;
  line-height: normal;
  margin-bottom: 20px;
  position: relative;
}

.ideal-star {
  position: absolute;
  top: 0;
  right: 150px;
}

.founder p {
  color: var(--blackColor);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 20px 0 0;
}

.founder-name {
  display: flex;
  align-items: center;
  gap: 20px;
}

.founder-img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission .btn-sec-main {
  text-align: left;
  margin-top: 50px;
}

.f-contact .btn-sec-main {
  margin: 0;
}

.f-contact {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.founder-text h5 {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 23px;
  font-weight: 500;
  line-height: 20px;
}

.founder-text p {
  margin: 0;
}

.quality-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  flex-wrap: wrap;
  gap: 50px 0;
  position: relative;
}

.quality-grid::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
      #fbfbfb 1.09%,
      #c1c1c1 49.32%,
      #fbfbfb 100%);
  background-size: cover;
  content: "";
  z-index: 1;
}

.quality-grid::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
      #fbfbfb 1.09%,
      #c1c1c1 49.32%,
      #fbfbfb 100%);
  background-size: cover;
  content: "";
  z-index: 1;
}

.quality-grid .qgrid-child {
  width: 48%;
  padding: 0 25px;
}

.journey .btn-sec-main {
  margin-top: 50px;
}

.qgrid-child h5 {
  color: var(--blackColor);
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
}

.qgrid-child p {
  color: var(--blackColor);
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}

.core-team .title {
  margin-bottom: 50px;
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px 300px;
  gap: 20px;
}

#close_icon {
  display: none
}

.mobile_menu {
  display: none;
  position: fixed;
  height: 100vh;
  z-index: 9999;
  top: 0;
  background: white;
  transition: 0.15s;
  left: -100%;
  box-shadow: 8px 0px 10px 2px rgb(232 234 234 / 50%);
  border: none;
}

.mobile_menu .menu {
  width: 300px;
  padding: 0;
  list-style-type: none;
  margin: 0;
  /*height: 100%;*/
  overflow-y: auto;
}

.mobile_menu .menu-item,
.mobile_menu .submenu-item {
  padding: 10px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #c5c4c5;
}

.mobile_menu .menu-item:last-child {
  border-bottom: none;
}

.mobile_menu .submenu {
  display: none;
  padding: 0;
  margin-top: 8px;
  margin-left: -10px;
  margin-right: -10px;
  border-top: 1px solid #c5c4c5;
}

.mobile_menu .submenu .submenu-item .submenu {
  margin-left: 0;
  margin-right: 0;
}

.mobile_menu .submenu .submenu-item {
  padding: 10px 0;
}

.mobile_menu .submenu li {
  padding: 10px;
  border-bottom: 1px solid #c5c4c5;
}

.mobile_menu .submenu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile_menu .submenu-title {
  padding: 0 10px;
}

.mobile_menu .arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.mobile_menu .arrow.up {
  transform: rotate(180deg);
}

.mobile_menu .menu-item .menu-title,
.mobile_menu .submenu-title {
  display: flex;
  align-items: center;
}

@media screen and (max-width:992px) {
  .navbar-area-menu {
    display: none;
  }

  .mobile_menu {
    display: block;
  }
}

.founder-na {
  background: #eef4fe;
  padding: 50px;
  background-position: center;
  position: relative;
}

.founder-na:nth-child(1) img {
  position: absolute;
  bottom: 0;
  right: 4%;
  height: 95%;
}

.founder-na:nth-child(2) img,
.founder-na:nth-child(3) img,
.founder-na:nth-child(4) img,
.founder-na:nth-child(5) img {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: auto;
  height: 95%;
}

.founder-na:first-child {
  grid-row: 1/3;
}

.founder-na h3 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.45px;
  width: 75%;
}

.na-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.total {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

span.team_img {
  margin-left: -15px;
  width: 55px;
  height: 55px;
  display: inline-block;
  border-radius: 100%;
}

.span.team_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-count h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 55px;
}

.team-count p {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0;
}

.location {
  position: relative;
  box-shadow: 0px 0px 200px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.m-pin-1 {
  position: absolute;
  top: 32%;
  left: 33%;
  width: 25px;
}

.m-pin-2 {
  position: absolute;
  top: 46%;
  left: 57%;
  width: 25px;
}

.location h5 {
  font-size: 23px;
  position: absolute;
  line-height: 34px;
  bottom: 30px;
  left: 50px;
}

.mission {
  background-color: var(--whiteColor);
}

.mission h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0.45px;
  margin-bottom: 15px;
  line-height: normal;
}

.mission h5 {
  font-size: 23px;
}

.mission p {
  margin: 22px 0;
}

.abut-sec-main-img {
  width: 100%;
  height: auto;
}

.abut-sec-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey {
  background-color: var(--whiteColor);
}

.core-team {
  background-color: var(--whiteColor);
}

.linkin {
  position: absolute;
  bottom: 20px;
}

.founder-na:first-child .linkin {
  bottom: 50px;
}

.linkin a {
  width: 50px;
  height: 50px;
  background-color: var(--whiteColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.linkin a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.members {
  background-color: var(--whiteColor);
}

.word {
  position: absolute;
  cursor: grab;
  font-size: 30px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  padding: 3px 10px;
  display: inline-block;
  border-radius: 25px;
  font-size: 15px;
}

#business_sec {
  overflow: hidden;
}



.error_page {
  background-color: var(--whiteColor);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px 0;
}

.error_page_sec {
  text-align: center;
}

.error_page_sec .logo {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.error_page_sec .error_img {
  width: 350px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.error_page_sec .logo img,
.error_page_sec .error_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error_page_sec h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 15px;
}

.error_page_sec p {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-style: normal;
  font-weight: 600;
  margin-bottom: 50px;
}



.terms-sec {
  padding-bottom: 0;
}

.terms-sec-det {
  background-color: var(--whiteColor);
  padding: 75px;
  box-shadow: 0px 15px 180px 0px rgba(0, 0, 0, 0.07);
}

.terms-sec-det h3 {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.28px;
  margin-bottom: 20px;
}

.terms-sec-det p {
  color: var(--bodyColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.28px;
  margin-bottom: 30px;
}

.terms-sec-det p:last-child {
  margin-bottom: 0;
}

.about-us-page-main{padding: 100px 0 0;}


.text-s {
  position: absolute;
  bottom: 5px;
  left: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 92%;
  margin: 0 auto;
}

.text-s>div {
  width: 100%;
}

.text-s div:first-child span:first-child {
  position: absolute;
  right: 40px;
  bottom: 110px;
  transform: rotate(-10deg);
}

.text-s div:first-child span:last-child {
  position: absolute;
  right: -15px;
  bottom: 70px;
  transform: rotate(-40deg);
}

.text-s span {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background-color: var(--whiteColor);
  border: solid 1px #adacac;
  margin: 2px;
  font-size: 18px;
  font-weight: 500;
}





.job-des {
  background-color: var(--whiteColor);
  padding: 100px 0 50px;
}

.job-des-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.job-des-con .job-des-text {
  width: 45%;
}

.job-des-con .job-des-form {
  width: 45%;
}

.job-des-con .job-des-form .apply-form {
  width: 100%;
}

.job-des .accordion-sec {
  padding: 20px 25px;
  border: solid 1px #adacac;
  margin-bottom: 20px;
}

.job-des .accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
}

.job-des .accordion span:nth-child(1) {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
}

.job-des .accordion span:nth-child(2) {
  color: #adacac;
  font-family: var(--primaryFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
}

.job-des .accordion span:nth-child(3) {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
}

.job-des .accordion span:nth-child(3) .fa-chevron-down {
  font-size: 15px;
  margin-left: 5px;
  transition: all .3s ease-in-out;
}

.job-des .panel {
  border-top: solid 1px #adacac;
  margin-top: 15px;
  padding-top: 25px;
}

.job-des ul li {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.21px;
  list-style-type: disc;
  margin-left: 30px;
}

.job-des ul li:not(:last-child) {
  margin-bottom: 10px;
}

.accordion.active span:nth-child(3) .fa-chevron-down {
  transform: rotate(-180deg);
}



.career-details {
  background-color: var(--whiteColor);
}

.career-details p {
  color: #adacac;
  font-family: var(--primaryFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.career-details h2 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.career-details ul {
  margin-top: 15px;
}

.career-details ul li {
  color: var(--blackColor);
  font-family: var(--primaryFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.21px;
  list-style-type: disc;
  margin-left: 15px;
}

.career-details-val {
  padding: 75px;
  background: url(../images/icons/ats-bg-2.png) no-repeat center;
  background-size: cover;
  margin-bottom: 50px;
}

.career-details-val h4 {
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.career-details-val .custom-btn {
  margin-top: 20px;
  padding: 10px 50px;
}

.apply-sec {
  background-color: #f1f1f1 !important;
  background: url(../images/icons/apply-bg.png) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}

.apply-form {
  width: 40%;
  margin: 0 auto;
}

.apply-form input {
  width: 100%;
  background-color: transparent;
  margin-bottom: 30px;
  line-height: 40px;
  border: none;
  outline: none;
  border-bottom: solid 1px #adacac;
  font-size: 17px;
}

.apply-form .drop_box {
  margin: 10px 0;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 5px;
}

.apply-form .drop_box span {
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--bodyColor);
}

.apply-form #Upload_btn {
  text-decoration: none;
  background-color: var(--whiteColor);
  color: var(--bodyColor);
  outline: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  align-items: center;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.apply-form #Upload_btn svg {
  width: 18px;
  height: 18px;
  margin-right: 15px;
}

.apply-form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-bottom: 0;
  line-height: normal;
}

.apply-form label {
  color: var(--bodyColor);
  font-size: 16px;
}

.apply-sub {
  margin: 30px 0;
}

.apply-form input[type='submit'] {
  transition: all 0.3s ease-in-out;
  background-color: #ec4b24;
  border: 1px solid #ec4b24;
  padding: 10px 50px;
  width: 33%;
  padding: 7px 22px;
  cursor: pointer;
  color: #fff;
}

.apply-form input[type='submit']:hover {
  background-color: transparent;
  border: solid 1px #ec4b24;
  color: #ec4b24;
}

#file_name {
  display: block;
  width: 100%;
  font-size: 15px;
  color: var(--grayColor);
}



.inner-banner-text p {
  width: 65%;
}

.inner-banner-text h1 {
  width: 90%;
}

.no-padding-show-home span {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.terms-sec-det ul {
  margin-left: 25px;
}

.terms-sec-det ul li {
  list-style-type: disc;
  margin-bottom: 15px;
}


.pbmit-search-overlay {
  position: fixed;
  top: -500px;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}

.pbmit-search-overlay.st-show {
  opacity: 1;
  top: 0;
}

.pbmit-icon-close {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0.8;
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  cursor: pointer;
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}

.pbmit-icon-close:hover {
  opacity: 1;
}

@keyframes pbmit-closer-line-draw {

  0%,
  100% {
    clip-path: inset(-1px 0 -1px 0);
    -webkit-clip-path: inset(-1px 0 -1px 0);
  }

  55% {
    clip-path: inset(-1px 0 -1px 100%);
    -webkit-clip-path: inset(-1px 0 -1px 100%);
  }

  56% {
    clip-path: inset(-1px 100% -1px 0);
    -webkit-clip-path: inset(-1px 100% -1px 0);
  }
}

.pbmit-icon-close svg {
  fill: var(--whiteColor);
}

.pbmit-icon-close svg rect {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pbmit-icon-close:hover svg rect,
.closepanel:hover svg rect {
  animation: pbmit-closer-line-draw 0.6s;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pbmit-closer-line-draw;
}

.pbmit-icon-close:hover svg rect:nth-of-type(2),
.closepanel:hover svg rect:nth-of-type(2) {
  animation-delay: 0.17s;
}

.pbmit-search-outer {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pbmit-search-overlay .pbmit-site-searchform {
  position: relative;
}

.pbmit-search-overlay .pbmit-site-searchform:before {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.pbmit-search-overlay .pbmit-site-searchform .fa-magnifying-glass {
  position: absolute;
  right: 10px;
  top: 15px;
  color: var(--whiteColor);
  font-size: 25px;
  line-height: normal;
}

.pbmit-search-overlay.st-show .pbmit-site-searchform:before {
  -webkit-animation-name: fadeInMove;
  animation-name: fadeInMove;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}

.pbmit-search-overlay input[type="search"] {
  height: 65px;
  line-height: 65px;
  font-weight: 500;
  font-size: 28px !important;
  background-color: transparent;
  text-align: left;
  border: none !important;
  border-bottom: 1px solid #ffffff54 !important;
  padding-left: 0;
  border-radius: 0;
  font-family: inherit;
  color: var(--whiteColor);
}

.pbmit-search-overlay input[type="search"]::placeholder {
  color: var(--whiteColor);
  opacity: 0.6;
}

.pbmit-search-overlay .pbmit-site-searchform button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -30%);
  background-color: transparent;
  text-indent: -9999px;
  outline: none;
  padding: 0;
  border: none;
  z-index: 1;
  color: var(--whiteColor);
}

body.st-prevent-scroll {
  overflow: hidden;
}

.is-form-style.is-form-style-3 label {
  width: 100% !important;
}

.is-form-style input.is-search-submit,
.is-search-icon {
  background-color: transparent !important;
}

.is-search-icon svg {
  width: 36px !important;
}

.fourth-section-ats {
  padding: 100px 0;
  background-color: var(--whiteColor);
}


.header-area {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1001;
  transition: 0.3s;
  border-top: 5px solid var(--main-clr);
  top: 16px;
  border-radius: 50px;
  backdrop-filter: blur(50px);
}

.header-area.sticky .header-nav {
  /* background-color: #ffffff!important; */
  /* background-color: #c9d0b5!important; */
  background-color: transparent !important;
  /* box-shadow: 0 0 6px 0 #000000bd; */
  filter: blur(0.65);

}

.header-nav {
  padding: 0;
  transition: 0.4s;
  background-color: #fff0;
  padding: 0px 0;
}

.navbar-area-inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  transition: 0.2s;
  flex-shrink: 0;
  width: 7%;
}

.navbar-area-menu {
  display: block;
}

.info_div {
  display: flex;
  align-items: center;
  clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 3% 100%);
  background-color: var(--main-clr);
  padding: 10px 40px;
  margin-top: 0;
  margin-left: 12%;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
}

.ser-desc-btn {
  text-align: center;
  padding: 40px 0 0;
}

.site-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 0;
}

.navbar-area-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-navbar ul li a img {
  width: 9px;
  margin-left: 10px;
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-navbar ul li {
  /* position: relative; */
  position: initial;
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  padding-right: 0px;
  padding-bottom: 0 !important;
}

.site-navbar ul li a {
  display: block;
  color: #000;
  font-family: 'myFirstFontBold';
}

.line_hd {
  height: 20px;
  width: 1px;
  background-color: #999999;
}

.site-navbar>ul>li a {
  padding: 8px 0;
  padding: 30px 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Roboto';
}

.site-navbar>ul>li a:hover {
  border-bottom-color: var(--main-clr);
}

.site-navbar>ul>li a.active {
  color: var(--main-clr);
  border-bottom-color: var(--main-clr);
}

.site-navbar ul ul {
  flex-direction: column;
  transform: translateY(100%);
  position: absolute;
  /* width: clamp(150px, 15.625vw, 300px); */
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.26);
  transform-origin: top;
  z-index: 99;
  transition: 0.2s;
  align-items: flex-start;
  top: 100%;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: uppercase;
}

.site-navbar ul ul li {
  width: 100%;
  text-transform: none;
  font-weight: bold;
}

.circle-custom-ul {
  /*list-style: circle;*/
  margin-top: 20px;
  margin-left: 25px;
}

.circle-custom-ul li {
  list-style-type: circle;
  padding: 10px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.site-navbar ul ul a {
  padding: clamp(8px, 0.5208vw, 10px);
  width: 100%;
  display: block;
  color: #000;
}

.site-navbar ul ul li a:hover {
  color: #000;
}

.site-navbar ul li>span {
  display: none;
}

.site-navbar ul li:hover ul {
  transform: none;
  opacity: 1;
  pointer-events: all;
}

.site-navbar .btn-main {
  margin-left: 20px;
  color: #fff;
  background-color: var(--main-clr);
  font-size: 14px;
}

.site-navbar ul li .sub-menu {
  padding: 15px 8px;
  border-radius: 30px;
}

.header-area.sticky .site-navbar ul li .sub-menu {
  border-radius: 0px;
}

.site-navbar ul li .sub-menu .menu-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}

.site-navbar ul li .sub-menu .menu-list .menu-list-box .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid #dddddd;
  padding: 16px;
  margin-bottom: 16px;
}

.site-navbar ul li .sub-menu .menu-list .menu-list-box {
  /*border-right: 1px solid rgb(179, 177, 177); */
  width: 16.5%;

}

.site-navbar ul li .sub-menu .menu-list .menu-list-box:nth-child(n+6) {
  border: none;
}

.site-navbar ul li .sub-menu .menu-list .menu-list-box li a {
  padding: 12px;
  font-size: 14px;
}

.site-navbar ul li .sub-menu .menu-list .menu-list-box li a:hover {
  background: #ec4b24;
  color: #ffffff;

}

.navbar-social ul {
  margin: 0;
  padding: 2px 0 2px clamp(12px, 1.25vw, 24px);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 0.68vw, 13px);
  border-left: 1px solid var(--main-clr);
}

.navbar-social ul li a,
.navbar-social ul li img {
  display: block;
}

.nav-toggler {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
  /*padding: 5px;*/
}


.filter-search #searchform .pbmit-header-search-btn {
  padding: 0;
}


/*30-07-2025*/
.custom-btn.journey_btn:hover {
  /* font-size: 18px; */
  padding: 12px 45px;
  border-radius: 35px;
  display: inline-block;
  border: solid 1px var(--blackColor) !important;
  background-color: transparent !important;
  color: var(--blackColor);
  font-weight: 600;
}


@media only screen and (min-width: 1601px) and (max-width: 1920px) {
  .container-fluid {
    padding: 0 105px;
  }

  .site-navbar>ul>li a {
    font-size: 20px;
  }

  header .container-fluid .navigation .main-menu li>a {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 15px;
  }

  header .container-fluid .navigation .main-menu li {
    padding: 50px 25px 50px 0;
  }

  .mini-hamburger,
  .search-main {
    width: 48px;
    height: 48px;
  }

  header .container-fluid .navigation .menu-icon svg {
    width: 22px;
    height: 22px;
  }

  .banner-text {
    padding: 250px 0 165px;
  }

  .banner-text .banner-text-heading h1 {
    font-size: 210px;
    font-weight: 300;
    line-height: 180px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 190px;
    font-style: normal;
    font-weight: 100;
    line-height: 190px;
  }

  .banner-text-sub-heading p {
    margin-bottom: 40px;
    font-size: 25px;
  }

  .custom-btn {
    font-size: 22px;
    padding: 15px 50px;
  }

  .banner-text-heading h4 {
    font-size: 30px;
    padding-right: 15px;
  }

  .banner-btm-sub-con span {
    font-size: 20px;
    line-height: 28px;
    /* 140% */
  }

  .banner-btm-sub-title h2 {
    font-size: 70px;
    margin-right: 10px;
  }

  .banner-btm-sub-title h2 span {
    font-size: 38px;
  }

  .banner-btm-sub-con span i {
    width: 22px;
    height: 22px;
  }

  .title h2 {
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
  }

  .title p {
    font-size: 21px;
    line-height: 33px;
  }

  .home-about-sub-sec h2 {
    font-size: 30px;
    line-height: 45px;
  }

  .home-about-sub-sec h2 span {
    font-size: 30px;
  }

  .home-about .home-about-vector {
    width: 33%;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub {
    margin-top: 180px;
    padding: 100px 0;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub .home-about-star1 {
    top: -115px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
    width: 149px;
    height: 149px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    position: absolute;
    top: 130px;
    width: 25%;
    left: -150px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count h2 {
    font-size: 60px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count span {
    font-size: 14px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .about-link {
    font-size: 20px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .about-link img {
    width: 34px;
    margin-left: 7px;
  }

  .solutions-sec .color-icon img,
  .solutions-sec .white-icon img {
    width: 100%;
  }

  .solutions-sec h3 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }

  .solutions-sec p {
    font-size: 21px;
    line-height: 33px;
    /* 157.143% */
  }

  .solu-icon {
    width: 35px;
    height: 35px;
  }

  .home-project .container-fluid {
    padding: 0 0 0 105px;
  }

  .solutions .solutions-vec {
    top: 33%;
  }

  .home-project .title h2 span {
    width: 160px;
  }

  .home-project-com .home-project-text h3 {
    font-size: 35px;
  }

  .home-project .btn-sec-main {
    padding-right: 105px;
  }

  .owl-theme .owl-nav {
    right: 105px;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
  }

  .home-work .home-work-icon1 {
    left: 24%;
    top: -115px;
    width: 160px;
  }

  .home-work .home-work-icon2 {
    left: 5%;
    top: 30px;
    width: 145px;
  }

  .home-work .home-work-icon3 {
    right: 19%;
    top: 20px;
    width: 155px;
  }

  .home-work .home-work-icon4 {
    right: 1%;
    top: 140px;
    width: 140px;
  }

  .home-work .home-work-icon5 {
    right: 3%;
    bottom: -50px;
    width: 145px;
  }

  .home-work .home-work-icon6 {
    left: 2%;
    bottom: 0;
    width: 150px;
  }

  .home-work-sec .home-work-box .home-work-box-img {
    width: 205px;
    height: 205px;
    margin-bottom: 35px;
  }

  .home-work-box-text h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .home-work-box-text p {
    font-size: 21px;
  }

  .home-work .btn-sec-main {
    margin-top: 75px;
  }

  .feedback-sec .feedback-content h5 {
    font-size: 21px;
    line-height: 27px;
    font-weight: 600;
    font-family: var(--primaryFont);
    margin-bottom: 30px;
  }

  .feedback-sec .feedback-btm .feedback-client-img {
    width: 65px;
    height: 65px;
  }

  .feedback-sec .feedback-btm .feedback-client-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .feedback-sec .feedback-btm .feedback-client-text p {
    font-size: 18px;
  }

  .feedback-sec .feedback-btm .feedback-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .admin-date span {
    font-size: 20px;
  }

  .admin-date .user-case {
    margin-right: 8px;
    width: 22px;
    height: 22px;
  }

  .admin-date .calender-case {
    margin-right: 8px;
    width: 22px;
    height: 22px;
  }

  .case-studies-list li {
    width: 45%;
  }

  .case-studies-list h3 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
  }

  .read-more .fa-arrow-right-long {
    width: 24px;
    margin-left: 24px;
  }

  .read-more {
    font-size: 18px;
  }

  .case-studies-list li:nth-child(1),
  .case-studies-list li:nth-child(2) {
    margin-bottom: 65px;
  }

  .footer-main .footer-menu:nth-child(1) {
    width: 23%;
    padding-right: 25px;
  }

  .footer-menu p {
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 35px;
  }

  .footer-menu .footer-icon {
    width: 59px;
    height: 59px;
    font-size: 20px;
  }

  .footer-menu h5 {
    font-size: 22px;
    line-height: 30px;
  }

  .footer-menu ul li a {
    font-size: 20px;
  }

  .footer-main .footer-menu:nth-child(5) ul li h4 {
    font-size: 18px;
  }

  .footer-main .footer-menu:nth-child(5) ul li p {
    font-size: 17px;
  }

  .footer-main .footer-menu:nth-child(5) ul li a {
    font-size: 18px;
    color: var(--grayColor);
    margin-bottom: 15px;
  }

  .footer-main .footer-menu:nth-child(5) ul li span {
    padding: 5px 30px;
    font-size: 18px;
  }

  .footer-main .footer-menu:nth-child(5) ul li:first-child {
    margin-bottom: 15px;
  }

  .footer-main .footer-menu:nth-child(5) ul li:nth-child(2) {
    margin-bottom: 0;
  }

  .footer-btm p {
    font-size: 16px;
  }

  .footer-btm ul li a {
    font-size: 16px;
    padding: 0 20px;
  }

  .feedback .btn-sec-main {
    margin-top: 40px;
  }

  /* .founder-na:nth-child(2) img, .founder-na:nth-child(3) img, .founder-na:nth-child(4) img, .founder-na:nth-child(5) img {
    width: 23%;
  } */

  /* .founder-na:nth-child(1) img {
    height: auto;
    width: 45%;
  } */

  .mission h2 {
    font-size: 45px;
  }

  .search-result-item h2 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 1920px) {

  .founder-na:nth-child(1) img {
    height: 80%;
  }

}

@media only screen and (max-width: 1600px) {

  .site-navbar>ul>li a {
    font-size: 17px;
  }

  /* .founder-na:nth-child(2) img, .founder-na:nth-child(3) img, .founder-na:nth-child(4) img, .founder-na:nth-child(5) img {
    width: 27%;
  } */

  .title p {
    font-size: 18px;
  }

}

@media only screen and (max-width: 1400px) {

  .site-navbar>ul>li a {
    padding: 40px 3px;
  }

  .home-about-sub-sec h2 {
    font-size: 23px;
  }

  .home-about-sub-sec h2 span {
    font-size: 20px;
    line-height: 30px;
  }

  .home-about-sub-sec:nth-child(3) .home-about-sub .home-about-sub-text {
    width: 75%;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub {
    margin-top: 135px;
    padding: 70px 0;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
    width: 105px;
    height: 105px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count1 {
    top: 30px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 125px;
    right: 30px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    top: 75px;
    left: -105px;
  }

  .solutions .solutions-vec {
    top: 35%;
  }

  .solutions-sec h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .home-work-sec .home-work-box .home-work-box-img {
    width: 150px;
    height: 150px;
  }

  .footer-menu ul li {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .footer-menu p {
    font-size: 16px;
    padding-right: 25px;
    margin-bottom: 30px;
  }

  /* .founder-na:nth-child(1) img {
    height: auto;
    width: 55%;
  } */

  .search-result-item h2 {
    font-size: 31px;
  }

  .error_page_sec h2 {
    font-size: 38px;
  }

}

@media only screen and (max-width: 1200px) {
  .site-navbar ul li .sub-menu .menu-list .menu-list-box {
    width: 20%;
  }

  .site-navbar ul li .sub-menu .menu-list .menu-list-box .section-title {
    font-size: 14px;
    padding: 12px;
  }

  .site-navbar ul li .sub-menu .menu-list .menu-list-box li a {
    padding: 10px;
  }

  p,
  li {
    font-size: 16px;
  }

  .site-navbar>ul>li a {
    padding: 40px 1px;
    font-size: 15px;
  }

  .banner-text .banner-text-heading h1 {
    font-size: 155px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 140px;
  }

  .banner-text-heading h4 {
    font-size: 23px;
  }

  .banner-text-sub-heading p {
    font-size: 18px;
  }

  .banner-btm-sub-title h2 {
    font-size: 45px;
  }

  .banner-btm-sub-title h2 span {
    font-size: 25px;
  }

  .banner-btm-sub-con span {
    font-size: 15px;
  }

  .custom-py {
    padding: 125px 0;
  }

  .title h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .home-about-sub-sec h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub {
    margin-top: 125px;
    padding: 50px 0;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub .home-about-star1 {
    top: -80px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
    width: 90px;
    height: 90px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count h2 {
    font-size: 35px;
    line-height: 35px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count span {
    font-size: 12px;
    line-height: 15px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 110px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    top: 55px;
    left: -85px;
  }

  .solutions-sec .color-icon {
    margin-bottom: 15px;
  }

  .solutions-sec:hover .white-icon {
    margin-top: 20px;
  }

  .solutions-sec a {
    padding: 25px;
  }

  .home-project-com .home-project-text h3 {
    font-size: 25px;
  }

  .home-work-sec .home-work-box .home-work-box-img {
    width: 135px;
    height: 135px;
  }

  .home-work .work-bg-vec {
    top: 52%;
  }

  .home-work-box-text h3 {
    font-size: 20px;
  }

  .case-studies-list h3 {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .case-studies-list li:nth-child(1),
  .case-studies-list li:nth-child(2) {
    margin-bottom: 25px;
  }

  .footer-menu ul li {
    font-size: 17px;
  }

  .footer-main .footer-menu:nth-child(5) ul li .dubai-office-img {
    width: 60px;
  }

  .footer-main .footer-menu:nth-child(5) ul li h4 {
    font-size: 13px;
  }

  .footer-main .footer-menu:nth-child(5) ul li {
    padding: 15px;
  }

  .footer-main .footer-menu:nth-child(5) ul li p,
  .footer-main .footer-menu:nth-child(5) ul li a {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .choose-con2 h3 {
    font-size: 25px;
  }

  .inner-banner-text h1 {
    font-size: 40px;
  }

  .mission h2,
  .founder h2,
  .ideal h2 {
    font-size: 32px;
  }

  .ideal-star {
    top: -70%;
  }

  .text-s span {
    padding: 6px 15px;
    font-size: 12px
  }

  .about-client h3,
  .the-challenges h3,
  .solutions h3,
  .result h3,
  .technology-tools h3,
  .methods-con h2,
  .work-progress-sec ul li h3,
  .choose-con2 h3,
  .research-main .research-sub h3,
  .choose-con2 h3,
  .we-done-sec .done-box h3,
  .details-serv-sec .details-serv-box h4 {
    font-size: 22px !important;
  }

  .blog-detail h2 {
    font-size: 22px !important;
  }

  .founder-na:nth-child(1) img {
    height: 70%;
  }

  .founder-na:nth-child(1) h3 {
    width: 85%;
  }

  .founder-na h3 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 1025px) {
  .container-fluid {
    padding: 0 50px;
  }

  .site-navbar>ul>li a {
    padding: 40px 1px;
    font-size: 13px;
  }

  header .container-fluid .navigation .main-menu {
    display: none;
  }

  header .container-fluid .navigation {
    padding: 25px 0;
  }

  .banner-text .banner-text-heading h1 {
    font-size: 125px;
    line-height: 110px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 110px;
    line-height: 100px;
  }

  .cloud1 {
    top: 36%;
  }

  .banner-text-sub-heading p {
    font-size: 16px;
  }

  .custom-btn {
    font-size: 16px;
    padding: 10px 35px;
  }

  .banner-text {
    width: 100%;
    text-align: center;
    padding: 150px 0 115px;
  }

  .banner-btm-sub-title h2 {
    font-size: 42px;
  }

  .banner-btm-sub-title h2 span {
    font-size: 22px;
  }

  .banner-btm-sub-con span {
    font-size: 14px;
  }

  .banner-btm-sub-con span i {
    width: 15px;
    height: 15px;
    margin-right: 1px;
  }

  .home-about .title h2 span {
    display: inline-block;
    margin-left: -15px;
    width: 42px;
    height: 42px;
  }

  .title h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .custom-py {
    padding: 100px 0;
  }

  body {
    font-size: 16px;
  }

  .footer-menu ul li {
    font-size: 16px;
  }

  .footer-menu h5 {
    color: var(--blackColor);
    font-size: 16px;
  }

  .faq-accordian-div {
    width: 75%;
  }

  .mission h2,
  .founder h2,
  .ideal h2 {
    font-size: 30px;
  }

  .qgrid-child h5 {
    font-size: 20px;
  }

  .about-client h3,
  .the-challenges h3,
  .solutions h3,
  .result h3,
  .technology-tools h3,
  .methods-con h2,
  .work-progress-sec ul li h3,
  .choose-con2 h3,
  .research-main .research-sub h3,
  .choose-con2 h3,
  .we-done-sec .done-box h3,
  .details-serv-sec .details-serv-box h4 {
    font-size: 20px !important;
  }

  .admin-date span:last-child {
    padding-left: 0;
  }

  .blog-detail h3 {
    font-size: 18px;
  }

  .qgrid-child p {
    font-size: 15px;
  }

  .contact-details-contain ul li span {
    font-size: 16px;
  }

  .contact-details-form input {
    font-size: 16px;
  }

  .admin-date span {
    font-size: 17px;
  }

  .founder-na {
    padding: 30px;
  }
}

@media only screen and (max-width: 992px) {
  header .container-fluid .logo {
    width: 20%;
  }

  .site-navbar ul li .sub-menu .menu-list .menu-list-box {
    width: 33.33%;
    margin-bottom: 16px;
  }

  .site-navbar ul li .sub-menu .menu-list .menu-list-box .section-title {
    color: var(--whiteColor);
  }

  .banner-text .banner-text-heading h1 {
    font-size: 105px;
    line-height: 95px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 90px;
    line-height: 85px;
  }

  .banner-text {
    width: 100%;
    text-align: center;
    padding: 130px 0 100px;
  }

  .banner-btm-main {
    flex-wrap: wrap;
    /* flex-direction: column; */
  }

  .banner-btm-sub {
    width: 50%;
    justify-content: center;
    padding: 10px;
  }

  .banner-btm-sec {
    padding: 15px 0;
  }

  .home-about .title h2 br {
    display: none;
  }

  .home-about .title h2 {
    width: 95%;
    margin: 0 auto 10px;
    font-size: 25px;
  }

  .home-about-sec {
    align-items: center;
  }

  .home-about-sub-sec {
    width: 48%;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub {
    margin-top: 20px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
    width: 100px;
    height: 100px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 160px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    top: 75px;
    left: -150px;
  }

  .brand {
    padding: 0 10px;
  }

  .solutions-title {
    text-align: center;
  }

  .solutions-title .custom-btn {
    margin-top: 0;
    margin-bottom: 35px;
  }

  .custom-mb {
    margin-bottom: 100px;
  }

  .home-work-sec .home-work-box {
    text-align: center;
    width: 48%;
  }

  .home-work .work-bg-vec {
    display: none;
  }

  .home-work .home-work-icon3 {
    right: 5%;
    width: 100px;
  }

  .image-holder {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 35px;
  }

  .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .case-studies .btn-sec-main {
    text-align: center;
  }

  .footer-main .footer-menu:nth-child(1) {
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-logo {
    width: 30%;
    display: inline-block;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-menu p {
    font-size: 16px;
    padding-right: 25px;
    margin-bottom: 20px;
  }

  .footer-main .footer-menu:nth-child(2) {
    width: 50%;
  }

  .footer-main .footer-menu:nth-child(3) {
    width: 50%;
  }

  .footer-main .footer-menu:nth-child(4) {
    width: 50%;
  }

  .footer-main .footer-menu:nth-child(5) {
    width: 50%;
  }

  .footer-menu h5 {
    height: 60px;
  }

  .footer-menu ul li {
    font-size: 15px;
    margin-bottom: 0;
  }

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

  .footer-btm ul li a {
    font-size: 12px;
    padding: 0 5px;
  }

  .founder-na h3 {
    font-size: 30px;
  }

  .job-des .accordion span:nth-child(1) {
    font-size: 18px;
  }

  .job-des .accordion span:nth-child(2),
  .job-des .accordion span:nth-child(3) {
    font-size: 15px;
  }

  .contact-details-contain h2 {
    font-size: 28px;
  }

  .contact-que h2 {
    font-size: 24px;
  }

  .accordion {
    font-size: 18px;
  }

  .search-result-item h2 {
    font-size: 27px;
  }

  .error_page_sec h2 {
    font-size: 35px;
  }

  .terms-sec-det h3 {
    font-size: 20px;
  }

  .widget-title h4 {
    font-size: 15px;
  }

  .product-cate-listing h3 {
    font-size: 18px;
  }

  .popular-tag a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 991.98px) {

  p,
  li {
    font-size: 15px;
  }

  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }

  .header-nav {
    padding: 10px 0;
  }

  .nav-toggler {
    display: block;
    position: relative;
    z-index: 10;
  }

  .nav-toggler.toggler-open {
    position: fixed;
    top: 10px;
    right: 22px;
  }

  .menu1 {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #ffffff99;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu1 svg {
    width: 16px;
  }

  .menu2 {
    display: none;
  }

  .nav-toggler.toggler-open .menu1 {
    display: none;
  }

  .nav-toggler.toggler-open .menu2 {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #ffffff99;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggler.toggler-open .menu2 svg {
    width: 20px;
  }

  .navbar-area-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    font-family: var(--font1);
    transform: scale(0);
    transition: 0.6s;
    opacity: 0;
    transform-origin: top right;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }

  .site-navbar>ul {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 60px 0;
    width: 100%;
    transition: 0.6s;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: flex-start;
  }

  .site-navbar ul li {
    display: block;
    width: 100%;
    color: #fff;
  }

  .site-navbar>ul>li:not(:last-child) {
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom-width: 0
  }

  .navbar-area-menu.open {
    transform: scale(1);
    opacity: 1;
  }

  .navbar-close {
    position: absolute;
    top: clamp(10px, 1.25vw, 20px);
    right: clamp(30px, 3.75vw, 60px);
    font-family: var(--font1);
    font-size: var(--40px);
    font-weight: bold;
    cursor: pointer;
  }

  .navbar-area-menu::before {
    background: #222;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    padding: 200%;
  }

  .site-navbar ul ul {
    position: static;
    background: #0000;
    box-shadow: none;
    width: auto;
    text-align: center;
    pointer-events: all;
    opacity: 1;
    transform: none;
    display: none;
    transition: 0s;
    padding-bottom: 10px;
  }

  .site-navbar ul ul a {
    display: block;
    text-transform: none;
    padding: 8px 0;
  }

  .site-navbar ul ul a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0 1px 1px 0;
    display: inline-block;
  }

  .site-navbar .li-sub-menu-wrap>a {
    display: inline-block;
    width: auto;
  }

  .site-navbar .li-sub-menu-wrap {
    padding: 0 35px
  }

  .site-navbar .li-sub-menu-wrap.open-submenu {
    background: #111;
  }

  .site-navbar .li-sub-menu-wrap::after {
    content: '\21E9';
    color: #fff;
    border-width: 0 1px 1px 0;
    position: absolute;
    top: 11px;
    right: 30%;
    font-size: 20px;
    transition: 0.2s;
  }

  .site-navbar .li-sub-menu-wrap.open-submenu::after {
    transform: rotate(180deg);
  }

  .site-navbar ul ul li a:hover {
    background: #0000
  }

  .site-navbar {
    width: 100%;
  }

  .navbar-social {
    width: 100%;
  }

  .navbar-social ul {
    padding-left: 0;
    justify-content: center;
    border-left: 0;
    gap: 16px;
  }

  .site-logo {
    transition: 0.2s;
    flex-shrink: 0;
    width: 20%;
  }

  .site-navbar>ul>li a.active {
    color: #dbc591;
    border-bottom-color: #dbc591;
  }

  .navbar-area-right {
    gap: 3px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .inner-banner-text h1 {
    font-size: 30px;
  }

  .total {
    padding: 30px 50px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
  }

  .team-count h2,
  .business h2,
  .projects h2 {
    font-size: 60px;
  }

  .team-count p,
  .business p,
  .projects p {
    font-size: 18px;
  }

  .mission h5 {
    font-size: 18px;
  }

  .o-1 {
    order: 1;
  }

  .o-2 {
    order: 2;
  }

  .work-progress-img {
    width: 100%;
  }

  .case-det-text ul {
    margin-bottom: 25px;
  }

  .apply-form input {
    font-size: 15px;
  }

  .apply-form #Upload_btn {
    font-size: 14px;
  }

  .title p {
    font-size: 16px;
  }

  .footer-btm,
  .footer-btm ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 912px) {

  .founder-na:nth-child(2) img,
  .founder-na:nth-child(3) img,
  .founder-na:nth-child(4) img,
  .founder-na:nth-child(5) img {
    height: 75%;
  }

  .founder-na:nth-child(1) img {
    height: 60%;
  }

  .founder-na:nth-child(1) h3 {
    width: 100%;
  }

  .founder-na h3 {
    font-size: 26px;
  }

}

@media only screen and (max-width: 820px) {

  .founder-na:nth-child(1) img {
    height: 55%;
  }

}

@media only screen and (max-width: 768px) {

  .home-about .home-about-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    top: 70px;
    left: -140px;
  }

  .footer-main .footer-menu {
    margin-bottom: 50px;
  }

  .footer-main .footer-menu:nth-child(2) {
    width: 100%;
  }

  .footer-main .footer-menu:nth-child(3) {
    width: 100%;
  }

  .footer-main .footer-menu:nth-child(4) {
    width: 100%;
  }

  .footer-main .footer-menu:nth-child(5) {
    width: 100%;
  }

  .footer-menu h5 {
    height: auto;
    margin-bottom: 25px;
  }

  .footer-main .footer-menu:nth-child(5) ul li {
    width: 50%;
    margin-bottom: 15px;
  }

  .footer-main .footer-menu:nth-child(5) p {
    padding-right: 0;
  }

  .faq-accordian-div {
    width: 90%;
  }

  .inner-banner-text h1 {
    font-size: 25px;
  }

  .details-serv-sec {
    display: block !important;
  }

  .details-serv-sec .details-serv-box {
    margin-bottom: 15px;
  }

  .blog-detail h2 {
    font-size: 18px !important;
  }

  .blog-detail-img-top {
    flex-wrap: wrap;
  }

  .heateor_sss_svg {
    width: 35px !important;
    height: 35px !important;
  }

  div.heateor_sss_follow_ul a,
  div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
    margin: 1px;
  }

  .blog-detail-share a {
    width: 40px;
    height: 40px;
  }

  .blog-detail h3 {
    font-size: 16px;
  }

  .contact-details-contain ul li span,
  .contact-details-form input {
    font-size: 15px;
  }

  .search-result-item h2 {
    font-size: 23px;
  }

  .error_page_sec h2 {
    font-size: 28px;
  }

  .terms-sec-det h3 {
    font-size: 18px;
  }

  .admin-date span {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767.98px) {
  .founders {
    display: block;
  }

  .founder-na:nth-child(1) img,
  .founder-na:nth-child(2) img,
  .founder-na:nth-child(3) img,
  .founder-na:nth-child(4) img,
  .founder-na:nth-child(5) img {
    width: auto;
    height: 95%;
  }

  .founder-na h3 {
    font-size: 22px;
  }

  .founder-na h3 br {
    display: none;
  }

  .linkin {
    position: relative;
    bottom: 0px;
  }

  .founder-na:first-child .linkin {
    bottom: 0px;
  }

  .founder-na:not(:last-child) {
    margin-bottom: 20px;
  }

  .qgrid-child h5 {
    font-size: 18px;
  }

  .we-done-sec .done-box {
    margin-bottom: 20px;
  }

  .choose_sec,
  .work-progress-sec,
  .we-done-sec {
    padding: 100px 0 0;
  }

  .faq_sec {
    padding: 100px 0 10px;
  }

  .job-des-con .job-des-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .job-des-con .job-des-form {
    width: 100%;
  }

  .footer-main .footer-menu:nth-child(5) ul li {
    width: 100%;
  }

  .read-more {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .site-navbar ul li .sub-menu .menu-list .menu-list-box {
    width: 100%;
  }

  .banner-text .banner-text-heading h1 {
    font-size: 80px;
    line-height: 65px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 70px;
    line-height: 70px;
  }

  .banner-text-heading h4 {
    font-size: 20px;
    padding-right: 3px;
  }

  header .container-fluid .logo {
    width: 30%;
  }

  .container-fluid {
    padding: 0 30px;
  }

  .banner-btm-sub {
    width: 100%;
    justify-content: start;
    padding: 10px;
  }

  .banner-btm-sub-title h2 {
    font-size: 40px;
  }

  .home-about .title h2 {
    width: 100%;
    margin: 0 auto 10px;
    font-size: 25px;
  }

  .title h2 br {
    display: none;
  }

  .title p br {
    display: none;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count {
    width: 90px;
    height: 90px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count1 {
    top: 20px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 115px;
    right: 20px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count .home-about-star2 {
    top: 45px;
    left: -85px;
  }

  .title h2 {
    font-size: 25px;
  }

  .custom-py {
    padding: 50px 0;
  }

  .custom-mb {
    margin-bottom: 70px;
  }

  .solutions .solutions-vec {
    display: none;
  }

  .home-project .container-fluid {
    padding: 0 0 0 30px;
  }

  .owl-theme .owl-nav {
    right: 30px;
    top: -70px;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .owl-nav svg {
    font-size: 13px;
  }

  .home-project-com .home-project-text h3 {
    font-size: 22px;
  }

  .home-project-com .home-project-text p br {
    display: none;
  }

  .home-project .btn-sec-main {
    text-align: right;
    padding-right: 30px;
    padding-top: 30px;
  }

  .home-work .home-work-icon1 {
    left: 15%;
    top: -65px;
    width: 80px;
  }

  .home-work .home-work-icon2 {
    left: 2%;
    top: 70px;
    width: 80px;
  }

  .home-work .home-work-icon3 {
    right: 0%;
    top: 0px;
    width: 75px;
  }

  .home-work .home-work-icon4 {
    right: 2%;
    top: 125px;
    width: 90px;
  }

  .home-work .home-work-icon5 {
    right: 3%;
    bottom: -50px;
    width: 90px;
  }

  .home-work .home-work-icon6 {
    left: 3%;
    bottom: 15px;
    width: 80px;
  }

  .custom-btn {
    font-size: 12px;
    padding: 6px 25px;
  }

  .home-work-sec .home-work-box .home-work-box-img {
    width: 120px;
    height: 120px;
  }

  .image-holder {
    width: 100%;
  }

  .case-studies-list li {
    width: 100%;
    margin-bottom: 25px;
  }

  .case-studies-list li:last-child {
    width: 100%;
    margin-bottom: 0;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .about-client h3,
  .the-challenges h3,
  .solutions h3,
  .result h3,
  .technology-tools h3,
  .methods-con h2,
  .work-progress-sec ul li h3,
  .choose-con2 h3,
  .research-main .research-sub h3,
  .choose-con2 h3,
  .we-done-sec .done-box h3,
  .details-serv-sec .details-serv-box h4 {
    font-size: 18px;
  }

  .mission h2,
  .founder h2,
  .ideal h2 {
    font-size: 25px;
  }

  .faq-accordian-div {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {

  p,
  li {
    font-size: 13px;
  }

  .banner-text .banner-text-heading h1 {
    font-size: 55px;
    line-height: 45px;
  }

  .banner-text .banner-text-heading h1 span {
    font-size: 50px;
    line-height: 50px;
  }

  .banner-text-heading h4 {
    font-size: 15px;
    padding-right: 0px;
  }

  .banner-text-sub-heading p {
    font-size: 12.5px;
  }

  .banner-text {
    width: 100%;
    text-align: center;
    padding: 85px 0 30px;
  }

  .banner-btm-sub-title h2 {
    font-size: 25px;
  }

  .banner-btm-sub-con span {
    font-size: 11px;
    line-height: 12px;
  }

  .mobile-d-none {
    display: none !important;
  }

  .banner-btm-sub {
    padding: 5px;
    flex-basis: 50%;
    align-items: center;
  }

  .home-about-sub-sec {
    width: 100%;
  }
  
  .mobile-logo-navigation{padding: 20px 10px;}
  .mobile-logo-navigation img{height: 25px;}
  
  .social-media-mobile-navigation{padding: 20px 10px;}
  .social-media-mobile-navigation a{
    width: 40px;
    height: 40px;
    background: #ed4a24;
    border-radius: 50%;
  }
  .social-media-mobile-navigation a svg path{
    fill: #fff;
  }
  

  .home-about-sub-sec:nth-child(2) .home-about-sub {
    margin-top: 25px;
  }

  .home-about-sub-sec:nth-child(2) .home-about-sub .home-about-star1 {
    top: -75px;
    width: 7%;
  }

  .home-about-sub-sec:nth-child(3) .home-about-sub {
    margin-top: 65px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count1 {
    top: 40px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 200px;
    right: 20px;
  }

  .home-project .title h2 span {
    width: 100px;
  }

  .home-project .title {
    padding-right: 30px;
  }

  .home-project .title h2 {
    font-size: 20px;
  }

  .home-project .title h2 span {
    width: 80px;
    margin: 0 7px;
  }

  .home-work .home-work-icon2 {
    top: 100px;
  }

  .home-work-sec .home-work-box {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
  }

  .home-work-sec .home-work-box:last-child {
    margin-bottom: 0;
  }

  .footer-main .footer-menu:nth-child(5) ul li {
    width: 100%;
  }

  .home-about .title h2 span {
    height: 30px;
    width: 30px;
  }

  .title p {
    font-size: 14px;
  }

  .custom-mb-sm {
    margin-bottom: 0;
  }

  .home-about-sub-sec h2 {
    font-size: 16px;
    line-height: 23px;
  }

  .home-about-sub-sec h2 span {
    font-size: 16px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub {
    margin-top: 25px;
  }

  .about-client h3,
  .the-challenges h3,
  .solutions h3,
  .result h3,
  .technology-tools h3,
  .methods-con h2,
  .work-progress-sec ul li h3,
  .choose-con2 h3,
  .research-main .research-sub h3,
  .choose-con2 h3,
  .we-done-sec .done-box h3,
  .details-serv-sec .details-serv-box h4 {
    font-size: 16px !important;
  }

  .solutions-sec p {
    font-size: 13px;
  }

  .custom-mb {
    margin-bottom: 50px;
  }

  .owl-theme .owl-nav {
    right: 10px;
    top: -60px;
  }

  .owl-theme .owl-nav [class*='owl-'] {
    margin: 2px;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
  }

  .home-project-com {
    background-size: 100% 100%;
    padding: 20px;
  }

  .home-project-com .home-project-text h3 {
    font-size: 16px;
  }

  .home-work-box-text h3 {
    font-size: 16px;
  }

  .home-work-box-text p {
    font-size: 13px;
  }

  .custom-py-sm {
    padding: 50px 0;
  }

  .footer-top {
    padding: 50px 0;
  }

  .footer-main .footer-menu:last-child {
    margin-bottom: 0;
  }

  .footer-main .footer-menu:nth-child(2),
  .footer-main .footer-menu:nth-child(3) {
    flex-basis: 100%;
  }

  .footer-btm {
    padding: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .footer-btm ul {
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-btm ul li {
    flex-basis: 50%;
  }

  /*.footer-btm p{margin-top: 20px;}*/
  .footer-menu p {
    font-size: 14px;
  }

  .footer-links {
    font-size: 14px;
  }

  .search-main svg {
    width: 19px;
  }

  .pbmit-search-overlay {
    height: 200px;
  }

  .qodef-svg--close {
    width: 16px;
  }

  .pbmit-icon-close {
    top: 5% !important;
    right: 5% !important;
  }

  .pbmit-search-overlay input[type="search"] {
    line-height: 0;
    font-size: 17px !important;
    height: 35px
  }

  .is-search-icon svg {
    width: 28px !important;
  }

  .pbmit-search-overlay .pbmit-site-searchform button {
    transform: translate(0%, -45%);
  }

  .is-form-style {
    margin: 0 15px;
  }

  .founders {
    display: block;
  }

  .inner-banner-text {
    padding: 100px 0 35px;
  }

  .inner-banner-text p {
    width: 100%;
    font-size: 13px;
  }

  .inner-banner-text h1 {
    width: 100%;
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .about-us-page-main{padding: 25px 0 0;}
  
  .business

  .inner-banner .vec-idea {
    top: -15px;
    right: 0;
  }

  .inner-banner .vec-star1 {
    top: 20%;
    left: 15%;
    width: 15px;
  }

  .inner-banner .vec-star2 {
    bottom: 7%;
    left: 60%;
    width: 15px;
  }

  .inner-banner .vec-star3 {
    bottom: 30%;
    right: 3%;
    width: 15px;
  }

  #business_sec {
    background-size: 100% 100%;
    height: 100%;
  }

  .business {
    padding: 25px;
  }

  .business h2,
  .projects h2 {
    font-size: 20px;
  }
  
  .circle-custom-ul li{font-size: 14px; padding: 4px 0;}

  .business p,
  .projects p {
    font-size: 16px;
  }

  .text-s {
    left: 4%;
    width: 92%;
    bottom: 0;
  }

  .text-s span {
    font-size: 11.5px;
  }

  .text-s div:first-child span:first-child {
    right: 40px;
    bottom: 90px;
    transform: rotate(-14deg);
  }

  .text-s div:first-child span:last-child {
    right: -11px;
    bottom: 63px;
    transform: rotate(-57deg);
  }

  .founder {
    margin-top: 25px;
    padding: 20px;
  }

  .founder h2,
  .ideal h2 {
    font-size: 20px;
  }

  .f-contact {
    margin-top: 20px;
    display: block;
  }

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

  .founder-text h5 {
    font-size: 16px;
  }

  .founder-text p {
    line-height: 15px;
  }

  .f-contact .btn-sec-main {
    margin-top: 15px;
  }

  .custom-pb-sm {
    padding-bottom: 25px;
  }

  .ideal {
    padding: 20px;
  }

  .ideal-star {
    right: 0;
    width: 25px;
  }

  .quality-grid {
    margin-top: 15px;
    gap: 10px 0;
  }

  .quality-grid .qgrid-child {
    padding: 0;
  }

  .qgrid-child h5 {
    font-size: 15px;
  }

  .qgrid-child p {
    font-size: 12px;
  }

  .quality-grid::after {
    top: 41%;
  }

  .quality-grid::before {
    left: 47%;
  }

  .projects {
    padding: 20px;
    height: 30vh;
  }

  .journey .btn-sec-main {
    margin-top: 20px;
  }

  .core-team .title {
    margin-bottom: 15px;
  }

  .founder-na {
    padding: 20px;
    height: 30vh;
    margin-bottom: 15px;
  }

  .founder-na h3 {
    font-size: 16px;
  }

  .founder-na p {
    font-size: 13px;
  }

  .founder-na:first-child .linkin {
    bottom: 5%;
  }

  .linkin a {
    height: 40px;
    width: 40px;
  }

  .cus-pt {
    padding-top: 25px;
  }

  .brands-padding {
    padding: 25px 0;
  }

  .total {
    padding: 20px;
    height: 40vh;
    background-size: 100% 100%;
  }

  span.team_img {
    width: 45px;
    height: 45px;
  }

  .team {
    padding-left: 15px;
  }

  .team-count h2 {
    font-size: 3em;
    line-height: normal;
  }

  .team-count p {
    font-size: 13px;
  }

  .location {
    height: 35vh;
    margin-top: 15px;
  }

  .location h5 {
    text-align: center;
    font-size: 14px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -15%);
    line-height: normal;
  }

  .mission h2 {
    font-size: 20px;
  }

  .mission .btn-sec-main {
    margin: 25px 0 15px;
  }

  .mission h5 {
    font-size: 16px;
  }

  .mission p {
    margin: 15px 0;
  }

  .solutions-sec a {
    padding: 15px;
  }

  .solutions-inner .btn-sec-main {
    margin-top: 15px;
  }

  .casestudies-sec {
    padding-top: 50px;
  }

  .technology-tools h3 {
    margin-right: 0;
  }

  .technology-tools-sec span {
    margin-left: 15px;
    background: transparent;
  }

  .case-det-text li {
    line-height: normal;
    margin-bottom: 10px;
  }

  .contact-details-contain {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .contact-details-contain h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .contact-details-contain ul li span {
    font-size: 14px;
  }

  .vec-arrow {
    display: none;
  }

  .contact-details-contain ul {
    margin-bottom: 20px;
  }

  .contact-details-contain .footer-icon {
    width: 40px;
    height: 40px;
  }

  .contact-details-form {
    padding: 20px;
    border-radius: 10px;
  }

  .contact-form-sec .custom-btn {
    margin-top: 0;
    padding: 4px 35px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .contact-que h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .accordion {
    font-size: 16px;
  }

  .panel p {
    font-size: 13px;
  }

  .job-des {
    padding: 50px 0;
  }

  .job-des .accordion-sec {
    padding: 10px;
  }

  .job-des .accordion {
    display: block;
    position: relative;
  }

  .job-des .accordion span {
    display: block;
  }

  .job-des .accordion span:nth-child(1) {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 10px;
  }

  .job-des .accordion span:nth-child(2) {
    font-size: 13px;
    line-height: normal;
    margin-bottom: 10px;
    color: #424242;
  }

  .job-des .accordion span:nth-child(3) {
    font-size: 13px;
    line-height: normal;
  }

  .job-des .accordion span:nth-child(3) svg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }

  .job-des .panel {
    padding-top: 10px;
    margin-bottom: 0;
  }

  .job-des ul li {
    line-height: normal;
    margin-bottom: 10px;
    margin-left: 15px;
  }

  .apply-form input {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .apply-form #Upload_btn {
    font-size: 13px;
  }

  .apply-form input[type='submit'] {
    width: auto;
    padding: 2px 45px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .error_page {
    padding: 25px 0;
  }

  .error_page_sec h2 {
    font-size: 20px;
  }

  .error_page_sec p {
    margin-bottom: 25px;
  }

  .terms-sec-det {
    padding: 25px;
  }

  .terms-sec-det h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 20px;
  }

  .terms-sec-det p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .blog-listing-box-text h3 {
    margin-bottom: 0;
  }

  .blog-listing-box-text h3 a {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 23px;
  }

  .date span,
  .user span,
  .product-tag span,
  .share-list span {
    font-size: 13px;
  }

  .calendar-days {
    height: 15px;
    width: 15px;
  }

  .date {
    margin-bottom: 10px;
  }

  .blog-listing-box-text a {
    font-size: 14px;
  }

  .blog-listing-box-text a svg {
    height: 13px;
    width: 13px;
    margin-top: 2px;
  }

  .blog-listing .product-cate-listing {
    padding-left: 0;
  }

  .filter-search .is-form-style {
    margin: 0;
  }

  .product-cate-listing h3 {
    font-size: 16px;
    margin: 15px 0;
  }

  .widget-title h4 {
    font-size: 14px;
  }

  .popular-tag a {
    font-size: 13px;
  }

  .blog-detail-img-top {
    display: block;
  }

  .blog-detail-img-top .admin-date {
    text-align: center;
  }

  .heateor_sss_horizontal_sharing .heateor_sss_svg,
  .heateor_sss_standard_follow_icons_container .heateor_sss_svg {
    width: 35px !important;
    height: 35px !important;
  }

  .blog-detail-share {
    justify-content: space-between;
  }

  .blog-detail-share a {
    width: 35px;
    height: 35px;
  }

  .blog-detail-share span {
    font-size: 14px;
  }

  .blog-detail p {
    margin-bottom: 10px;
  }

  .blog-detail h2 {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .blog-detail h3 {
    font-size: 14.5px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .blog-detail ul li {
    margin-bottom: 10px;
  }

  #reply-title {
    font-size: 20px;
  }

  .blog-detail label {
    font-size: 14px;
  }

  #comments {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
  }

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

  .relater-blog {
    padding-top: 35px;
  }

  .pbmit-header-search-btn {
    margin: 0 15px;
  }

  .search-result-item h2 {
    font-size: 20px;
  }

  .search-result-item p {
    font-size: 14px;
  }

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

  .margin-right-left-more {
    margin: 0;
  }

  .details-serv-sec {
    display: block;
  }

  .details-serv-sec .details-serv-box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .details-serv-sec .details-serv-box h4 {
    font-size: 15px;
  }

  .details-serv {
    padding-bottom: 20px;
  }

  .methods-con h2 {
    font-size: 16px;
  }

  .research-main {
    display: block;
  }

  .research-main .research-sub {
    width: 100%;
    padding-bottom: 20px;
  }

  .research .title h2 {
    padding-bottom: 20px;
  }

  .research-main .research-sub h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .research-main .research-sub p {
    font-size: 13px;
  }



  .faq_sec {
    padding: 50px 0;
  }

  .choose_sec,
  .work-progress-sec,
  .we-done-sec {
    padding: 60px 0 0;
  }

  .contact-details-form input {
    font-size: 13px;
  }

  .read-more {
    font-size: 13px;
  }

  .admin-date span {
    font-size: 13px;
  }

}

@media only screen and (max-width: 400px) {
  .container-fluid {
    padding: 0 20px;
  }

  header .container-fluid .logo {
    width: 40%;
  }

  header .container-fluid .logo {
    width: 40%;
  }

  .banner {
    height: 40vh !important;
  }

  .home-about .title h2 {
    width: 100%;
    margin: 0 auto 10px;
    font-size: 15px;
  }

  .home-about-sub-sec:nth-child(4) .home-about-sub .home-about-count2 {
    top: 180px;
  }

  .title h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .home-project .container-fluid {
    padding: 0 0 0 20px;
  }

  .home-work .home-work-icon3 {
    right: 0%;
    top: 42px;
  }

  .home-work-sec .home-work-box:nth-child(even) {
    margin-top: 0;
  }

  .mission h2,
  .founder h2,
  .ideal h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .founder-na:nth-child(1) img,
  .founder-na:nth-child(2) img,
  .founder-na:nth-child(3) img,
  .founder-na:nth-child(4) img,
  .founder-na:nth-child(5) img {
    width: auto;
    height: 80%;
  }
}