@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary: #7400b8;
  --secondary: #b5179e;
  --text-color: #222327;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font2: 'Bilbo Swash Caps', cursive; 
  --font-gradient: linear-gradient(270deg, #7400b8 4.07%, #b5179e 100%);
}

html,
body {
  font-family: var(--font);
}
body {
  background: #ffffff;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  width: 100%;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
::-moz-selection {
  background: var(--primary);
  color: #fff;
}
::selection {
  background: var(--primary);
  color: #fff;
}
a,
a:hover {
  text-decoration: none;
}
ul{
  margin: 0px;
  padding: 0px;
}
section{
  width: 100%;
  padding-top: 100px;
}


/*------- Buttons Style Start -------*/
.btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  padding: 15px 35px;
  border-radius: 150px;
  transition: .3s ease-in;
}
.btn-primary {
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  color: #FFFFFF;
  border: 0px;
  transition: .3s ease-in;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  color: #fff;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  background-position: -100%;
  border: 0px;
  transition: .3s ease-in;
}
.btn-primary:active:focus,
.btn-primary:focus{
  box-shadow: none;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible {
  box-shadow: none;
}


/*------- Header Style Start -------*/
header{
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 9999;
  position: absolute;
  width: 100%;
}
header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}
.header-main-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  display: block;
  max-width: 225px;
}
header .header-navbar {
  margin-left: auto;
  margin-right: 50px;
}
header nav > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav > ul > li {
  position: relative;
  padding: 40px 0;
  transition: all 0.4s;
}
header.sticky-header nav > ul > li{
  padding: 30px 0;
  transition: all 0.4s;
}
header nav > ul > li + li {
  margin-left: 35px;
}
header nav > ul > li > a {
  color: #212121;
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  line-height: 19px;
  position: relative;
}
header nav > ul > li:hover > a {
  color: var(--primary);
}
header nav > ul > li.menu-parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  background: url("../images/menu-parent.png") no-repeat;
  background-size: 100% 100%;
  width: 10px;
  height: 6px;
  margin: 7px 0 0 8px;
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: 250px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: linear-gradient(298deg, var(--secondary) 10%, var(--primary) 90%);
  padding: 30px;
  opacity: 0;
  transform: translatey(20px);
  visibility: hidden;
  transition: all 0.4s;
}
header nav > ul > li.menu-parent:hover > .sub-menu {
  opacity: 1;
  transform: translatey(0);
  visibility: visible;
}
.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu ul li {
  margin-bottom: 10px;
}
.sub-menu ul li:last-child {
  margin-bottom: 0;
}
.sub-menu ul li a {
  width: 100%;
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1411764706);
  transition: 0.3s ease-in-out;
}
.sub-menu ul li:last-child a{
  padding-bottom: 0px;
  border-bottom: 0px;
}
.sub-menu ul li a:hover {
  padding-left: 10px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.navbar-toggle{
  display: none;
}
.header-main-bar .contact-btn a{
  display: inline-block;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  padding: 15px 35px;
  transition: all 0.4s;
  border-radius: 50px;
}
.header-main-bar .contact-btn a:hover{
  background-position: -100%;
  transition: all 0.4s;
}
.menu-contact{
  display: none;
}
header nav > ul > li.mega-menu {
  position: inherit;
}
header nav > ul > li.mega-menu .sub-menu{
  width: 100%;
  min-width: inherit;
  background: transparent;
  box-shadow: none;
  padding: 0px;
}
header nav > ul > li.mega-menu .sub-menu .sub-menu-inner{
  max-width: 1295px;
  margin: 0 auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: linear-gradient(298deg, var(--secondary) 10%, var(--primary) 90%);
  padding: 30px;
}
header nav > ul > li.mega-menu .sub-menu .sub-menu-inner .col-md-4 {
  padding-right: 50px;
}
header nav > ul > li.mega-menu .sub-menu .sub-menu-inner .col-md-4:last-child {
  padding-right: 12px;
}
.mega-menu .sub-menu h3{
  color: #fff;
  position: relative;
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  width: 100%;
  font-weight: 600;
}
.mega-menu .sub-menu h3::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 1px;
}
.mega-menu .sub-menu h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(274.07deg, var(--primary) 17.75%, var(--secondary) 90.96%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.mega-menu .sub-menu li{
  margin-bottom: 10px;
}
.mega-menu .sub-menu li:last-child{
  margin-bottom: 0px;
}
.mega-menu .sub-menu li a{
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1411764706);
  transition: 0.3s ease-in-out;
}
.mega-menu .sub-menu li:last-child a{
  padding-bottom: 0px;
  border-bottom: 0px;
}
.mega-menu .sub-menu li a:hover{
  padding-left: 10px;
  color: #fff;
  transition: 0.3s ease-in-out;
}


/*------- Hero Banner Style Start -------*/
.hero-banner-main{
  width: 100%;
  height: 100vh;
  padding-top: 0px;
  background: url('../images/hero-bg.jpg') no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-banner-main::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(78deg, rgba(40, 40, 40, 0.95) 0%, rgba(40, 40, 40, 0.76) 41.52%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: multiply;
}
.hero-content-area {
  position: relative;
  z-index: 9;
  margin-top: 90px;
}
.hero-content-area h6{
  font-family: var(--font2);
  color: #fff;
  font-size: 35px;
  letter-spacing: 3.5px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content-area h1{
  color: #fafafc;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
}
.hero-content-area h1 span{
  background: var(--font-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content-area p{
  color: #fafafc;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.hero-content-area .btn{
  margin-top: 25px;
}



/*------- About Section Style Start -------*/
.about-section{
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 20px;
}
.section-title{
  width: 100%;
  margin-bottom: 40px;
}
.section-title h6{
  font-family: var(--font2);
  font-size: 30px;
  line-height: 40px;
  color: var(--text-color);
  margin-bottom: 10px;
  letter-spacing: 3px;
  display: none !important; 
}
.section-title h3{
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--font-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
}
.about-category{
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.about-category-item{
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid rgb(0 0 0 / 11%);
  border-radius: 10px;
  padding: 15px 30px;
  transition: 0.4s;
}
.about-category-item:hover {
  -webkit-box-shadow: 30px 15px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 30px 15px 30px 0px rgba(0, 0, 0, 0.05);
}
.about-category-item i{
  flex: none;
  width: 40px;
  display: inline-block;
  margin-right: 20px;
}
.about-category-item i img{
  width: 100%;
}
.about-category-item h5{
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  color: var(--text-color);
  font-weight: 500;
}
.about-image-group {
  position: relative;
  z-index: 1;
  max-width: 665px;
  min-height: 660px;
  width: 100%;
  margin-left: auto;
  right: -70px;
}
.about-image-group .about-image1 {
  position: absolute;
  top: 70px;
  right: 0px;
  max-width: 385px;
  width: 100%;
  height: 385px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50%;
  padding: 1px;
}
.about-image-group .about-image1 .shaspe_one {
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.about-image-group .about-image1::before {
  position: absolute;
  content: "";
  width: 625px;
  height: 625px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: linear-gradient(80deg, rgba(35, 210, 165, 0.1) 0%, rgba(95, 57, 255, 0.1) 87%);
  z-index: -1;
  opacity: 0.8;
  border-radius: 50%;
}
.about-image-group .about-image1::after {
  position: absolute;
  content: "";
  width: 360px;
  height: 360px;
  left: -50%;
  bottom: -100px;
  background: linear-gradient(80deg, rgba(35, 210, 165, 0.1) 0%, rgba(95, 57, 255, 0.1) 87%);
  z-index: -1;
  opacity: 0.8;
  border-radius: 50%;
}
.about-image-group .about-image1 .lg-images {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 20px;
  background-color: #fff;
}
.about-image-group .about-image2 {
  position: absolute;
  top: 40%;
  left: 0;
  max-width: 245px;
  height: 245px;
  width: 100%;
  bottom: auto;
}
.about-image-group .about-image2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--primary);
  border-radius: 50%;
  padding: 10px;
}
.about-image-group .about-image3 {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  max-width: 200px;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50%;
  padding: 1px;
}
.about-image-group .about-image3 img {
  border-radius: 50%;
  padding: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #fff;
}
.about-image-group .about-image4 {
  position: absolute;
  bottom: 0;
  right: 20%;
  max-width: 150px;
  height: 150px;
  width: 100%;
}
.about-image-group .about-image4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  padding: 7px;
}
.about-image-group .shapes_1 {
  position: absolute;
  z-index: -1;
  top: 270px;
  right: -44%;
  max-width: 120px;
  width: 100%;
}
.about-image-group .shapes_1 img {
  width: 100%;
}
.about-image-group .shapes_2 {
  position: absolute;
  z-index: -1;
  top: 500px;
  left: 30%;
  max-width: 120px;
  width: 100%;
}
.about-image-group .shapes_2 img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-image-group {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-image-group .about-image1 {
    max-width: 325px;
    height: 325px;
  }
  .about-image-group .about-image1::before {
    width: 425px;
    height: 425px;
  }
  .about-image-group .about-image1::after {
    width: 250px;
    height: 250px;
  }
  .about-image-group .about-image2 {
    max-width: 220px;
    height: 220px;
  }
  .about-image-group .about-image3 {
    max-width: 180px;
    height: 180px;
  }
  .about-image-group .about-image4 {
    bottom: 12%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-image-group {
    max-width: 560px;
    min-height: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .about-image-group .about-image1 {
    max-width: 325px;
    height: 325px;
  }
  .about-image-group .about-image1::before {
    width: 425px;
    height: 425px;
  }
  .about-image-group .about-image1::after {
    width: 250px;
    height: 250px;
  }
  .about-image-group .about-image2 {
    max-width: 220px;
    height: 220px;
  }
  .about-image-group .about-image3 {
    max-width: 180px;
    height: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image-group {
    min-height: 520px;
  }
  .about-image-group .about-image1 {
    max-width: 265px;
    height: 265px;
  }
  .about-image-group .about-image1::before {
    width: 325px;
    height: 325px;
  }
  .about-image-group .about-image1::after {
    width: 200px;
    height: 200px;
  }
  .about-image-group .about-image2 {
    max-width: 200px;
    height: 200px;
  }
  .about-image-group .about-image3 {
    max-width: 180px;
    height: 180px;
  }
}
@media (max-width: 575px) {
  .about-image-group {
    min-height: 470px;
  }
  .about-image-group .about-image1 {
    max-width: 210px;
    height: 210px;
  }
  .about-image-group .about-image1::before {
    width: 275px;
    height: 275px;
  }
  .about-image-group .about-image1::after {
    width: 180px;
    height: 180px;
  }
  .about-image-group .about-image2 {
    max-width: 135px;
    height: 135px;
  }
  .about-image-group .about-image3 {
    max-width: 125px;
    height: 125px;
  }
}

.pulse {
  -webkit-animation: pulse 2.5s ease-in-out infinite;
          animation: pulse 2.5s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


/*------- Services Section Style Start -------*/
.services-section{
  width: 100%;
  position: relative;
  margin-top: 10px;
  padding-top: 80px;
}
.bg-pattern{
  max-height: 490px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/pattern-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.services-section .section-title{
  margin-bottom: 0px;
}
.services-section .section-title h3{
  margin-bottom: 0px;
}
.services-nav-btn,
.testimonials-nav-btn{
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.services-nav-btn a,
.testimonials-nav-btn a {
  width: 55px;
  height: 55px;
  border-radius: 50px;
  background-color: var(--text-color);
  font-size: 15px;
  border: 1px solid #F2F8FB;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.services-nav-btn a:hover,
.testimonials-nav-btn a:hover {
  background-color: var(--primary);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.services-nav-btn .bi-chevron-left::before,
.services-nav-btn .bi-chevron-right::before,
.testimonials-nav-btn .bi-chevron-left::before,
.testimonials-nav-btn .bi-chevron-right::before {
  font-weight: bold !important;
}
.services-nav-btn i,
.testimonials-nav-btn i {
  margin-bottom: -2px;
}
.services-nav-btn .bi-chevron-left,
.testimonials-nav-btn .bi-chevron-left{
  margin-left: -2px;
}
.services-nav-btn .bi-chevron-right,
.testimonials-nav-btn .bi-chevron-right{
  margin-right: -3px;
}
.services-slider{
  width: 100%;
  margin-top: 60px;
}
.services-item{
  width: 100%;
  position: relative;
  padding: 35px 30px 70px;
  margin-bottom: 60px;
  background: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}
.services-item .icon-box{
  width: 100%;
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
  align-items: center;
}
.services-item .icon-box i{
  display: inline-block;
  width: 65px;
}
.services-item .icon-box h4{
  font-size: 52px;
  line-height: 52px;
  color: #edf0f5;
  margin-bottom: 0px;
}
.services-item h5{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
  color: var(--text-color);
}
.services-item h5 a{
  color: var(--text-color);
  transition: all 300ms ease;
}
.services-item h5 a:hover{
  color: var(--primary);
  transition: all 300ms ease;
}
.services-item p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-item .read-more{
  position: absolute;
  left: 35px;
  bottom: -32px;
  background-color: #fff;
  height: 64px;
  width: 64px;
  font-size: 24px;
  color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
}
.services-item:hover .read-more{
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  background-position: -100%;
  color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.services-item:hover h5 a{
  color: var(--primary);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.services-slider .slick-slide{
  padding: 0 12px;
}
.services-slider .slick-arrow{
  display: none !important;
}
.services-slider .slick-list {
  margin-left: -28px;
  margin-right: -28px;
}


/*------- Verticals We Serve Section Style Start -------*/
.verticals-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.verticals-row {
  width: 100%;
  display: flex;
  gap: 15px;
}
.verticals-col {
  display: flex;
  gap: 15px;
  flex: 1;
}
.verticals-img {
  width: 100%;
  position: relative;
  height: 440px;
  position: relative;
  overflow: hidden;
}
.verticals-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
/*.verticals-img a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}*/
.verticals-img h6 {
  position: absolute;
  bottom: 30px;
  left: 0;
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  width: 100%;
  padding: 0 30px;
  z-index: 9;
}
.verticals-img::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: rgb(116,0,184);
  z-index: 9;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(181,23,158,0) 100%);
}
.verticals-img:hover img{
  transform: scale(1.2) rotate(3deg);
}
.verticals-serve-btn{
  width: 100%;
  text-align: center;
  margin-top: 50px;
}


/*------- Counter Section Style Start -------*/
.counter-card{
  width: 100%;
  background: linear-gradient(298deg, var(--secondary) 10%, var(--primary) 90%);
  padding: 50px 30px;
}
.counter-box {
  width: 100%;
  text-align: center;
  position: relative;
}
.counter-box:after{
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0px;
  right: -12px;
  background: rgba(161, 172, 179, 0.4);
}
.counter-card .row .col-xl-2:last-child .counter-box:after{
  display: none;
}
.counter-box i {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
}
.counter-box i img {
  height: 60px;
  position: relative;
  z-index: 9;
}
.counter-box i:after{
  position: absolute;
  content: "";
  width: 50px;
  height: 56px;
  top: -10px;
  left: -10px;
  background: url("../images/shapes.png") no-repeat;
  background-size: 100% 100%;
  opacity: 0.2;
}
.counter-box h6 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.counter-box p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}


/*------- Clients Section Style Start -------*/
.clients-section{
  position: relative;
}
.clients-section .social-commu-item {
  max-width: 100% !important;
}
.clients-section .social-commu-img {
  width: 200px;
  height: 200px;
}
.clients-section .social-commu-img img {
  max-width: 140px;
}
.clients-section .social-commu-inner{
  padding: 15px 15px 20px;
}
.clients-section .section-title {
  text-align: center;
}
.clients-section .section-title h3{
  margin-bottom: 0;
}
.client-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(0 0 0 / 11%);
  border-radius: 10px;
  padding: 15px 30px;
  height: 100px;
}
.client-slider .slick-slide {
  margin-left: 15px;
}
.client-slider .slick-list {
  margin-left: -15px;
}
.client-slider .slick-slide>div {
  margin-right: 5px;
}


/*------- Case Studies Section Style Start -------*/
.case-studies-section{
  width: 100%;
  position: relative;
  margin-top: 80px;
  padding-top: 60px;
}
.case-studies-section .section-title {
  margin-bottom: 0px;
}
.case-studies-section .section-title h3 {
  margin-bottom: 0px;
}
.case-studies-main{
  width: 100%;
  margin-top: 60px;
}
.case-studies-card{
  width: 100%;
  display: flex;
  gap: 12px;
}
.case-studies-item{
  width: 20%;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.case-studies-item a {
    width: 100%;
    display: inline-block;
}
.case-studies-item.active {
  width: 100%;
  transition: 0.6s;
}
.case-studies-item img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.case-studies-count{
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgb(0 0 0 / 60%);
  border-radius: 50%;
  padding: 105px 0 0 40px;
}
.case-studies-count h5{
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}
.case-studies-content{
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: linear-gradient(90deg, rgb(118 1 183) 0%, rgb(178 22 159 / 0%) 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.case-studies-item.active .case-studies-content{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.case-studies-header {
  flex: 1;
}
.case-studies-header .sub-title{
  display: inline-block;
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}
.case-studies-header .title-link{
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-studies-header .title-link a{
  color: #fff;
}
.case-studies-arrow i {
  width: 65px;
  height: 45px;
  line-height: 45px;
  border-radius: 3px;
  background: #fff;
  display: inline-block;
  text-align: center;
  font-size: 25px;
  color: var(--primary);
  transition: .3s ease-in;
}
.case-studies-arrow i {
  position: relative;
  top: -2px;
}
.case-studies-arrow i:hover{
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  color: #FFFFFF;
  transition: .3s ease-in;
}


/*------- Blog Section Style Start -------*/
.blog-item-card{
  width: 100%;
  position: relative;
}
.blog-image {
  margin-bottom: 30px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.blog-image a {
  width: 100%;
  display: inline-block;
}
.blog-image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.blog-image::before {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 50%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  pointer-events: none;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  border-radius: 20px;
  z-index: 3;
}
.blog-content-area {
  width: 100%;
  padding: 0 50px;
}
.blog-meta {
  margin-bottom: 15px;
  position: relative;
}
.blog-meta::before {
  position: absolute;
  content: "";
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
}
.blog-meta span {
  margin-right: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-color);
}
.blog-meta span a {
  color: var(--text-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.blog-meta span a:hover{
  color: var(--primary);
}
.blog-meta span:last-child {
    margin-right: 0;
}
.blog-title{
  color: var(--text-color);
  font-size: 22px;
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 0px;
}
.blog-title a{
  color: var(--text-color);
  transition: 0.4s;
}
.blog-title a:hover{
  color: var(--primary);
}
.blog-button{
  margin-top: 30px;
}
.blog-item-card:hover .blog-image::before {
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
}


/*------- Requirement Section Style Start -------*/
.requirement-section{
  width: 100%;
  padding: 100px 0;
  margin-top: 100px;
  background: url("../images/requirement-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  background-attachment: fixed;
}
.requirement-section::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(78deg, rgba(40, 40, 40, 0.95) 0%, rgba(40, 40, 40, 0.76) 41.52%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: multiply;
}
.requirement-card{
  width: 100%;
  position: relative;
  z-index: 9;
}
.requirement-card .section-title h6,
.requirement-card .section-title h3,
.requirement-card .section-title p{
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: #fff;
}


/*------- Contact Section Style Start -------*/
.contact-form-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 40px;
  background: #fafafc;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}
.contact-left-content {
  max-width: 600px;
}
.contact-left-content .comntact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.contact-left-content .comntact-list:last-child {
  margin-bottom: 0;
}
.contact-left-content .comntact-list .contact-icon {
  width: 55px;
  height: 55px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 25px;
  color: var(--tj-color-common-white);
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  margin-right: 20px;
}
.contact-left-content .comntact-list .contact-icon img {
  max-width: 27px;
  width: 100%;
}
.contact-left-content .contact-header a {
  color: var(--text-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 18px;
  font-weight: 500;
  margin-top: 2px;
  display: inline-block;
}
.contact-left-content .contact-header a:hover{
  color: var(--primary);
}
.contact-form-box {
  max-width: 510px;
  width: 100%;
}
.contact-form-box .form-input-card {
  margin-bottom: 20px;
}
.contact-form-box .form-input-card label {
  margin-bottom: 10px;
  color: var(--text-color);
}
.contact-form-box .form-input-card .form-input {
  width: 100%;
  height: 63px;
  border-radius: 8px;
  padding: 10px 20px;
  background: #fafafc;
  border: 1px solid #d6d6d6;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
.contact-form-box .form-input-card .form-input:focus{
  border: 1px solid var(--primary);
}
.contact-form-box .form-input-card textarea.form-input{
  padding: 17px 20px;
  min-height: 140px;
  resize: none;
  display: block;
}
.contact-header span {
  font-size: 16px;
  line-height: 26px;
}


/*------- Footer Style Start -------*/
.footer-main{
  width: 100%;
  background: url("../images/footer-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 100px;
}
.footer-main .footer-menu-area{
  padding-top: 100px;
  padding-bottom: 80px;
}
.footer-content-info .footer-logo {
  max-width: 185px;
  width: 100%;
  margin-bottom: 30px;
}
.footer-content-info .footer-logo a {
  display: inline-block;
}
.footer-content-info .footer-logo img{
  width: 100%;
}
.footer-content-info p {
  color: #fafafc;
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 20px;
}
.footer-share ul{
  display: flex;
  gap: 15px;
}
.footer-share ul li a{
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--primary);
  font-size: 20px;
  transition: all 0.4s ease-in-out 0s;
}
.footer-share ul li a:hover{
  background: var(--primary);
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.footer-menu-area .footer_title {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
}
.footer-menu-area .footer_title::after{
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.widget_nav_menu .footer-menu ul li {
  margin-bottom: 15px;
}
.widget_nav_menu .footer-menu ul li:last-child{
  margin-bottom: 0px;
}
.widget_nav_menu .footer-menu ul li a{
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 0px;
  width: fit-content;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}
.widget_nav_menu .footer-menu ul li a:hover{
  transform: translate(10px);
}
.widget_contact_menu .footer-menu ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.widget_contact_menu .footer-menu ul li:last-child{
  margin-bottom: 0px;
}
.widget_contact_menu .footer-menu ul li span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-right: 15px;
  flex: none;
}
.widget_contact_menu .footer-menu ul li p{
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
}
.widget_contact_menu .footer-menu ul li p a{
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
}
.widget_contact_menu .footer-menu ul li p a:hover{
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
}
.copyright-area{
  width: 100%;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgb(255 255 255 / 20%);
}
.copyright-area p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
}
.footer1-col-1 {
  padding-right: 50px;
}
.footer-widget.footer1-col-4 {
  padding-left: 35px;
}


/*------- Scroll to Top Style Start -------*/
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--text-color);
  box-shadow: 0px 4px 14px 0px #0000000D;
  width: 50px;
  height: 50px;
  line-height: 26px;
  display: block;
  z-index: 999;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 11px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: var(--primary);
}
#return-to-top:hover i {
  color: #fff;
  top: 6px;
}


/*------- Process Page Style Start -------*/
.sub-page-header{
  position: relative;
  display: block;
  padding: 220px 0 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.sub-page-header:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(30, 30, 34, 0.5);
  z-index: 1;
}
.page-header-inner h1{
  color: #fafafc;
  margin-bottom: 40px;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}
.page-header-inner{
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}
.breadcrumb {
  padding: 0;
  background: none;
  display: inline-block;
  border-radius: 0;
  margin: 0;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
}
.breadcrumb-item {
  display: inline-block;
}
.breadcrumb-item a {
  color: #fff;
}
.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #fff;
  content: "/";
}
.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: #fff;
}
.agile-methodology-content h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.agile-methodology-content li{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.agile-methodology-content li + li {
  margin-top: 10px;
}
.agile-methodology-content li::after{
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.agile-methodology-content p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
}
.agile-testing-process{
  width: 100%;
  position: relative;
  margin-top: 100px;
}
.at-process-card{
  width: 100%;
  height: 100%;
  transition: 0.4s;
  position: relative;
  text-align: center;
  z-index: 3;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}
.at-process-no{
  position: relative;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
  z-index: 1;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.at-process-no h5{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 45px;
  height: 45px;
  font-size: 30px;
  line-height: 1;
  margin: 0px;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.at-process-no img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
}
.agile-testing-process .section-title {
  text-align: center;
  margin-bottom: 100px;
}
.at-process-content {
  padding: 20px 20px 35px;
}
.at-process-content h4{
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 15px;
  color: var(--secondary);
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.at-process-content p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
}
.at-process-content li{
  color: var(--text-color);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}
.at-process-content li + li {
  margin-top: 10px;
}
.agile-testing-process .row {
  gap: 100px 0;
}
.social-commu-card{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.social-commu-item{
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 1px;
  border-radius: 0 0 200px 200px;
  max-width: 195px;
  width: 100%;
  position: relative;
}
.social-commu-inner{
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 0 0 200px 200px;
  padding: 30px 15px 50px;
}
.social-commu-img{
  width: 135px;
  height: 135px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f7ff;
  margin-bottom: 0px;
}
.social-commu-img img{
  max-width: 90px;
}


/*------- Tech Stack Page Style Start -------*/
.tech-stack-page .social-commu-card {
  margin-bottom: 80px;
}
.tech-stack-page .social-commu-item{
 max-width: 185px;
}
.tech-stack-page .social-commu-inner{
  padding: 20px 15px 40px;
}
.social-commu-title {
  margin-top: 14px;
}
.social-commu-title h4{
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: var(--text-color);
}
.tech-stack-page .row:last-child .social-commu-card{
  margin-bottom: 0px;
}


/*------- Web App Testing Page Style Start -------*/
.webapp-img{
  width: 400px;
  height: 400px;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50%;
  padding: 1px;
}
.webapp-img img{
  border-radius: 50%;
  padding: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.our-services-card{
  width: 100%;
  position: relative;
  margin-top: 100px;
  padding-left: 70px;
  padding-right: 70px;
}
.our-services-card .section-title {
  text-align: center;
  margin-bottom: 120px;
}
.ourservices-item{
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  padding: 40px 30px;
  padding-top: 0;
  position: relative;
}
.ourservices-item-no{
  height: 120px;
  width: 120px;
  text-align: center;
  background: #fafafc;
  border-radius: 50%;
  position: absolute;
  top: -60px;
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}
.ourservices-item-no h6{
  font-size: 40px;
  font-weight: 700;
  line-height: 120px;
  background: var(--font-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ourservices-desc {
  padding-top: 90px;
}
.ourservices-desc h4{
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--text-color);
}
.ourservices-desc p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-whychoose-cont{
  width: 100%;
  padding-left: 4.5rem;
}
.featured-item {
  padding: 30px;
  background: #fff;
  overflow: inherit;
  padding-left: 50px;
  position: relative;
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  border-radius: 20px;
  margin-left: 3rem;
  margin-bottom: 2rem;
}
.featured-item .featured-icon {
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  left: -35px;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
}
.featured-desc h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.featured-desc p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
}
.services-whychoose-cont .featured-item:last-child{
  margin-bottom: 0px;
}
.services-whychoose-cont .featured-item:nth-child(2n){
  margin-right: 3rem;
  margin-left: 0px;
}
.services-whychoose-cont .featured-item:nth-child(2n) .featured-icon{
  background-position: -100%;
}
.services-whychoose-left {
  width: 100%;
  padding-left: 50px;
}
.services-whychoose{
  padding-top: 120px;
}
.services-whychoose-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.services-whychoose-img img{
  width: 100%;
}
.how-testing-works{
  width: 100%;
  background: #fafafc;  
  margin-top: 100px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}
.center-title{
  text-align: center;
}
.how-testing-card{
  width: 100%;
  display: flex;
  gap: 30px;
}
.how-testing-item{
  flex: 1;
  position: relative;
}
.how-testing-icon{
  position: relative;
  padding-top: 60px;
}
.how-testing-icon::before {
  position: absolute;
  left: 60px;
  top: 0;
  width: 190px;
  height: 146px;
  background-image: url("../images/process-arrow.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
}
.how-testing-icon-inner{
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 136px;
  width: 136px;
  border-radius: 50%;
  margin-bottom: 50px;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.how-testing-icon-inner img {
  width: 70px;
}
.how-testing-icon:after {
  position: absolute;
  left: 0;
  bottom: -24px;
  height: 160px;
  width: 160px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
  content: "";
}
.how-testing-cont h6{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.how-testing-cont p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
}
.how-testing-item:hover .how-testing-icon:after{
  height: 136px;
  width: 136px;
  bottom: 0px;
}
.how-testing-works .section-title{
  margin-bottom: 80px;
}
.testimonial-section .section-title {
  margin-bottom: 0px;
}
.testimonial-section .section-title h3 {
  margin-bottom: 0px;
}
.testimonial-slider{
  width: 100%;
  margin-top: 60px;
}
.testimonial-item{
  width: 100%;
  border-radius: 30px;
  border: 1px solid transparent;
  padding: 45px 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 20px;
  background: #fafafc;
  padding: 40px;
}
.testimonial-top-content{
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.testimonial-top-content::after{
  position: absolute;
  content: "\F255";
  font-family: bootstrap-icons !important;
  font-weight: bold !important;
  font-size: 70px;
  color: var(--primary);
  width: 70px;
  height: 70px;
  right: 0;
  bottom: 30px;
  line-height: 70px;
  text-align: center;
  opacity: 0.2;
}
.testimonial-top-content::before{
  position: absolute;
  content: "";
  width: 70%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #dcdee7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.testimonial-top-content .auother-image {
  width: 78px;
  height: 78px;
  border: 1px solid var(--primary);
  padding: 5px;
  border-radius: 50%;
  margin-right: 20px;
  flex: none;
}
.testimonial-top-content .auother-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.auother-text{
  flex: 1;
}
.auother-text h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 3px;
  color: var(--text-color);
}
.auother-text p{
  color: var(--text-color);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 0px;
}
.testimonial-text h5{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--text-color);
}
.testimonial-text p{
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0px;
}
.testimonial-slider .slick-slide {
  margin-left: 30px;
}
.testimonial-slider .slick-list{
  margin-left: -30px;
}


/*------- Why Us Page Style Start -------*/
.bespoke-services-section .section-title{
  position: sticky;
  top: 130px;
}
.bespoke-services-section .featured-item{
  margin-left: 0;
}
.bespoke-services-section .featured-item:nth-child(2n){
  margin-right: 0;
}
.bespoke-services-section .featured-item .featured-icon{
  line-height: 62px;
}
.ourstats-talking-section{
  width: 100%;
  display: flex;
  padding: 0;
  margin-top: 120px;
}
.ourstats-image-column{
  width: 50%;
  flex: 1;
  position: relative;
}
.ourstats-image-column img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ourstats-image-column .section-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 150px;
  z-index: 9;
}
.ourstats-image-column .section-title h3,
.ourstats-image-column .section-title p{
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: #fff;
}
.ourstats-content-column{
  width: 50%;
  flex: 1;
  background: #fafafc;
}
.ourstats-image-column::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
}
.ourstats-content-counter {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ourstats-content-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.ourstats-counter {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  border-radius: 20px;
  width: 330px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ourstats-counter h6{
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  color: var(--text-color);
  text-transform: uppercase;
}
.ourstats-counter h3{
  width: 100%;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 5px;
  background: var(--font-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ourstats-counter p{
  width: 100%;
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0px;
}


/*------- Contact Us Page Style Start -------*/
.contact-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  position: relative;
}
.contact-box .contact-info li {
  padding-left: 60px;
  margin-bottom: 40px;
  position: relative;
}
.contact-box .contact-info li:last-child {
  margin-bottom: 0;
}
.contact-info li i {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
.contact-info li i img{
  width: 40px;
}
.contact-info li span {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.contact-box .contact-info li p,
.contact-box .contact-info li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0px;
}
.contact-info li a:hover {
  color: var(--primary);
}
.contactus-form {
  width: 100%;
  padding-left: 50px;
}
.contactus-form .contact-form-box {
  max-width: none;
}
.contact-box .section-title {
  margin-bottom: 50px;
}
.contactus-map{
  margin: 0 30px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  /*margin-top: -90px;*/
  margin-top: 100px;
}
.contactus-map iframe{
  width: 100%;
  height: 100%;
}


/*------- Free Pilot Test Page Style Start -------*/
.freepilot-content ul{
  margin-bottom: 25px;
}
.freepilot-content li{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.freepilot-content li + li {
  margin-top: 10px;
}
.freepilot-content li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.freepilot-content p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
}
.freepilot-content p span{
  font-weight: 700;
}
.freepilot-content p:last-child{
  margin-bottom: 0px;
}
.freepilot-section .contact-box .section-title{
  margin-bottom: 30px;
}
.uploadFile {
  width: 100%;
  height: 63px;
  border-radius: 8px;
  padding: 10px 20px;
  background: #fafafc;
  border: 1px solid #d6d6d6;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  overflow: hidden;
  position: relative;
  resize: none;
  line-height: 39px;
}
.uploadFile i{
  font-size: 20px;
  color: var(--primary);
  cursor: pointer !important;
}
.uploadFile .filename{
  cursor: pointer !important;
}
.uploadFile .form-input {
  cursor: pointer !important;
  display: block;
  font-size: 999px;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0px;
  text-align: right;
  top: 0px;
  z-index: 1;
}


/*------- Sitemap Page Style Start -------*/
.sitemap-content .featured-desc h4{
  margin-bottom: 0px;
}
.sitemap-content .featured-desc h4 a{
  color: var(--text-color);
}
.sitemap-content .featured-desc h4 a:hover{
  color: var(--primary);
}
.sitemap-content .featured-item .featured-icon {
  line-height: 70px;
}
.sitemap-content .featured-item{
  margin-bottom: 1rem;
  padding-left: 60px;
}
.sitemap-content .featured-item ul{
  margin-top: 20px;
}
.sitemap-content .featured-item li{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.sitemap-content .featured-item li a{
  color: var(--text-color);
}
.sitemap-content .featured-item li a:hover{
  color: var(--primary);
}
.sitemap-content .featured-item li + li {
    margin-top: 10px;
}
.sitemap-content .featured-item li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.sitemap-content .featured-item .featured-icon{
  top: 11px;
  margin-top: 0;
}


/*------- Privacy Policy Page Style Start -------*/
.privacy-policy-content h2{
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 30px;
  background: var(--font-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.privacy-policy-content h5{
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--text-color);
}
.privacy-policy-content p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom:20px;
}
.privacy-policy-content ul{
  margin-bottom: 20px;
}
.privacy-policy-content li{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.privacy-policy-content li + li {
  margin-top: 10px;
}
.privacy-policy-content li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.privacy-policy-content a{
  color: var(--primary);
  text-decoration: underline;
}
.privacy-policy-content a:hover{
  color: var(--secondary);
  text-decoration: underline;
}


/*------- Careers Page Style Start -------*/
.careers-content-main .about-image-group{
  right: 130px;
}
.careers-content-main{
  padding-bottom: 0px;
}
.life-bespokeqa-section{
  width: 100%;
  padding: 100px 0;
  background: url("../images/pattern-1.jpg") no-repeat;
  background-size: cover;
}
.life-bespokeqa-left p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 20px;
}
.life-bespokeqa-left p:last-child{
  margin-bottom: 0px;
}
.life-bespokeqa-left{
  padding-right: 50px;
}
.life-bespokeqa-right h5{
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 30px;
  color: var(--text-color);
}
.life-bespokeqa-right li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 10px;
  z-index: 1;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.life-bespokeqa-right li + li {
  margin-top: 10px;
}
.life-bespokeqa-right li p{
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0px;
  color: var(--text-color);
}
.life-bespokeqa-right li i{
  height: 40px;
  width: 40px;
  background-color: var(--primary);
  border-radius: 50px;
  color: #fff;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-tabs-card{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.careers-tabs-section .nav-pills {
  justify-content: center;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.careers-tabs-section .nav-link{
  min-width: 350px;
  padding: 20px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-color);
  border-radius: 0;
}
.careers-tabs-section .nav-link.active{
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%);
  background-size: 200%;
  color: #fff;
}
.careers-tabs-content h5{
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--text-color);
}
.careers-tabs-content h5:first-child{
  margin-top: 0px;
}
.careers-tabs-content p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 20px;
}
.careers-tabs-content ul {
  margin-bottom: 20px;
}
.careers-tabs-content li {
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.careers-tabs-content li + li {
  margin-top: 10px;
}
.careers-tabs-content li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.careers-tabs-content .btn{
  margin-top: 20px;
}


/*------- Case Studies Page Style Start -------*/
.casestudies-page .tab-content .row{
  gap: 60px 0;
}
.case-studies-box{
  width: 100%;
  padding: 0 20px;
  height: 100%;
}
.casestudies-box-inner{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid #EDEFF0;
}
.case-studies-box-img{
  width: 100%;
  padding: 20px;
}
.case-studies-box-img img{
  height: 33px;
}
.case-studies-box-cont{
  width: 100%;
  padding: 20px;
  border-top: 1px solid var(--primary);
}
.case-studies-box-cont h6{
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--primary);
}
.case-studies-box-cont h6 span{
  display: inline-block;
  background: var(--font-gradient);
  color: #fff;
  padding: 0 8px;
  border-radius: 3px;
  margin-left: 5px;
}
.case-studies-box-cont h4{
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-studies-box-cont h4 a{
  color: var(--text-color);
}
.case-studies-box-cont h4 a:hover{
  color: var(--primary);
}
.case-studies-box-cont p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-studies-box-cont ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  margin-bottom: 30px;
}
.case-studies-box-cont ul li{
  background: rgba(116, 0, 184, 0.1);
  padding: 5px 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: var(--text-color);
  border-radius: 5px;
}
.casestudies-page .careers-tabs-card {
  margin-bottom: 70px;
}

.apply-attachment-form .card{
  width: 100%;
  margin-top: 30px;
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  border: 0px;
}
.apply-attachment-form h4{
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.apply-attachment-form .contact-button .btn{
  width: 100%;
  margin-top: 0px;
}
.apply-attachment-form .contactus-form{
  padding: 0px;
}

.management-team-section .section-title{
  text-align: center;
}
.team-box-card{
  padding-right: 40px;
  position: relative;
}
.team-img-card{
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.team-img-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-box-card:before {
  position: absolute;
  left: 50px;
  top: 30px;
  bottom: 30px;
  right: 10px;
  background-image: url(../images/team-bg.png);
  content: "";
  border-radius: 10px;
  height: 290px;
}
.team-conent{
  padding: 20px 0 0;
}
.team-conent h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 5px;
  color: var(--text-color);
}
.team-conent h6{
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #6a6a6a;
}
.team-conent p{
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0px;
}
.team-box-card:hover .team-img-card img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.whyus-connect-section{
  background: #fafafc;
  padding-bottom: 100px;
  margin-bottom: -100px;
}


/*------- Single Case Study Pages Style Start -------*/
.single-case-study-banner{
  width: 100%;
}
.single-case-study-banner .section-title {
  width: 100%;
  padding: 50px 15px;
  background: var(--font-gradient);
  margin-bottom: 0;
}
.single-case-study-banner .section-title h3{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: transparent;
}
.single-case-study-banner .section-title p{
  color: #fff;
}
.single-case-study-img{
  width: 100%;
  position: relative;
}
.single-case-study-banner-text{
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 30px;
  position: absolute;
  top: 50px;
  width: 240px;
}
.single-case-study-banner-text.scsbt-left{
  left: 50px;
}
.single-case-study-banner-text.scsbt-right{
  right: 50px;
}
.single-case-study-banner-text h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  margin-top: 25px;
  color: var(--primary);
}
.single-case-study-banner-text h4:first-child{
  margin-top: 0px;
}
.single-case-study-banner-text p{
  color: var(--text-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 8px;
}
.single-case-study-banner-text p:last-child{
  margin-bottom: 0px;
}
.single-case-study-content .section-title{
  margin-bottom: 0px;
}
.single-case-study-Problem .section-title {
  margin: 0;
}
.single-case-study-Problem .section-title h4{
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0px;
  color: var(--text-color);
}
.single-case-study-Problem{
  margin-top: 100px;
}
.single-case-study-Problem .life-bespokeqa-right li{
  padding: 15px 20px;
}
.single-case-study-Problem .life-bespokeqa-right li + li {
  margin-top: 20px;
}
.single-case-study-Problem .life-bespokeqa-right li p{
  line-height: 27px;
}
.single-case-study-Problem .life-bespokeqa-right li i{
  flex: none;
}
.single-case-study-Solution{
  background: #fafafc;
  margin-top: 0px;
  padding-bottom: 100px;
}
.single-case-study-Result .section-title{
  text-align: center;
}
.single-case-study-Result .featured-item{
  margin-bottom: 0;
  height: 100%;
}
.single-case-study-Result{
  padding-top: 100px;
}


.what-you-get-section{
  width: 100%;
  background: var(--font-gradient);
  margin-top: 100px;
  padding: 80px 0;
}
.what-you-get-section .section-title h3{
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: #fff;
  background: transparent;
}
.what-you-get-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.what-you-get-content .ourstats-counter h6 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.what-you-get-section .ourstats-counter{
  width: 240px;
  padding: 20px 30px;
}
.what-you-get-content .ourstats-counter h3{
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
}

.schedule-call-form {
    max-width: 590px;
    margin: 0 auto;
}
.schedule-call-form form{
  gap: 10px;
  width: 100%;
  border: 1px solid #EDEFF0;
  height: 60px;
  display: flex;
  padding: 5px 5px 5px 25px;
  position: relative;
  background: #F7F8FA;
  transition: border 0.3s ease;
  border-radius: 40px;
  align-items: center;
}
.schedule-call-form form input{
  border-radius: 0px;
  padding: 10px 0;
  background: transparent;
  border: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  flex: 1;
}
.schedule-call-form form .btn{
  height: 50px;
  padding: 10px 30px;
}

.speak-experts-section{
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  margin-top: 100px;
  margin-bottom: -100px;
}
.section-mask-guides {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
    pointer-events: none;
}
.section-mask-guides .guides {
    height: 100%;
}
.section-mask-guides .guide-container {
    display: grid;
    grid: 1fr / repeat(4, 1fr);
    position: relative;
    max-width: calc(1320px + 90px* 2);
    margin: 0 auto;
    padding: 0 90px;
    height: 100%;
    margin: 0 auto;
}
.section-mask-guides .guide-container > .guide {
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#eaeff4), color-stop(50%, #eaeff4), color-stop(0, transparent), to(transparent));
    background: linear-gradient(180deg, #eaeff4, #eaeff4 50%, transparent 0, transparent);
    background-size: 1px 8px;
}
.section-mask-guides .guide-container > .guide:last-child {
    background: -webkit-gradient(linear, left top, left bottom, from(#eaeff4), color-stop(50%, #eaeff4), color-stop(0, transparent), to(transparent));
    background: linear-gradient(180deg, #eaeff4, #eaeff4 50%, transparent 0, transparent);
    background-size: 1px 8px;
    position: absolute;
    right: 90px;
    top: 0px;
    height: 100%;
}
.speak-experts-section .contact-box{
  background: transparent;
  box-shadow: none;
  padding: 0px;
  border-radius: 0px;
  position: relative;
  z-index: 4;
  padding-right: 80px;
}
.speak-experts-section .contactus-form{
  position: relative;
  z-index: 5;
}
.speak-experts-section .contact-form-box{
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 10px 10px 99px rgba(17, 85, 111, .11);
  box-shadow: 10px 10px 99px rgba(17, 85, 111, .11);
  padding: 45px 45px;
  position: relative;
  z-index: 4;
}
.speak-experts-section .mask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% + 20px);
  left: -10px;
  position: absolute;
  top: -10px;
  width: calc(100% + 20px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-filter: blur(115px);
  filter: blur(115px);
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}
.speak-experts-section .mask .top {
  background: -webkit-gradient(linear, left top, right top, from(#7400b8), color-stop(50%, #7400b8), color-stop(50%, #16afb3), to(#16afb3));
  background: linear-gradient(90deg, #7400b8, #7400b8 50%, #16afb3 0, #16afb3);
  height: 50%;
  width: 100%;
}
.speak-experts-section .mask .bottom {
  background: -webkit-gradient(linear, left top, right top, from(#b5179e), color-stop(50%, #b5179e), color-stop(50%, #b87a00), to(#b87a00));
  background: linear-gradient(90deg, #b5179e, #b5179e 50%, #b87a00 0, #b87a00);
  height: 50%;
  width: 100%;
}


.values-approach-section .section-title {
    position: sticky;
    top: 130px;
}

.values-approach-section .featured-item .featured-icon {
    line-height: 62px;
}


.case-studies-box-cont ol {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
}
.case-studies-box-cont ol li{
    color: var(--text-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
}
.case-studies-box-cont ol li + li{
    margin: 10px 0 0 0;
}
.case-studies-box-cont li:after {
    position: absolute;
    content: "";
    background: var(--primary);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 0;
    top: 6px;
}
.case-studies-box-cont li:before {
    position: absolute;
    content: "\F26E";
    width: 15px;
    height: 15px;
    left: 1px;
    top: 1px;
    font-family: bootstrap-icons !important; 
    font-style: normal;
    color: #fff;
    font-size: 14px;
    z-index: 9;
}


.values-approach-section .services-whychoose-cont{
    padding-left: 2.5rem;
}






