:root {
  --poppins-font: 'Poppins', sans-serif;
  --poppins-font-two: "Barlow Condensed", sans-serif;
  --color-gray: #726d7b;
  --color-gray-rgb: 114, 109, 123;
  --color-white: #ffffff;
  --color-offwhite: #9EA1B0;
  --color-white-rgb: 255, 255, 255;
  --color-black: #04000b;
  --color-black-rgb: 4, 0, 11;
  --color-base: #110222;
  --color-perple: #a060fd;
  --color-purple-light: #271746;
  --color-base-rgb: 98, 34, 204;
  --bdr-radius: 8px;
}

.row {
  --bs-gutter-x: 30px;
}

@font-face {
  font-family: Faktum Test Bold;
  src: url(../fonts/Faktum\ Test\ Bold\ 700.otf);
}

@font-face {
  font-family: Faktum Test Regular;
  src: url(../fonts/Faktum\ Test\ Regular\ 400.otf);
}


body {
  font-family: var(--poppins-font);
  color: var(--color-gray);
  background: var(--color-base);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

.error {
  color: red !important;
}

img {
  max-width: 100%
}

a {
  color: var(--color-white);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-white);
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  /* overflow: hidden; */
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.preloader {
  position: fixed;
  background-color: var(--color-base);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll to top
--------------------------------------------------------------*/
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--color-perple);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: #df870a;
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  /* transition: all 500ms ease; */
  transition: padding 300ms ease;
  padding: 20px 0px;
}

.main-header.sticky {
  position: fixed;
  background: var(--color-base);
  border-bottom: 1px solid #ffffff24;
  top: 0px;
  padding: 10px 0px;
}

.main-menu {
  position: relative;
  z-index: 91;
}

.main-menu-wrapper {
  position: relative;
  display: block;
}

.main-menu-wrapper__logo {
  position: relative;
  /* padding: 20px 0px; */
  width: 175px;
}

.stricky-header.main-menu {
  padding: 0 55px;
  background-color: var(--color-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  /* padding-top: 20px; */
  /* padding-bottom: 20px; */
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  position: relative;
  transition: all 500ms ease;

  text-transform: capitalize;
  font-weight: 500;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 1px;
  border-radius: 0px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 7px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--color-white);
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.current>a::before {
  background-color: var(--color-white);
}

.main-menu .main-menu__list>li:hover>a::before {
  background-color: var(--color-white);
}

.main-menu .main-menu__list li .submenu,
.stricky-header .main-menu__list li .submenu {
  position: absolute;
  top: 150%;
  left: 0;
  min-width: 320px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: var(--bdr-radius);
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  z-index: 99;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
  border-top: 1px solid RGBA(var(--color-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 14px;
  line-height: 30px;
  color: var(--color-black);

  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  padding: 10px 20px;
  transition: 500ms;
}

.main-menu .main-menu__list li ul>li:first-child>a,
.stricky-header .main-menu__list li ul>li:first-child>a {
  border-top-left-radius: var(--bdr-radius);
  border-top-right-radius: var(--bdr-radius);
}

.main-menu .main-menu__list li ul>li:last-child>a,
.stricky-header .main-menu__list li ul>li:last-child>a {
  border-bottom-left-radius: var(--bdr-radius);
  border-bottom-right-radius: var(--bdr-radius);
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
  background-color: #d4d4d4;
  color: var(--color-base);
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
  display: none;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

#solutions_route {
  cursor: pointer;
}

.main-menu-wrapper h6.offer_text_here {
  display: none;
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--color-white);
  cursor: pointer;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: #a09baa;
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition: transform 500ms ease-in, opacity 500ms linear,
    visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}


.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  opacity: 0.9;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--color-base);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--thm-text-dark);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--poppins-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--color-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--thm-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: #a09baa;
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #d66706;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Body backgrounf lines
--------------------------------------------------------------*/
.page-wrapper .main-slider-border {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  width: 5%;
  border-right: 1px solid #65518130;
  z-index: -1;
}

.page-wrapper .main-slider-border-two {
  left: 10%;
}

.page-wrapper .main-slider-border-three {
  left: 20%;
}

.page-wrapper .main-slider-border-four {
  left: 30%;
}

.page-wrapper .main-slider-border-five {
  left: 40%;
}

.page-wrapper .main-slider-border-six {
  left: 50%;
}

.page-wrapper .main-slider-border-seven {
  left: 60%;
}

.page-wrapper .main-slider-border-eight {
  left: 70%;
}

.page-wrapper .main-slider-border-nine {
  left: 80%;
}

.page-wrapper .main-slider-border-ten {
  left: 90%;
}

.page-wrapper .main-slider-border-eleven {
  left: 100%;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider .container {
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: left;
  z-index: 30;
}

.main-slider p {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-offwhite);
  font-weight: 400;
  margin: 0;
}

.pbig {
  font-size: 18px !important;
  line-height: 28px !important;
  color: var(--color-offwhite) !important;
  font-weight: 400 !important;
  width: 76%;
  margin: 25px auto !important;
  text-align: center;
}

.pbig2 {
  font-size: 24px !important;
  line-height: 28px !important;
  color: var(--color-offwhite) !important;
  font-weight: 400 !important;
  width: 76%;
  margin: 25px auto !important;
  text-align: center;
}

.main-slider h1 {
  margin: 0;
  margin-bottom: 30px;
  color: #fff;
  opacity: 1;
  visibility: visible;
  font-size: 70px;
  line-height: 80px;
  text-transform: capitalize;
  font-weight: 500;
}

.spanstyle1 {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spanstyle2 {
  background: linear-gradient(to left, #00f6a1, #00e4fd, #6988ff, #a060fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-slider__content ul {
  width: 100%;
  margin: 0 auto;
}

.main-slider__content ul p {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.main-slider__content ul li::marker {
  color: white;
  font-size: 34px;
}

.sliderrightcontent {
  position: relative;
}

.starshape {
  position: absolute;
  /* top: 120px; */
  top: 0px;
  left: -100px;
  opacity: 1;
  z-index: 2;
  width: 300px;
  animation: shapeMover 10s linear 0ms infinite;
}

.scrolldownicn {
  width: 122px;
  position: absolute;
  right: 140px;
  top: 180px;
  animation: banner3Shake 10s linear 0ms infinite;
}

.sliderlisttext {
  display: inline-block;
  margin-top: 100px;
}

/*--------------------------------------------------------------
# Start Who We Are
--------------------------------------------------------------*/
.ptext {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-offwhite);
  font-weight: 400;
  margin-bottom: 15px;
}

.ptext4 {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.counter-one .titletext {
  margin: 0px;
}

.whoweare {
  background: #0e021d;
  border-top: 1px solid #34334e;
  border-bottom: 1px solid #34334e;
}

.border-left {
  border-left: 1px solid #34334e;
}

.oneteam-ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  width: 300px;
}

.oneteam-ul li {
  color: var(--color-white);
  text-transform: capitalize;
  border-bottom: 1px solid;
  border-color: #34334e !important;
  padding: 10px 0px;
}

.oneteam-ul li:last-child {
  border: none;
}

.oneteam-ul li span {
  font-weight: 600;
  margin-right: 15px;
}

.border-right {
  border-right: 1px solid #34334e;
}

.border-end,
.border-start,
.border-top,
.border-bottom {
  border-color: #34334e !important;
}

.border {
  border: 1px solid #34334e !important;
}

.counter-one__list .odometer span {
  display: inline-block;
  font-size: 40px;
  font-weight: 500;
  color: #8b5ce0;
}

.counter-one__list i {
  color: #6b77db;
  font-size: 20px;
}

.counter-one__list .ptext {
  line-height: 20px;
}

.counter-one__list li {
  margin-bottom: 30px;
}

.whoweare_content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.shape1_box {
  width: 8%;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.shape2_box {
  width: 8%;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.content_box {
  width: 66%;
  position: relative;
  padding-bottom: 100px;
}

.couter_box {
  width: 18%;
  position: relative;
  padding-bottom: 200px;
}

.iconbox {
  width: 14%;
  height: 100px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  /* cursor: pointer; */
}

.iconbox img {
  width: 30px;
  transition: .3s;
}

.iconbox:hover img {
  transform: scale(1.2);
  transition: .3s;
  filter: contrast(0.5);
}

.customwidth {
  width: 100%;
}

.iconbox_big {
  width: 30%;
  height: 100px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iconbox_big .iconbox img {
  width: 30px;
}

.texture {
  display: flex;
  flex: 1;
}

.texture-style {
  background: repeating-linear-gradient(-45deg, #0e021d, #0E021D 5px, #31314d 5px, #31314d 6px);
}

.content_box_shapes {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.iconbox_big ul {
  display: flex;
  flex-wrap: wrap;
}

.iconbox_big ul li {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* cursor: pointer; */
}

.iconbox_big ul li:hover {
  animation: swing 1s linear 0ms infinite;
}

.dymond_img {
  width: 370px;
  position: absolute;
  bottom: 57px;
  right: -75px;
  z-index: 1;
  animation: treeMove 15s linear 0ms infinite;
}

.whoweare_content .content_box .ptext {
  width: 72%;
}

.couter_box .iconbox {
  width: 50%;
}

.content_box_shapes_mobile {
  display: none;
}

/*--------------------------------------------------------------
# Start The work We do
--------------------------------------------------------------*/
.workwedo {
  background: transparent;
  padding: 80px 0px 0px;
}

.imgtextsec {
  margin-bottom: 50px;
  position: relative;
}

.custombadge {
  background: #14161E;
  width: 80px;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  margin-left: 25px;
}

.imgtextsec ul {
  display: inline-flex;
}

.imgtextsec ul li {
  padding-right: 20px;
}

.gradient-text-style2 {
  display: inline-block;
  background-image: linear-gradient(to left, #56DDB6, #E3CF1D);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: bold;
}

.heading_div {
  margin-bottom: 80px;
}

.wedobox1 {
  padding-right: 40px;
}

.wedobox2 {
  padding-left: 40px;
}

.roundshape {
  position: absolute;
  width: 300px;
  top: -70px;
  left: -200px;
  animation: ribbonRotate 10s linear 0ms infinite;
}

.imgeffect {
  overflow: hidden;
  position: relative;
}

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

.imgeffect:hover:before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.workwedo .heading_div {
  width: 70%;
  margin: 0 auto 50px;
  text-align: center;
}

.socialic {
  display: flex;
}

.socialic li {
  padding-right: 25px;
}

/*--------------------------------------------------------------
# Start Technologies we work on
--------------------------------------------------------------*/
.techwork {
  position: relative;
  display: block;
  background-color: transparent;
  padding-top: 180px;
}

.techwork_box {
  display: flex;
  flex-wrap: wrap;
  background: #0e021d;
}

.techwork__tab-box {
  position: relative;
  display: block;
  margin-top: -114px;
  z-index: 2;
}

.techwork_tab-box .tab-buttons {
  position: relative;
  display: flex;
  overflow: hidden;
}

.techwork_tab-box .tab-buttons .tab-btn {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #34334e;
  border-right: 1px solid #34334e;
}

.techwork_tab-box .tab-buttons .tab-btn:last-child {
  border-right: none;
}

.techwork_tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 16px;
  color: var(--color-white);
  background-color: var(--color-base);
  padding: 15px 0px 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 390px;
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  z-index: 1;
}

.techwork_tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  width: 100%;
  /* height: 1px; */
  background: linear-gradient(to left, #1fffc4, #22a0d1, #6b77db, #8b5ce0);
  transition: all 0.3s ease;
  z-index: -1;
}

.techwork_tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.techwork_tab-box .tabs-content {
  position: relative;
  display: block;
}

.techwork_tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.techwork_tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.tabs-content__inner {
  position: relative;
  display: block;
  padding: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (min-width: 992px) {
  .tabs-content__experience-content {
    max-width: 120px;
  }
}

.techwork_tab-box {
  width: 65%;
  position: relative;
}

.techheadingbox {
  width: 35%;
  position: relative;
}

.techheadingbox .texture-style {
  height: 65px;
}

.technologyicon {
  display: flex;
  flex-wrap: wrap;
}

.icn_box {
  width: 20%;
  height: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #34334e;
  border-right: 1px solid #34334e;
  /* cursor: pointer; */
}

.icn_box p {
  margin: 15px 0px 0px;
  font-size: 14px;
  line-height: 10px;
}

.icn_box img {
  width: 40px;
}

/*.technologyicon .icn_box:nth-child(5){
  border-right:none;
} */
.tabs-content__inner .last-row .icn_box {
  border-bottom: none;
}

.dymondimg2 {
  position: absolute;
  top: -155px;
  width: 300px;
  left: 60px;
  animation: ribbonRotate 15s linear 0ms infinite;
}

/* technologies on mobile */
.technologies_mobile {
  border-top: 1px solid;
  position: relative;
  display: none;
}

.technologies_mobile li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

.technologies_mobile li span {
  height: 60px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technologies_mobile li img {
  width: 40px;
}

.technologies_mobile::after {
  content: "";
  background: linear-gradient(to left, #1fffc4, #22a0d1, #6b77db, #8b5ce0);
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

/*--------------------------------------------------------------
# Start a project
--------------------------------------------------------------*/

.startaproejct {
  padding: 80px 0px;
  text-align: center;
}

.startaproejcttext {
  width: 65%;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Industies we serve section
--------------------------------------------------------------*/
.Industries {
  background: #110222;
  /* padding:5px; */
}

.Industries .main-box {
  border: 1px solid #2b2b44;
  display: flex;
  flex-wrap: wrap;
}

/* .Industries .container {
    max-width: 100% !important;
    padding: 0px !important;
  } */
.Industries .main-box .boxone {
  width: 28%;
}

.Industries .main-box .boxtwo {
  width: 40%;
}

.Industries .main-box .boxthree {
  width: 32%;
  position: relative;
}

.Industries .boxthree .content_box_shapes .iconbox {
  width: 25%;
}

.boxone {
  padding: 40px;
  position: relative;
}

.titletext {
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 52px;
  font-size: 40px;
}

.titletext span {
  display: inline-block;
  font-size: 36px;
}

.subtitletext {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
}

.boxone p {
  color: #9e9e9e;
  font-weight: 400;
  font-size: 14px;
}

/* .btnstyle1 {
  font-size: 14px;
  color: #fff;
  border: 10px solid;
  width:auto;
  height: 44px;
  padding: 20px;
  display: inline-flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  border-image-source: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  border-image-slice: 1;
  border-width: 1.5px;
  } */
.gradientbutton2 {
  background: linear-gradient(105.25deg, #9945FF 1.43%, #00E0FF 84.54%, #00FF77 106.63%) !important;
  padding: 1px;
  border-radius: 30px;
  display: inline-block;
}

.gradientbutton2 .btnstyle2 {
  font-size: 14px;
  color: #fff;
  width: auto;
  height: 44px;
  padding: 20px;
  display: flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  border-radius: 30px;
}

.btnstyle2 i {
  color: #fff;
  padding-left: 8px;
}

.btnstyle2:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: #fff;
}

.btnstyle2:hover i {
  color: #fff;
}

.gradientbutton {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  padding: 1px;
  border-radius: 30px;
  display: inline-block;
}

.gradientbutton .btnstyle1 {
  font-size: 14px;
  color: #fff;
  width: auto;
  height: 44px;
  padding: 20px;
  display: flex;
  cursor: pointer;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  border-radius: 30px;
  transition: .5s cubic-bezier(.19, 1, .22, 1) .5s, color .5s ease 0s, background-color .5s ease;
  font-family: var(--poppins-font);
}

.btnstyle1 i {
  color: #fff;
  padding-left: 8px;
}

.btnstyle1:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: #fff;
}

.btnstyle1:hover i {
  color: #fff;
}

.btnstyle-small {
  font-size: 12px;
  color: #fff;
  width: auto;
  height: 31px;
  padding: 0px 20px;
  display: flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  border-radius: 30px;
}

.btnstyle-small i {
  color: #fff;
  padding-left: 8px;
}

.btnstyle-small:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: #fff;
}

.btnstyle-small:hover i {
  color: #fff;
}

.btnstyle5 {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706) !important;
}

/* .secretbtn {
    background: #dff2f6;
  } */
.secretbtn i,
.wayztbtn i,
.wincybtn i {
  color: #000;
}

.dark {
  color: #fff !important;
}

/* .wincybtn{
    background: #fff;
  }
   */

.gradient-text {
  background-color: red;
  display: inline-block;
  background-image: linear-gradient(to left, #1fffc4, #22a0d1, #6b77db, #8b5ce0);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.boxtwo .accordion-item {
  background: transparent;
  border: 1px solid #2b2b44;
  font-size: 14px;
  font-weight: 400;
  color: #9e9e9e;
  ;
  border-radius: 0px;
}

.boxtwo .accordion-button {
  color: #e0e0e0;
  background-color: transparent !important;
  padding: 12px 20px 12px;
}

.boxtwo .accordion-button:focus {
  box-shadow: none;
}

.boxthree .img-fluid {
  object-fit: cover;
  height: 590px;
  min-width: 100%;
  padding-bottom: 100px;
}

.accordionlist {
  margin-top: 15px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.accordionlist li {
  color: #fff;
  padding-right: 15px;
  font-size: 12px;
}

.accordionlist li i {
  color: #1fffc4;
}

.accordionlist li i {
  color: #1FFFC7;
  font-size: 16px;
  padding-right: 5px;
}

.boxtwo .accordion-body {
  padding: 0.7rem 1.25rem;
  font-size: 14px;
}

.onlymobile {
  display: none;
  height: 100px;
  width: 100%;
  object-fit: cover;
}

.boxtwo .accordion:first-child .accordion-item {
  border-top: none !important;
}

.boxtwo .accordion .accordion-item:last-child {
  border-bottom: none !important;
}

.Industries .gradientbutton {
  position: absolute;
  bottom: 80px;
}

.roundshape2 {
  position: absolute;
  width: 300px;
  bottom: -70px;
  right: 45px;
  animation: squareMover1 30s linear 0ms infinite;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0px;
  text-align: center;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: transparent;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 0px;
  transition: all 500ms ease;
}

.testimonial-one .custom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  z-index: 10;
}

.testimonial-one .custom-nav .owl-prev {
  height: 65px;
  width: 65px;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-black);
  font-size: 20px;
  text-align: center;
  border: 0;
  transform: rotate(180deg);
  margin: 0;
  padding: 0;
  line-height: 20px;
  margin-right: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one .custom-nav .owl-next {
  height: 65px;
  width: 65px;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-black);
  font-size: 20px;
  text-align: center;
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 20px;
  margin-left: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one .custom-nav .owl-prev:hover,
.testimonial-one .custom-nav .owl-next:hover {
  color: var(--color-white);
  background-color: var(--color-base);
}

.customtestimonial {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #0e021d;
  min-height: 430px;
}

.videosec {
  width: 62%;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #34334e;
}

/* .customtestimonial .shape1_box{
  width: 10%;
} */
.testitext {
  width: 38%;
  position: relative;
  text-align: left;
  padding: 50px 0px 140px;
}

.testimonial-one .owl-carousel .owl-item img {
  display: block;
  width: 35px;
}

.testitext .content_box_shapes {
  left: 0px;
  bottom: 0px !important;
}

.testitext .content_box_shapes .iconbox {
  width: 25%;
}

.testitext .ptext {
  color: #fff;
}

#next-slide-testimonial-one {
  cursor: pointer;
}

#prev-slide-testimonial-one {
  cursor: pointer;
}

.dymondshape3 {
  position: absolute;
  width: 250px;
  right: -40px;
  bottom: -80px;
  z-index: 1;
  animation: float-bob 2s linear 0ms infinite;
}


/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 80px 0px;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.blog-one__img {
  position: relative;
  display: block;
  background-color: var(--color-black);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}

.blog-one__img>img {
  width: 100%;
  /* mix-blend-mode: luminosity; */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.blog-one__img>a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--color-black-rgb), 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--color-base);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.blog-one__img>a>span {
  position: relative;
}

.blog-one__img>a>span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.blog-one__img>a>span::after {
  content: "";
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-one__img>a:hover>span::before,
.blog-one__img>a:hover>span::after {
  background-color: var(--color-white);
}

.blog-one__single:hover .blog-one__img>a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.blog-one__date {
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--color-base);
  padding: 12px 19px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.blog-one__date p {
  font-size: 14px;
  color: var(--color-white);
  margin: 0;
  line-height: 16px;
  text-align: center;

  text-transform: uppercase;
  font-weight: 500;
}

.blog-one__content {
  position: relative;
  display: block;
  background-color: transparent;
  box-shadow: 5px 8.66px 60px 0px rgb(4, 0, 11, 0.07);
  padding: 20px 0px;
}


.blog-one__single:hover .blog-one__title>a {
  color: var(--color-base);
}


/*--------------------------------------------------------------
# Contact Us Form section
--------------------------------------------------------------*/

.contactussec {
  display: flex;
  flex-wrap: wrap;
  background: #0e021d;
}

.newcontact .contactussec {
  background: transparent !important;
}

.newcontact .border {
  border-color: #fff !important;
  border-radius: 20px;
}

.contactussec .contacttext {
  width: 40%;
  border-right: 1px solid #34334e;
  padding: 3rem;
  position: relative;
}

.contactussec .contactform {
  width: 60%;
  padding: 3rem 3rem 7rem;
  position: relative;
}

.newcontact .contactform {
  width: 80%;
  margin: 0 auto;
}

.contactussec .contactform label {
  color: #00FFBD;
  margin-bottom: 5px;
  font-size: 16px;
}

.contactform input {
  border: 1px solid #34334e;
  color: var(--color-white) !important;
  background: transparent;
  /* height: 50px; */
  padding: 15px 20px 15px;
  margin-bottom: 20px;
}

.contactform .form-group label {
  color: #00FFBD;
  display: none;
}

.contactform input:focus {
  background: transparent !important;
}

.contactform select {
  border: 1px solid #34334e;
  background: transparent;
  /* height: 50px; */
  padding: 15px 20px 15px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
}

.contactform input::placeholder {
  font-size: 14px;
  color: #fff;
}

.contactform textarea {
  border: 1px solid #34334e;
  background: transparent;
  height: 100px;
  padding: 15px 20px 15px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
}

.contactform input[type=submit] {
  font-size: 14px;
  color: #fff;
  border: 10px solid;
  width: auto;
  height: 50px;
  padding: 0px 20px;
  display: inline-flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  border-image-source: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  border-image-slice: 1;
  border-width: 1.5px;
}

.contactform input[type=submit]:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: #fff !important;
}

.contactform input[type=submit]:focus {
  color: #fff !important;
}

.contactform .iconbox {
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 80px;
  left: 0px;
}

.dymond4 {
  position: absolute;
  width: 300px;
  bottom: 35px;
  z-index: 2;
  right: 70px;
  animation: squareMover1 35s linear 0ms infinite;
}

.contactform input::-webkit-outer-spin-button,
.contactform input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contactform input[type=number] {
  -moz-appearance: textfield;
}

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

.countrycode select {
  width: 32%;
  margin-right: 20px;
  color: #fff;
  padding: 15px 10px 15px;
}

.countrycode input {
  width: 65%;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.pointer {
  cursor: pointer !important;
}

/* New footer style  */
.site-footer .address-row {
  width: 95% !important;
  border: 1px solid #34334e;
  padding: 30px;
  margin-top: 10px;
  margin: 35px 0;
}

.site-footer .usa-add-div p {
  font-size: 13px;
  /* text-transform: uppercase; */
  margin-bottom: 0;
}

/* New footer style over  */

.site-footer {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__middle {
  position: relative;
  display: block;
  padding: 80px 0px 40px;
  z-index: 1;
}

.site-footer__middle-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 23px;
}


.footer-widget__about-text {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
  color: #fff;
}

.footer-widget__about-contact {
  position: relative;
  display: block;
  /* padding-top: 18px; */
}

.footer-widget__about-contact li {
  position: relative;
  display: flex;
  align-items: center;
}


.footer-widget__about-contact li .text a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__about-contact li .text a:hover {
  color: #8b5ce0;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: #8b5ce0;
}

.footer-industries li {
  width: 50%;
  float: left;
}

.footer-widget__links-list li a:before {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--color-white);
  height: 1px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__links-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  /* margin-top: 20px; */
}

.site-footer__bottom-text {
  font-size: 14px;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__bottom-menu li+li {
  margin-left: 24px;
}

.site-footer__bottom-menu li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: #8b5ce0;
}

.footericons {
  display: flex;
  padding: 0px;
  list-style: none;
  flex-wrap: wrap;
}

.footersocial {
  display: flex;
  flex-wrap: wrap;
}

.footersocial a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footersocial a {
  margin: 0px 20px 20px 0px;
}

.footersocial a:hover {
  color: #8b5ce0;
}

.footericons li {
  padding-right: 5px;
}

/* .footersocial a:nth-child(1){
  color:#1877F2;
}
.footersocial a:nth-child(2){
  color:#1DA1F2;
}
.footersocial a:nth-child(3){
  color:#dd2a7b;
}
.footersocial a:nth-child(4){
  color:#0A66C2;
} */

.footer-widget__about-text a:hover {
  color: #8b5ce0;
}

.flogo {
  width: 300px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.innerpage h1 {
  margin-bottom: 52px;
  line-height: 52px;
}

.innerpage .spanstyle2 {
  font-size: 35px;
}

.portfoliosec .techwork_tab-box {
  width: 100%;
}

.portfoliosec .tab-buttons {
  width: 500px;
  margin: 0 auto 70px;
  border: 1px solid var(--color-white);
  padding: 5px 10px;
  border-radius: 30px;
}

.portfoliosec .techwork_tab-box .tab-buttons .tab-btn {
  border: none;
}

.portfoliosec .techwork_tab-box .tab-buttons .tab-btn span {
  padding: 5px;
}

.portfoliosec .techwork_tab-box .tab-buttons .tab-btn span:before {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  border-radius: 30px;
}

.gallery-title {
  font-size: 36px;
  color: #42B32F;
  text-align: center;
  font-weight: 500;
  margin-bottom: 70px;
}

.gallery-title:after {
  content: "";
  position: absolute;
  width: 7.5%;
  left: 46.5%;
  height: 45px;
  border-bottom: 1px solid #5e5e5e;
}

.filter-button {
  font-size: 14px;
  border-radius: 20px;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 30px;
  border: none;
}

.filter-button:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: var(--color-white);
}

.btn-default:active .filter-button:active {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: var(--color-white);
  ;
}

.port-image {
  width: 100%;
}

.gallery_product {
  margin-bottom: 30px;
}

.portfoliocard-listing {
  padding: 0px;
  list-style: none;
  display: inline-block !important;
}

.portfoliocard-listing li {
  min-width: 50%;
  display: inline-block;
  float: left;
  color: var(--color-white);
  text-transform: capitalize;
  font-size: 16px;
  margin-bottom: 10px;
}

.portfoliocard-listing li i {
  color: #00FFBD;
  margin-right: 10px;
}

.imghover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

/* .imghover:hover img {
  filter: blur(4px);
  transition: .4s;
  background:#000;
} */
.hoverdiv {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: .3s;
}

.hoverdiv:hover {
  opacity: 1;
  transition: .4s;
  background: #ffffffb0;
}

.hoverdiv:hover a {
  color: fff
}

.socialicn {
  display: flex;
}

.socialicn li {
  padding-right: 20px
}

.herizontalportfoliocard {
  background: linear-gradient(45deg, #fed501, #fed700);
  padding: 52px 25px 30px;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0px 24px 44px 0px #FFD3004D;
  margin-bottom: 50px;
}

.cardimg {
  width: 30%;
  position: relative;
}

.cardtext {
  width: 40%;
  position: relative;
}

.fistimg img {
  position: absolute;
  bottom: -30px;
  left: -60px;
  min-width: 400px;
}

.cardtext h2 {
  color: #444A65;
  text-transform: capitalize;
  font-weight: 600;
}

.cardtext p {
  color: #444A65;
}

.cardtext .ptext {
  font-weight: 500;
  line-height: 22px;
}

.portfoliocard-listing li {
  color: var(--color-offwhite);
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  line-height: initial;
}

.cardtext .portfoliocard-listing li i {
  color: #fff;
}

.cardtext .socialicn li a {
  color: #444A65;
}

.herizontalcardtwo {
  background: #dff2f6;
  box-shadow: 0px 24px 44px 0px #dff3f726;
}

.herizontalcardtwo .cardtext .portfoliocard-listing li i {
  color: #00FFBD;
}

/* .herizontalcardtwo .secondimg img {
  mix-blend-mode: luminosity;
} */
.herizontalcardtwo .fistimg img {
  position: absolute;
  bottom: -30px;
  /* left: -50px;
  min-width: 427px; */
  left: -90px;
  min-width: 496px
}

.herizontalcardthree {
  background: #fff;
}

.herizontalcardthree .portfoliocard-listing li i {
  color: #00FFBD;
}

.herizontalcardthree .fistimg img {
  left: -61px;
  min-width: 492px;
}

.herizontalcardthree {
  background: #fff;
  filter: drop-shadow(0px 24px 44px rgba(64, 64, 64, 0.3));
  box-shadow: none;
  padding-bottom: 0px;
}

.herizontalcardfour {
  background: #C0D5D3;
  filter: drop-shadow(0px 24px 44px rgba(223, 243, 247, 0.15));
  box-shadow: none;
  padding-bottom: 0px;
}

.herizontalcardfour .fistimg img {
  position: absolute;
  bottom: 0px;
  left: -60px;
  min-width: 650px;
}

.herizontalcardfour .secondimg img {
  mix-blend-mode: luminosity;
}

/****************** portfolio details **********************/

.urest-sec {
  position: relative;
  padding-top: 130px;
  text-align: center;
}

.challengesnewsec .portfolio_heading2 {
  display: inline-block;
}

.portfolio_heading {
  font-family: 'Kristi', cursive;
  font-size: 108px;
}

.portfoliosub_heading {
  font-family: 'Kristi', cursive;
  font-size: 56px;
  display: inline-block;
}

.urest-mobile {
  width: 350px;
  margin-top: 60px;
}

.urest-lady {
  position: absolute;
  left: -120px;
  top: 170px;
  z-index: -1;
  width: 550px;
}

.urest-man {
  position: absolute;
  right: -120px;
  top: 120px;
  z-index: -1;
  width: 590px;
}

.downloadbox {
  display: flex;
  justify-content: space-around;
  width: 700px;
  margin: 100px auto 80px;
}

.downloadbox .box {
  border: 2px solid #fff;
  width: 260px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.downloadbox .box:hover {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  cursor: pointer;
}

.portfolio_heading2 {
  font-family: 'Kristi', cursive;
  font-size: 60px;
  /* display: inline-block; */
  display: block;
}

.ptext2 {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 15px;
  font-family: 'Questrial', sans-serif;
}

.abouttheapp {
  margin-top: 30px;
}

/* feture section */

.section-newfeatures {
  padding: unset;
  z-index: 1;
  margin-bottom: 80px;
}

.section-newfeatures .parent .card-main {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}

.section-newfeatures .parent .card-main .card-details:nth-child(odd) {
  background-color: #fff;
}

.section-newfeatures .parent .card-main .card-details:nth-child(odd) h4 {
  color: var(--color-base);
  margin-bottom: 10px;
}

.section-newfeatures .parent .card-main .card-details:nth-child(2n) {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
}

.section-newfeatures .parent .card-main .card-details {
  border-radius: 35px;
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  min-height: 230px;
}

.card-details span {
  min-width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 40px rgb(0 0 0 / 25%);
  margin-right: 20px;
}

.card-details h4 {
  margin-bottom: 10px;
}

.card-details .ptext2 {
  font-size: 24px;
  line-height: 30px;
  padding-right: 30px;
  margin-bottom: 0px;
}

.section-newfeatures .parent .card-main .card-details:nth-child(odd) span {
  background-color: #444A65;
}

.section-newfeatures .parent .card-main .card-details:nth-child(odd) p {
  color: #444A65;
}

.card-details span img {
  width: 60px;
}

.section-newfeatures .parent .card-main .card-details:first-child {
  position: sticky;
  top: 4rem;
  background-color: transparent;
  text-align: center;
  justify-content: center;
}

.section-newfeatures .parent .card-main .card-details:nth-child(2) {
  position: sticky;
  top: 17rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(3) {
  position: sticky;
  top: 18rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(4) {
  position: sticky;
  top: 19rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(5) {
  position: sticky;
  top: 20rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(6) {
  position: sticky;
  top: 21rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(7) {
  position: sticky;
  top: 22rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(8) {
  position: sticky;
  top: 23rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(9) {
  position: sticky;
  top: 24rem;
}

.section-newfeatures .parent .card-main .card-details:nth-child(10) {
  position: sticky;
  top: 25rem;
}

.mobilescreen {
  padding: 40px;
}

.mobilescreensec {
  padding: 150px 0px 50px;
}

.mobilescreensec .portfolio_heading2 {
  margin-bottom: 200px;
}

.mobilescreen.upper {
  position: relative;
  top: -170px;
}

/* swiper slider css */
.cstmslider.swiper {
  width: 100%;
  height: 100%;
}

.cstmslider .swiper-slide {
  text-align: left;
  font-size: 18px;
  background: transparent;
}

.cstmslider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cstmslider .swiper-button-next {
  display: none;
}

.cstmslider .swiper-button-prev {
  display: none;
}

.cstmslider .swiper-pagination {
  position: absolute;
  bottom: 0px;
  display: flex;
}

.cstmslider .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
}

.challengecard {
  background: #363C55;
  padding: 20px;
  border-radius: 30px;
  margin: 50px 0px 80px;
}

.challandbox {
  background: #444A65;
  padding: 0px 30px 0px;
  border-radius: 30px;
  display: flex;
}

.chalangeslidetxt {
  width: 60%;
  position: relative;
  padding: 50px 60px 50px 30px;
}

.chalangeimg {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: -180px; */
}

.chalangeimg img {
  z-index: 1;
  position: relative;
  width: 60%;
}

.challangeslide h6 {
  color: #FFCC00;
  font-weight: 400;
  margin-bottom: 10px;
}

.challangeslide h3 {
  font-weight: 300;
  margin-bottom: 10px;
}

.challangeslide h4 {
  color: #FB6FBB;
  font-weight: 400;
  margin: 20px 0px 10px;
}

.chalangeimg {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  width: 100%;
  display: inline-block;
  border-radius: 20px;
  margin: 30px 0px 20px;
  text-align: center;
  padding: 20px 0px;
}

/* bolopundit G portfolio style here  */
.urest-sec .punditji-banner {
  position: absolute;
  top: 195px;
  left: 0;
  z-index: -1;
}

/* Secret potion portfolio style here  */
.secret-lottie-div {
  width: 350px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secret-lottie-div lottie-player {
  position: absolute;
  width: 280px;
}

/* Seekmed portfolio style here  */

.seekmedslider .owl-item>div {
  cursor: pointer;
  margin: 6% 8%;
  transition: margin 0.4s ease;
}

.seekmedslider .owl-item.center>div {
  cursor: auto;
  margin: 0;
}

.seekmedslider .owl-item:not(.center)>div:hover {
  opacity: .75;
}

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

.seekmedslider .owl-carousel .owl-stage-outer {
  padding: 50px 0;
}

.challengesnewsec .chalange-yourcard {
  display: flex;
  align-items: center;
}

.challengesnewsec .chalange-yourcard img {
  width: 100%;
}



/****************** End portfolio details **********************/

/****************** Start Services Page **********************/

.circlebtn2 {
  width: 50px;
  height: 50px;
  border: 2px solid;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.circlebtn2 img {
  width: 16px !important;
  margin: 0 auto;
}

.servicetoollist li:hover .circlebtn2 {
  background: var(--color-base);
  border-color: #fff;
}

.circlebtn2:hover {
  /* background:var(--color-base);
  border-color: #fff;   */
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%) !important;
}

.servicetoollist li a:hover {
  color: #fff;
}

.servicecard1 {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.servicecontent {
  display: flex;
  width: 55%;
}

.uidesignimg {
  width: 45%;
}

.toolicon img {
  width: 35px;
  margin-right: 20px;
}

.uidesign {
  width: 45%;
}

.graphicdesign {
  width: 50%;
}

.servicecardheading {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.servicelisting {
  padding: 0px;
}

.servicelisting li {
  font-size: 16px;
  color: #fff;
  list-style: none;
}

.servicelisting li i {
  color: #00FFBD;
  margin-right: 10px;
}

.uibtn {
  margin: 15px 90px 0px;
  display: inline-block;
}

/* .uibtn a {
  border: 1px solid #fff;
  width: 170px;
  border-radius: 50px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.uibtn a:hover {
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
  color: #fff;
} */

.uibtn a {
  border: 1px solid #fff;
  width: 170px;
  border-radius: 50px;
  height: 47px;
  font-size: 16px;
  color: #fff;
  padding: 0px 20px;
  display: flex;
  cursor: pointer;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 30px;
  transition: background-position .3s cubic-bezier(.19, 1, .22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, rgb(0, 0, 0) 40%);
}

.uibtn a:hover {
  /* background:linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706); */
  background-position: -100% 100%;
}

/* .uibtn a:hover img {
  display: block;
} */

.ml-5 {
  margin-left: 120px;
}

.circlebtn {
  width: 14px;
  margin-left: 7px;
  /* display: none; */
}

.uiservice {
  width: 55%;
}

.servicecontent {
  display: flex;
  width: 100%;
  padding: 32px 0px 0px 90px;
}

.servicecard2 {
  background: #9945FF;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.servicetab li button {
  background: transparent !important;
  color: #ffffffa8 !important;
  padding: 5px 15px !important;
}

.servicetab li .active {
  color: #fff !important;
}

.servicetab {
  border-top: 1px solid #ffffff42;
  border-bottom: 1px solid #ffffff42;
  margin: 30px 0px;
}

.servicecontent2 {
  width: 55%;
  padding: 80px 0px 80px 90px;
}

.servicecard4 .servicecontent2 {
  padding: 32px 0px 32px 90px;
}

.servicetoollist {
  list-style: none;
  padding: 0px;
  display: flex;
  padding: 40px 0px;
}

.servicetoollist li {
  text-align: center;
  width: 140px;
}

.servicetoollist li img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.servicetoollist li p {
  padding: 20px 0px 10px;
  line-height: 22px;
}

.whitebutton {
  width: 50px !important;
}

.servicecard3 {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.servicecard3 .servicetoollist li img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.servicecard4 {
  background: linear-gradient(93.68deg, #FF5C00 -8.2%, #0065C1 -8.2%, #00E0FF 103.17%);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.servicecard4 .servicetoollist li img {
  width: 40px;
}

.servicesocial {
  display: flex;
  list-style: none;
  margin-top: 40px;
  padding: 0px;
}

.servicesocial li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.servicesocial li img {
  padding-right: 10px;
}

.cloudcard {
  background: linear-gradient(96.02deg, #FF5C00 -89.34%, #FFCC00 -34.86%, #00E0FF 103.96%);
  border-radius: 45px;
  padding: 30px 50px 0px;
}

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

.cardheader h3 {
  margin: 0px;
}

.cardheader a {
  border: 1px solid #fff;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 30px;
}

.cardheader a i {
  padding-left: 10px;
}

.cloudcard hr {
  color: #fff;
  height: 1px;
  margin-top: 20px;
}

.cloudcard .servicelisting li i {
  color: #fff;
  margin-right: 10px;
}

.cloudservices {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 20px 0px;
}

.cloudservices li {
  width: 50%;
  text-align: center;
  margin-bottom: 40px;
}

.cloudservices li p {
  margin: 20px 0px 0px;
  font-size: 18px !important;

}

.cloudservices li img {
  width: 50px;
}

.appscard {
  background: linear-gradient(-90deg, rgba(153, 69, 255, 0) -21.56%, rgba(0, 224, 255, 0.79) 64.4%, #00FF77 120.07%);
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  padding: 0px 40px;
  margin-bottom: 50px;
}

.appscard h5 {
  line-height: 30px;
}

.servicecardimg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.servicecardimg lottie-player {
  z-index: 1;
}

.backcircle {
  background: #fff;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  opacity: .2;
  margin: 0 auto;
  position: absolute;
}



/* Secret Potion page style  */

.urest-sec .secret-lady {
  position: absolute;
  left: -110px;
  top: 355px;
  z-index: -1;
  width: 500px;
}

.urest-sec .secret-man {
  position: absolute;
  right: 25px;
  top: 355px;
  z-index: -1;
  width: 500px;
}

.challangessec .country-ul li {
  width: auto !important;
}

.challangessec ul {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: end;
}

.challangessec ul li {
  /* margin-right: 70px; */
  width: 123px;
  text-align: center;
  margin-right: 40px;
}

.challangessec ul li img {
  width: 40px;
}

.challangessec ul li p {
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
  font-weight: lighter;
  text-align: center;
  margin-bottom: 0px;
  text-transform: uppercase;
}

/* Catch portfolio page style  */

.urest-sec .catch-child {
  position: absolute;
  top: 170px;
  left: -15px;
  z-index: -1;
}

/* Your Playing Cards portfolio page style  */

.urest-sec .cards-img {
  position: absolute;
  top: 0;
  left: 55px;
  z-index: -1;
}

.urest-sec .cards-laptop {
  width: 700px;
  margin-top: 30px;
}

/********* card-userapp-sec ************/
.card-userapp-sec {
  margin: 60px 0;
}

.card-userapp-sec .user-features-col h5 {
  text-transform: capitalize;
  font-weight: 500;
}

.linewithgradinet span {
  width: 65px;
  height: 7px;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  display: inline-block;
  border-radius: 25px;
  position: absolute;
  top: -3px;
  left: 0px;
}

.linewithgradinet {
  width: 100%;
  border-bottom: 1px solid #fff;
  margin: 20px 0px;
  position: relative;
}

.user-features-col {
  margin-bottom: 50px;
}

.card-userapp-sec .card-row {
  /* margin: 40px 0; */
}

.card-userapp-sec .card-row .card {
  background: #444A65;
  border-radius: 45px;
  padding: 10px;
  min-height: 297px;
}

.card-userapp-sec .card-row .card .ul-div-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card-userapp-sec .card-row .card .fa-icon {
  padding-right: 8px;
}

/* Contact Us Page Style Start Here */

.contactdetails {
  padding: 0px;
  list-style: none;
  margin: 10px 0px 30px;
}

.contactdetails li {
  padding: 5px 0px;
  font-size: 14px;
  color: var(--color-offwhite);
  display: flex;
  align-items: center;
}

.contactdetails li a {
  color: var(--color-offwhite);
}

.contactdetails li img {
  width: 20px;
  margin-right: 15px;
}

.contactdetails address {
  margin-bottom: 0px;
  line-height: 24px;
}

.textspace {
  letter-spacing: 8px;
  font-weight: 600;
}

/* .contactuspage .container {
  padding-bottom: 280px !important;
} */
.oncontactus .starshape {
  top: 270px;
  left: 350px;
  width: 250px;
}

.contactusform .dymondimg2 {
  bottom: 0px;
  top: inherit;
  width: 185px;
}

.contactdetails li span {
  font-size: 12px;
  padding-left: 10px;
}

.contactdetails li a:hover {
  color: #8b5ce0;
}

/* Mega Menu Dropdown */

.megamenu {
  background: rgba(25, 11, 50, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0px;
  padding: 40px 30px 20px;
  width: 100%;
  display: flex;
  position: absolute;
  top: 82px !important;
  left: 0px;
  justify-content: start;
  /* height: 500px; */
  display: none;
}

.dropdown:hover .megamenu {
  display: inline-flex;
  flex-wrap: wrap;
}

.megamenulist ul {
  display: inline-block !important;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 15px 0px 30px !important;
}

.megamenulist {
  display: inline-flex;
  width: 25%;
  flex-direction: column;
}

/* .megamenulist ul li {
  width: 33.33% !important;
  float: left;
  text-align: left;
} */
.megamenulist ul li a {
  color: var(--color-white) !important;
  background: transparent !important;
  font-weight: 300 !important;
  padding: 0px !important;
}

.megamenulist ul li a:hover {
  color: #d66706 !important;
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.megamenulist hr {
  width: 94%;
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
}


/* iphone style start here  */

.inrheding {
  text-transform: inherit !important;
}

.provide-sec .provid-first-col {
  text-align: center;
  margin-bottom: 50px;
}

.provide-sec .paragraph-col {
  margin: 40px 0px 0px;
}

.provide-sec h1 {
  font-weight: 600;
  text-align: center;
}

.servicelisting2 {
  margin: 0;
  padding: 0;
}

.servicelisting2 li {
  font-size: 16px;
  color: #fff;
  list-style: none;
}

.servicelisting2 li i {
  color: #fff;
  margin-right: 10px;
}

.technology-sec .techcard {
  padding-bottom: 50px;
}

.fai-logo-div:hover {
  background: linear-gradient(105.25deg, #9945FF 1.43%, #00E0FF 84.54%, #00FF77 106.63%) !important;
}

.technology-sec .looking-col .react-logo-div img {
  width: 100px;
}

.technology-sec .looking-col .react-logo-div h4 {
  text-transform: capitalize;
  padding-top: 25px;
  line-height: 35px;
}

.technology-sec .looking-col .fai-logo-div {
  padding: 35px 0;
  text-align: center;
  border-radius: 30px;
  background: #444A65;
  /* min-height: 274px; */
  margin-top: 25px;
}

.technology-sec .looking-col .fai-logo-div img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.technology-sec .looking-col .fai-logo-div h5 {
  /* text-transform:capitalize; */
  /* padding-top: 25px; */
  line-height: 28px;
}

.choose-sec {
  padding: 50px 0px;
  /* background-color: lightblue; */
}

.choose-icon-main-div .icon-content-div p {
  line-height: 20px;
}

.development-icon-div .developmenticon {
  list-style: none;
  display: flex;
  flex-wrap: wrap;

}

.developmenticon li {
  width: 33.33%;
  margin-bottom: 30px;
  text-align: center;
}

.developmenticon li img {
  background: #444A65;
  border-radius: 15px;
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: none;
  margin: 0 auto 10px;
}

.developmenticon li h6 {
  line-height: 26px;
  text-transform: capitalize;
}

.developmenticon li img:hover {
  background: linear-gradient(105.25deg, #9945FF 1.43%, #00E0FF 84.54%, #00FF77 106.63%) !important;
}

.softwerecard {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  border-radius: 15px;
  justify-content: space-between;
  margin-bottom: 70px;
}

.softwerecontent {
  padding: 32px 0px 32px 32px;
}

.softwere-sec #accordionExample {
  margin: 70px 0;
}

.softwere-sec #accordionExample .accordion-item {
  margin-bottom: 40px;
  background-color: #110222 !important;
  border: none;
  border-radius: 52px !important;
  color: #fff;
  font-size: 16px;
}

.softwere-sec #accordionExample .accordion-button {
  position: relative;
  display: flex;
  border-radius: 50px !important;
  align-items: center;
  width: 100%;
  padding: 1.7rem 2.25rem !important;
  font-size: 1.2rem;
  color: #fff !important;
  text-align: left;
  background-color: #444a65 !important;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.softwere-sec #accordionExample .accordion-button:hover {
  background: linear-gradient(105.25deg, #9945FF 1.43%, #00E0FF 84.54%, #00FF77 106.63%) !important;
}

.softwere-sec #accordionExample .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none !important;

}

.softwere-sec #accordionExample .accordion-body {
  padding: 1rem 2.25rem !important;
}

.weight600 {
  font-weight: 600 !important;
}

.iphoneheading h1 {
  font-size: 54px !important;
  line-height: 70px;
}

.iphoneheading .main-slider__content {
  text-align: center !important;
}

.iphoneheading .main-slider__content h3 {
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 400;
}

.provide-sec {
  padding-bottom: 25px;
}

.ptext3 {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-offwhite);
  font-weight: 400;
  margin-bottom: 15px;
}

.choose-new-sec {
  padding: 60px 0 0px;
}

.choose-new-sec .ch-para {
  font-size: 23px;
  padding: 10px 0px 0px;
}

.choose-new-sec .ptext-white {
  /* font-family: 'Questrial'; */
  font-size: 16px;
  line-height: 30px;
  color: var(--color-offwhite);
  font-weight: 400;
  margin-bottom: 15px;
}

.choose-new-sec .choose-card {
  background: #444A65;
  border-radius: 30px 0px 30px 0px;
  position: relative;
  min-height: 307px;
  margin: 30px 20px 20px;
}

.reactcardsminheight .choose-card {
  min-height: 240px;
}

.choose-new-sec .choose-card .ch-card-inner {
  display: flex;
  justify-content: space-between;
}

.choose-new-sec .choose-card .ch-card-inner .icon-div {
  background: var(--color-base);
  padding: 16px;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  position: absolute;
  top: -35px;
  left: -15px;
}

.choose-new-sec .choose-card .ch-card-inner .ch-bages {
  position: absolute;
  right: 23px;
  top: 10px;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
}

.choose-new-sec .choose-card .ch-card-inner .icon-div .ellipse {
  position: absolute;
  bottom: 6px;
  right: -8px;
}

.choose-new-sec .choose-card .ch-content-div {
  /* margin-top: 80px; */
  padding: 20px;
}

.choose-new-sec .choose-card .ch-content-div h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 34px;
}

.choose-new-sec .choose-card .ch-content-div p {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  font-weight: 300;
}

.choosenewcard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* margin-bottom: 30px; */
}

.ch-bages {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.ch-bages p {
  margin: 0;
  font-size: 20px !important;
}

.iosservice-sec {
  padding: 80px 0;
}

.iosservice-card {
  background: #444A65;
  border-radius: 40px;
  padding: 25px 20px;
}

.iosservice-card p {
  margin: 10px 0px 0px;
}

.iosservice-card img {
  width: 25px;
}

.flow-left {
  left: -40px;
  position: relative;
}

.flow-right {
  right: -40px;
  position: relative;
}

/********* iphone-lets-sec  */
.iphone-lets-sec .lets-main-div {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  /* background: linear-gradient(96.02deg, #FF5C00 -89.34%, #FFCC00 -34.86%, #00E0FF 103.96%); */
  border-radius: 20px;
  height: 300px;
  margin-bottom: 54px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-lets-sec .lets-main-div .lets-secbg-img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.iphone-lets-sec .lets-main-div .lets-inner-div {
  flex-direction: column;
  text-align: center;
  z-index: 1;
}

.iphone-lets-sec .lets-main-div .lets-inner-div h2 {
  color: #1A0B35;
  margin-bottom: 0px;
}

.iphone-lets-sec .lets-main-div .lets-inner-div p {
  padding: 12px;
  color: #1A0B35;
  font-size: 20px;
  /* text-align: center; */
}

.iphone-lets-sec .lets-main-div .lets-inner-div a {
  background: #190C33;
  border-radius: 45px;
  border: none;
  padding: 25px 35px;
  font-size: 16px;
}

.otherservice {
  display: flex;
  justify-content: center;
}

.technology-sec {
  padding: 10px 0px 90px;
}

.ser1 {
  width: 18%;
  margin: 20px;
}

/* iphone Style End Here  */

/* banner video style here  */
.bll_home--hero-image {
  position: relative;
  z-index: 2;
}

.bll_home--hero-wrap {
  /* margin-top: 70px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.bll_home--hero-image .media-wrapper .media-image-wrapper {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 545px;
  width: 300px;
  margin: 0 auto;
}

.bll_home--hero-image .media-wrapper .media-video-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bll_home--hero-image .media-wrapper .media-video-wrapper .video {
  position: relative;
  top: 5px;
  max-width: 247px;
  border-radius: 24px;
  z-index: 5;
}

.homecontainer {
  padding-top: 150px !important;
}


/* android and ios button style is here  */
.appicons {
  display: flex;
  justify-content: center;
  margin: 80px 0px 50px;
}

.appicons .btn {
  border: 2px solid #fff;
  display: flex;
  width: 280px;
  border-radius: 50px;
  height: 100px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.appicons .btn img {
  width: 50px;
}

.appicons .btn img {
  width: 40px;
  margin-right: 15px;
}

.appicons .btn h4 span {
  font-weight: 300;
  font-size: 16px;
  display: inherit;
}

.appicons .bt1 {
  margin-right: 30px;
}

.appicons .btn:hover {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border: 2px solid transparent;
}


/* wayz case study testimonial section */

.wayz .wayz-banner {
  position: absolute;
  left: 0px;
  top: 204px;
  z-index: -1;
  width: 100%;
  opacity: 0.5;
  height: 800px !important;
  object-fit: fill;
}

.wayz .wayz-mobile-banner-img {
  width: 350px;
  margin-top: 60px;
}

.wayz {
  text-align: left !important;
}

.wayz .headingarea {
  text-align: center !important;
}


/******* New Testimonials Section Start *******/
#testi-main-div .row .logo-div {
  background: #363C55;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  min-height: 400px;
  padding: 80px;
}

#testi-main-div .row .text-div .inner-div hr {
  position: absolute;
  top: -130px;
  left: -49px;
  height: 5px;
  width: 57%;
  z-index: -1;
  color: #363C55;
}

#testi-main-div .row .text-div h2 {
  text-transform: capitalize;
  margin: 90px 0 50px;
  font-size: 40px;
}

#testi-main-div .row .text-div .inner-div {
  padding: 0px 0px 0px 39px;
  position: relative;
}

#testi-main-div .row .text-div .inner-div p {
  margin-top: 30px;
  font-size: 13px;
  color: #fff;
  line-height: 1.9;
}

#testi-main-div .row .text-div .inner-div .testi-left-quote {
  position: absolute;
  top: -10px;
  left: 0px;
  height: 20px;
}

#testi-main-div .row .text-div .inner-div .testi-right-quote {
  position: absolute;
  bottom: -30px;
  right: 110px;
  height: 20px;
}

/******* New Testimonials Section End *******/

/****** INDEX PAGE ********/
.secret-video-div {
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
}

/* bolo pundit ji style here  */

.bolopunditji {
  background: url(../../assets/img/punditji/punditji-banner.png?v=4.3);
  background-size: cover;
  background-position: top center;
}

.urestbg {
  background: url(../../assets/img/portfolio-details/urestbanner.png);
  background-size: cover;
  background-position: top center;
}

.wayz {
  background: url(../../assets/img/portfolio-details/wayz-banner.png);
  background-size: cover;
  background-position: top center;
}

.secretbg {
  background: url(../../assets/img/portfolio-details/secretpotion-banner.png);
  background-size: cover;
  background-position: top center;
}

.yourplayingbg {
  background: url(../../assets/img/portfolio-details/yourplayingcard-banner.png);
  background-size: cover;
  background-position: top center;
}

.seekmedbg {
  background: url(../../assets/img/portfolio-details/seekmed-banner.png);
  background-size: cover;
  background-position: top center;
}

/* thank you page style is here  */

.error_wrapper {
  padding-top: 130px;
}

.error_text lottie-player {
  margin: 0 auto;
}

.thank_social_links {
  list-style: none;
  display: flex;
  padding: 0px;
  justify-content: center;
}

.thank_social_links li {
  font-size: 30px;
  padding: 20px 20px 10px;
}

.thank_social_links li:first-child i {
  color: #1877F2;
}

.thank_social_links li:nth-child(2) i {
  color: #dd2a7b !important;
}

/* submit loader style */
.loadingHidden {
  display: none;
}

.loadingvisble {
  margin-right: 8px !important;
  padding-left: 0px !important;
}


/********** UI/UX PAGE STYLE  *********/
.outline-headding {
  -webkit-text-stroke: 1px #fff;
  font-size: 70px;
  /* background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wecan-inner-row {
  margin: 60px 0;
}

.wecan-inner-row .wecard-div {
  background: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  min-height: 254px;
}

.wecan-inner-row .wecard-div:hover {
  background: #fff;
  outline: 10px solid #00ffbd47;
}

/* .wecan-inner-row .wecard-div img{
  width: 180px;
} */
.wecan-inner-row .wecard-div p {
  font-size: 20px;
  color: #222222;
  font-weight: 700;
  margin-top: 10px;
}

.expect-div {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 30px;
}

.expect-div h2 {
  text-transform: capitalize;
}

.expect-div ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.expect-div ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
}

.expect-div ul li i {
  font-size: 14px;
  margin-right: 15px;
  color: red;
}

.expect1 {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  border-radius: 15px;
  justify-content: space-between;
  margin-bottom: 70px;
  padding: 30px;
}

.expect1 ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.expect1 ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
}

.expect1 ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
}

.uipic-inner-div h3 {
  font-weight: 500;
  margin-bottom: 15px;
}

.uipic-inner-ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.uipic-inner-ul li {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 44px;
}

.uipic-inner-ul li i {
  color: #1FFFC7;
  font-size: 22px;
  padding-right: 5px;
}

.wecard-div img {
  width: 120px;
}

/* about us page style here */

.aboutmainrow .content-div {
  position: relative;
}

.bnrlottie {
  position: relative;
  display: flex;
  align-items: end;
}

.bnrlottie img {
  position: absolute;
  bottom: -35px;
}

.aboutmainrow .content-div .content-card-div {
  display: flex;
  background: #444A65;
  border-radius: 10px;
  padding: 60px 20px;
}

.aboutmainrow .content-div .ptextw {
  width: 85%;
}

.aboutmainrow .content-div .content-card-div .our-rotate-div {
  width: 20%;
  position: relative;
  display: inherit;
}

.aboutmainrow .content-div .content-card-div .our-rotate-div h3 {
  transform: rotate(-90deg);
  -webkit-text-stroke: 1px #9EA1B0;
  color: transparent;
  font-size: 40px;
}

.aboutmainrow .content-div .content-card-div .inner-card {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.aboutmainrow .content-div .content-card-div .inner-card .first-div {
  background: #160A2D;
  text-align: center;
  margin: 10px;
  padding: 16px 0;
  border-radius: 16px;
  width: 46%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutmainrow .content-div .content-card-div .inner-card .first-div p {
  font-size: 14px;
  text-transform: uppercase;
}

.aboutmainrow .about-img img {
  position: relative;
  margin: -27px -97px;
}

.aboutmainrow .about-img p {
  text-transform: uppercase;
  margin: 53px 0 20px;
  font-size: 20px;
  color: #fff;
  font-weight: 100;
}

.inner-card .first-div h3 {
  font-size: 40px;
}

.target-sec {
  padding: 0 0 100px 0;
}

.target-sec img {
  width: 150px;
}

.target-sec .our-mission-div {
  background: #444A65;
  margin-top: 40px;
  border-radius: 15px;
  padding: 22px 10px;
}

.target-sec .our-mission-div h3 {
  font-size: 25px;
  font-weight: 300;
}

.target-sec .our-mission-div p {
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
  font-weight: 100;
}

.whypairroxz-sec {
  padding: 30px 0px;
}

.whypairroxz-sec .transparent-div {
  /* background: gray; */
  text-align: center;
  padding: 30px 27px;
}

.whypairroxz-sec .transparent-div img {
  width: 85px;
}

.whypairroxz-sec .transparent-div h4 {
  padding: 12px 0;
}


.iphone-lets-sec .about-para {
  width: 83%;
  margin: 5px auto;
}

.gradientbutton .textlower {
  text-transform: lowercase;
}

/*********** UI UX PAGE DESIGN **********/
.lottie-ul {
  list-style: none;
  padding: 0;
}

.lottie-ul li {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
}

.lottie-ul li i {
  font-size: 16px;
  margin-right: 10px;
}

.lottie-main-imgdiv {
  width: auto;
  display: flex;
  flex-wrap: wrap;
}

.lottie-main-imgdiv .lottie-white-div {
  background: #fff;
  margin: 0;
}

.lottie-main-imgdiv .lottie-purple-div {
  background: #9945FF;
}

.lottie-main-imgdiv .lottie-yellow-div {
  background: #F36F56;
}

.lottie-main-imgdiv .lottie-blue-div {
  background: #6360CC;
}

.lottie-main-imgdiv .lottie-light-pink-div {
  background: #FFC4DD;
}

.shapeadjust {
  left: -190px;
  top: 0px;
  width: 250px;
  z-index: -1;
}

.button4 {
  padding: 0px 25px;
  font-size: 16px;
}

.talktous .gradientbutton:hover {
  background: #fff;
}

.talktous .gradientbutton:hover .button4 {
  color: #000;
  ;
}

.talktous {
  background: url(../../assets/img/ui-ux/talktous.jpg);
  background-size: 100%;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  background-repeat: no-repeat;
}

.whatexpect {
  display: flex;
}

.whatexpect .col1 {
  width: 62%;
}

.whatexpect .col2 {
  width: 38%;
  padding: 0px;
}

.ui-ux-img-div img {
  width: 500px;
}

.wecan-sec {
  margin: 40px 0px 45px;
}

.uipic-sec .h3-ui-title {
  font-size: 26px;
}

.ui-ux-div .lottie-ul li {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.our-process-div {
  text-align: right;
}

.ui-ux-img-div {
  margin-bottom: 30px;
}

.our-process-div img {
  width: 400px;
}

.ui-do-div ul {
  text-decoration: none;
  list-style: none;
  margin-top: 16px;
}

.ui-do-div ul li {
  color: #fff;
  padding: 8px 10px;
}

.ui-do-div ul span {
  padding-left: 10px;
}

.do-mobile {
  display: none;
}


/********** Food Delivery page css start *************/

.listdivheight {
  min-height: 360px;
}

.we-expect-div {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 30px;
}

.we-expect-div ul {
  list-style-type: none;
  padding: 0;
  margin-top: 3px;
}

.we-expect-div ul li {
  display: flex;
  align-items: center;
  font-size: 16px !important;
  color: #fff;
  font-weight: 300;
  padding-bottom: 0px;
}

.we-expect-div ul li .food-check-icon {
  font-size: 14px;
  margin-right: 15px;
  color: #00FFBD;
}

.whatwedolottie {
  position: relative;
}

.whatwedolottie lottie-player {
  position: absolute;
  top: 0px;
}

.food-delivery-blue {
  background: linear-gradient(90.33deg, #0065C1 35.55%, #0065C1 52.57%, rgba(0, 146, 216, 0.630532) 66.22%, rgba(0, 224, 255, 0) 78.34%);
  border-radius: 15px;
  justify-content: space-between;
  margin-bottom: 70px;
}

.fooddeliverycontent {
  padding: 32px 0px 32px 32px;
}

.fooddeliverycontent p {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  padding: 20px 0;
}

.foodlottie img {
  top: 0px !important;
}

/* .foodlottie lottie-player {
  position: relative;
  width: 408px;
  top: -40px;
} */

.foodlottie lottie-player {
  position: relative;
  width: 269px;
  top: 0px;
  left: 44px;
}

.restaurant-mobility {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border-radius: 17px;
  justify-content: space-between;
  margin-bottom: 70px;
}

.restaurant-mobility-content {
  padding: 32px 13px 13px 15px;
}

.restaurant-mobility-content p {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  padding: 20px 0 0;
}


.food-delivery-ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-around;
  margin-top: 60px;
}

.food-delivery-ul li .food-inner-div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  margin: 0 auto;
}

.food-delivery-ul li .food-inner-div h1 {
  position: absolute;
}

.food-delivery-ul li p {
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.food-dymondimg2 {
  position: absolute;
  top: 70px;
  width: 250px;
  right: 0 !important;
  animation: ribbonRotate 15s linear 0ms infinite;
}

.cstmbtn {
  display: inline-block;
  margin-top: 10px;
}

.cstmbtn:hover {
  border-color: white !important;
  color: white !important;
  background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706);
}

.gradientcard {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border-radius: 10px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gradientcard .btnstyle4 {
  background: white;
  border-radius: 30px;
  color: var(--color-base);
  padding: 5px 25px;
  z-index: 1;
}

.gradientcard .btnstyle4:hover {
  background: var(--color-base);
  color: #fff;
}

.heathcarelist {
  line-height: 50px;
}

.heathcarelist li {
  font-size: 20px !important;
}

.heathcarelist li .food-check-icon {
  font-size: 18px !important;
}


/***** Aboutus Page Css *******/
.about-dymond-sec .dymond_img {
  width: 285px;
  position: absolute;
  bottom: 15px;
  right: -75px;
  z-index: 1;
  animation: treeMove 15s linear 0ms infinite;
}


.about-mission-div {
  border: 1px solid #00e4fd;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
}

.about-mission-div .about-our-mission {
  width: 40%;
  margin-right: 20px;
  background-color: #fff9eb;
  border-radius: 15px;
  height: 250px;
  display: flex;
  align-items: center;
}

.about-mission-div .about-our-mission-text {
  width: 60%;
}

.uibnrlottie lottie-player {
  width: 268px;
  margin: 0 auto;
}

.about-mission-div {
  border: 1px solid #00e4fd;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  min-height: 330px;
}

.about-mission-div .about-our-vision {
  width: 40%;
  background-color: #fff9eb;
  border-radius: 15px;
  height: 250px;
  display: flex;
  align-items: center;
}

.about-mission-div .about-our-vision-text {
  width: 60%;
  margin-right: 20px;
}

.about-why-pairroxz {
  padding: 60px 0px;
  position: relative;
}

.about-why-pairroxz .titletext {
  text-align: center;
  margin-bottom: 80px;
}

.textboxdetails {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.whytxt p {
  margin: 0px;
  line-height: 20px;
}

.whytxt {
  margin-left: 25px;
}

.whytxt h5 {
  margin-bottom: 10px;
}

.textbox {
  width: 60%;
  margin: 0% 0% 0% 2%;
}

.cmnshape {
  position: absolute;
}

.abhtshape1 {
  width: 80%;
  right: 0px;
}

.lineshape {
  width: 100%;
  top: 10px;
  z-index: -1;
}

.textboxdetails img {
  width: 100%;
}

.textboximg {
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
}

.textbox .textboxdetails:nth-child(1) {
  left: 70px;
  position: relative;
}

.textbox .textboxdetails:nth-child(2) {
  left: 145px;
  position: relative;
}

.textbox .textboxdetails:nth-child(3) {
  left: 80px;
  position: relative;
}

.textbox .textboxdetails:nth-child(4) {
  left: 10px;
  position: relative;
}

.textbox .textboxdetails:nth-child(5) {
  left: 65px;
  position: relative;
}

.textbox .textboxdetails:nth-child(6) {
  left: 145px;
  position: relative;
}

.abhtshape2 {
  width: 500px;
  top: 0px;
  opacity: 0.7;
}

.abhtshape3 {
  width: 800px;
  bottom: 0px;
  opacity: 0.1;
  z-index: -2;
}

.abhtshape4 {
  bottom: 0px;
  opacity: 0.5;
  right: 0px;
}

.abhtshape5 {
  bottom: 300px;
  right: 200px;
  width: 40px;
  opacity: .5;
}

.abhtshape6 {
  right: 0px;
  bottom: 225px;
  opacity: .1;
  width: 40%;
}

.abhtshape7 {
  right: 0px;
  width: 300px;
  top: 150px;
}

.abhtshape8 {
  right: 175px;
  top: 80px;
  width: 50px;
}

.abhtshape9 {
  bottom: 10px;
  left: 85px;
  width: 50px;
}

.textlisting {
  text-align: left;
}

.textlisting li {
  color: #eee;
  font-size: 16px;
}

/* box card style here  */
.boxcard {
  position: relative;
  text-align: center;
  margin-top: 70px;
}

.boxcardbg {
  background: linear-gradient(93.67deg, #9945FF -2.8%, #00E0FF 88.1%, #00FF77 119.15%);
  padding: 70px 0px 70px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.boxcardshape {
  position: absolute;
}

.shp1 {
  bottom: 0px;
  left: 0px;
}

.shp2 {
  top: 0px;
  right: 0px;
}

.shp3 {
  top: 20px;
  right: 0px;
  width: 50px;
}

.shp4 {
  right: 100px;
  bottom: 0px;
  width: 100px;
}

.shp5 {
  top: 0px;
  left: 140px;
  width: 75px;
}

.shp6 {
  top: 60px;
  left: 120px;
  width: 15px;
}

.boxcardbg p {
  color: #deeafe !important;
}

.boxcardbg .btnstyle3 {
  display: inline-block;
  margin-top: 10px;
}

.btnstyle3 {
  border: 2px solid #fff;
  background: transparent;
  border-radius: 30px;
  padding: 10px 30px 10px;
  font-size: 16px;
  color: #fff;
}

.btnstyle3 i {
  color: #fff;
  padding-left: 8px;
}

.btnstyle3:hover {
  color: var(--color-base);
  border-color: var(--color-base);
}

.btnstyle3:hover i {
  color: var(--color-base);
}

/* model style here  */

.boxcardmodel .modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.boxcardmodel .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #313442;
  border: none;
  padding: 1.5rem 1.5rem 2rem;
  width: 26rem;
  border-radius: 15px;
}

.boxcardmodel .close-button {
  color: #9EA1B0;
  font-size: 40px;
  font-weight: 500;
  cursor: pointer;
}

.boxcardmodel .show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  display: inline-block;
}

/* model form style here  */

.modelform {
  margin-top: 20px;
}

.modelform label {
  font-size: 12px;
  color: #9945FF;
  position: absolute;
  top: 24px;
  right: 10px;
}

.modelform .form-control {
  margin-bottom: 10px;
  color: #fff !important;
  border-color: #444A65;
  background: transparent;
  height: 50px;
  border-radius: 0px;
}

.modelform input::placeholder,
textarea::placeholder {
  color: #9EA1B0;
  font-size: 14px;
}

.modelform textarea {
  height: 80px !important;
}

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

.btnstyle4 button {
  width: 100%;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border: none;
  padding: 10px;
}

.btnstyle4 button:hover {
  background: linear-gradient(93.67deg, #9945FF -2.8%, #00E0FF 88.1%, #00FF77 119.15%);
}

/*********  Model 2 **********/

.boxcardmodel2 .show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  display: inline-block;
  background: #000000d9;
}

.boxcardmodel2 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  width: 1100px;
  border-radius: 0px;
  padding: 0px 0px;
  margin: 0;
}

.boxcardmodel2 .main-popup .first-parent-div {
  display: flex;
  flex-wrap: wrap;
}

.boxcardmodel2 .image-div {
  width: 50%;
}

.boxcardmodel2 .first-image-div {
  /* background-image: url("../../assets/img/model2.png"); */
  /* background-position: center; */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  background: #fff;
  min-height: 100%;
  padding: 50px;
  border-right: 1px solid #ced4da !important;
}

.boxcardmodel2 .first-image-div h2 {
  font-weight: 600;
  color: #444A65;
}

.boxcardmodel2 .first-image-div .spanstyle1 {
  /* color: #00FFBD; */
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flattxt {
  color: #444A65;
  font-weight: 500;
  padding: 0px;
}

.flattxt span {
  font-weight: 500;
  color: #cf001d;
  font-size: 13px;
}

.btnstyle4.widthimprove button {
  color: var(--color-base);
}

/* first div  */

.boxcardmodel2 .form-div {
  width: 50%;
  padding: 20px 0px;
  background: #fff;
  display: flex;
  align-items: center;
}

.boxcardmodel2 .close-button {
  color: #9EA1B0;
  font-size: 40px;
  font-weight: 500;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}

.boxcardmodel2 .formheader h5 {
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
  color: #9EA1B0;
}

.boxcardmodel2 .formheader h3 {
  text-transform: capitalize;
  color: #444A65;
  font-weight: 600;
  font-size: 24px;
}

.boxcardmodel2 .formheader {
  display: block;
  justify-content: inherit;
  align-items: inherit;
  padding: 20px;
  text-align: left;
}

.boxcardmodel2 .form-control {
  margin-bottom: 0px;
  color: #000 !important;
  border-top: 1px solid #ced4da !important;
  border: none;
  background: transparent;
  height: 80px;
  width: 100%;
}

.boxcardmodel2 .form-control:focus {
  box-shadow: none;
}

.bdr-right {
  border-right: 1px solid #ced4da !important;
}

.boxcardmodel2 textarea {
  border-bottom: 1px solid #ced4da !important;
  height: 100px !important;
  padding: 1rem 0.75rem;
}

/* First parent over */

.boxcardmodel2 .second-parent-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #2B2B2B;
  padding: 5px 0px;
}

.boxcardmodel2 .first-div h4 {
  line-height: 30px;
  text-transform: capitalize;
  padding: 0 50px;
  font-size: 20px;
}

.boxcardmodel2 .first-div {
  width: 45%;
  border-right: 1px solid #fff;
}

.boxcardmodel2 .second-div {
  width: 55%;
}

.boxcardmodel2 .second-div h5 {
  text-align: center;
}

.boxcardmodel2 .second-div ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.boxcardmodel2 .li-inner-div {
  display: flex;
  align-items: center;
}

.boxcardmodel2 .second-div ul li {
  margin-right: 25px;
  padding-top: 10px;
  width: 28%;
}

.boxcardmodel2 .li-inner-div img {
  width: 30px;
  margin-right: 15px;
}

.boxcardmodel2 .li-inner-div p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

.boxcardmodel2 .countrycode select {
  color: #9ca0a4 !important;
  margin: 0px;
  width: 120px;
}

.boxcardmodel2 .btnstyle4 {
  width: 40%;
  margin: 0 auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.colbox {
  display: flex;
  width: 100%;
}

.colbox .form-group {
  width: 100%;
}

/* Model 3 start here  */

.boxcardmodel3 .show-modals {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  display: inline-block;
}

.boxcardmodel3 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  padding: 1.5rem 1.5rem 2rem;
  width: 55%;
  overflow: hidden;
  border-radius: 15px;
  padding: 0px 16px;
  margin: 0;
}

.modal3 {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.boxcardmodel3 .close-button3 {
  color: #9EA1B0;
  font-size: 40px;
  font-weight: 500;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}

.boxcardmodel3 .formheader {
  display: unset;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 30px;
  text-align: left;
}

.boxcardmodel3 .formheader h4 {
  text-transform: capitalize;
  color: #444A65;
  margin-bottom: 10px;
  font-size: 20px;
}

.boxcardmodel3 .formheader h2 {
  text-transform: capitalize;
  color: #444A65;
  font-weight: 400;
  font-size: 20px;
}

.boxcardmodel3 .modelform .form-control {
  margin-bottom: 0px;
  margin-right: 0px;
  color: #a59898 !important;
  border-top: 1px solid #ced4da !important;
  border: none;
  background: transparent;
  height: 80px;
  width: 100%;
}

.boxcardmodel3 .boximgs img {
  height: 100%;
  object-fit: cover;
}

.boxcardmodel3 .popup-main-div {
  width: 100%;
  margin: 0 auto;
}

.boxcardmodel3 .countrycode select {
  color: #9ca0a4 !important;
  margin: 0px;
  width: 120px !important;
}

.boxcardmodel3 .modelform .col-lg-12 {
  padding: 0px;
  position: relative;
}

.boxcardmodel3 input[type=email] {
  border-bottom: 1px solid #ced4da !important;
}

.boxcardmodel3 .btnstyle4 {
  width: 90%;
  margin: 0 auto;
}

.boxcardmodel3 .form-control:focus {
  box-shadow: none;
}

/* call-box style */

/* .call-box {
  text-align: center;
  background-color: #2d167c;
  background: #2d167c;
  background: linear-gradient(93.67deg, #9945FF -2.8%, #00E0FF 88.1%, #00FF77 119.15%);
  padding: 60px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.call-box h3 {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
  background: none;
  padding: 0;
}
.call-box p {
  color: #fff;
  margin-bottom: 20px;
}
.call-box .certified-value {
  border-top: 1px solid #110222;
  padding-top: 20px;
  margin-top: 30px;
}
.call-box .certified-value span {
  display: inline-block;
  margin: 4px 2px;
  background-color:#110222;
  padding: 4px 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
}
.call-box .btn {
  height: 60px;
  width: 170px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  display: flex;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-transform: uppercase;
} */

.interlinking {
  color: #00E0FF;
}

.interlinking:hover {
  color: var(--color-offwhite) !important;
}

.stacklist li {
  font-size: 14px;
}

.stacklist1 {
  width: 21%;
}

.stacklist2 {
  width: 26%;
}


/* seo style here  */

.seoservc .bnrlottie {
  align-items: start;
}

.seoservc .bnrlottie img {
  bottom: inherit;
}

.choose-seoicon .choose-icon-main-div img {
  background: #444a65;
  border-radius: 30px;
  padding: 15px;
}

.talktous2 {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  width: 80%;
  margin: 0 auto;
}

.talktous2 .gradientbutton {
  background: #fff;
}

.talktous2 .gradientbutton a {
  color: var(--color-base);
}

.talktous .gradientbutton:hover {
  background: var(--color-base);
}

.talktous2 .gradientbutton:hover a {
  color: #fff !important;
}


/* smo  */

.smolottie lottie-player {
  width: 260px;
  margin: 0 auto;
}

.social-media-row {
  background: linear-gradient(94.12deg, #00a1ba 24.22%, #00E0FF 50.3%, #9945FF 97.32%);
  border-radius: 20px;
  overflow: hidden;
}

.row.growing-audience-row {
  background: #9945FF;
  border-radius: 20px;
  overflow: hidden;
}

.social-media-analysis-row {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  border-radius: 20px;
  overflow: hidden;
}

/****** E-Commerce Page Css   */

#test-card1.active.border-gradient-purple-new {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
}

#test-card1.active .Polygon-icon {
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

#test-card2.active.border-gradient-purple-new {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
}

#test-card2.active .Polygon-icon {
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

#test-card3.active.border-gradient-purple-new {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
}

#test-card3.active .Polygon-icon {
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

.ecommercebanner {
  text-align: center;
  padding: 70px 20px 0px;
}

.ecommercebanner img {
  width: 600px;
}

.discuss-para {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}

.smo-gradientcard {
  height: 250px;
  padding: 10px;
}

.choose-spaceing {
  padding: 0;
}

.dymond_img_ppc {
  width: 290px;
  position: absolute;
  bottom: -10px !important;
  right: 522px;
  z-index: -1;
  animation: treeMove 15s linear 0ms infinite;
}

.e-comm-heding {
  margin: 0;
  font-weight: 300;
  font-size: 28px;
}

.scale-sec {
  margin-bottom: 60px;
}

.scale-sec ul {
  list-style: none;
  padding: 0;
}

.scale-sec ul li {
  color: #fff;
  font-size: 14px;
}

.scale-sec .develop-row1 {
  background: #0065C1;
  border-radius: 10px;
}

.scale-sec .develop-row2 {
  /* max-height: 450px; */
  background: linear-gradient(92.02deg, #FFCC00 -2.88%, #FFCC00 55.86%, #FF5C00 108.25%);
  border-radius: 10px;
}

.scale-sec .develop-row3 {
  /* max-height: 450px; */
  background: #9945FF;
  border-radius: 10px;
}

.scale-sec .discuse-row {
  max-height: 450px;
  background: linear-gradient(264.68deg, #3F0075 56.84%, rgba(63, 0, 117, 0) 124.41%);
  border-radius: 10px;
}

.scale-sec .develop-row {
  max-height: 450px;
  background: linear-gradient(92.31deg, #9945FF -17.92%, #526AD8 75.93%, #0095AA 138.76%);
  border-radius: 10px;
}

.scale-sec .discuse-cont1 {
  padding-right: 30px;
  /* text-align: justify; */
}

.scale-sec .discuse-cont1 h4 {
  font-size: 33px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.scale-sec .discuse-cont2 {
  padding-left: 30px;
  /* text-align: justify; */
}

.scale-sec .discuse-cont2 h4 {
  font-size: 33px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.platform-ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.platform-ul li {
  padding: 20px 30px;
}

.platform-ul li img {
  width: 70px;
}

.frpad {
  padding: 50px;
}

.ecommercebanner img {
  width: 100%;
}

.cardp {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  padding-left: 1.5rem;
  margin: 6px 0px 0px;
}

@media screen and (min-device-width: 320px) and (max-device-width: 767px) {
  .scale-sec .discuse-row {
    max-height: initial;
    padding: 0px 0px 15px
  }

  .scale-sec .develop-row {
    max-height: initial;
  }

  .scale-sec .discuse-cont1 h4 {
    font-size: 30px;
  }

  .scale-sec .discuse-cont2 h4 {
    font-size: 30px;
  }

  /*** UI/UX PAGE CSS   */
  .our-process-div {
    text-align: center !important;
    margin-top: 38px;
  }

  .uipic-inner-div {
    margin-bottom: 35px;
  }

  /* .ui-do-div {
    display: block;
  } */
}

@media screen and (min-device-width: 768px) and (max-device-width: 991px) {
  .scale-sec .discuse-row {
    max-height: initial;
    padding: 0px 0px 15px;
  }

  .scale-sec .develop-row {
    max-height: initial;
  }

  .scale-sec .discuse-cont1 h4 {
    font-size: 30px;
  }

  .scale-sec .discuse-cont2 h4 {
    font-size: 30px;
  }

  /*** UI/UX PAGE CSS   */
  .our-process-div {
    text-align: center !important;
    margin-top: 38px;
  }
}


/* media section */
.mediabox {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #423B50;
  margin-top: 40px;
}

.media {
  text-align: center;
  padding: 80px 0px 30px;
}

.logobx {
  width: 33.33%;
  background: #0e021d;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-bottom: 1px solid #423B50;
  border-right: 1px solid #423B50;
}

.mediabox .logobx:nth-child(3) {
  border-right: none !important;
}

.mediabox .logobx:nth-child(6) {
  border-right: none !important;
}

.preloader lottie-player {
  width: 200px;
}

/* iot page css start here */
.iot-ul-row .iot-ul-col {
  margin-bottom: 20px;
}

.iot-ul-row .iot-ul-col h5 {
  font-size: 18px;
}

.iot-ul-row .iot-ul-col ul {
  list-style: none;
  padding: 0;
  color: #fff;
  margin-top: 20px;
}

.iot-ul-row .iot-ul-col ul li {
  font-size: 14px;
}

.iot-ul-row .iot-ul-col ul li i {
  font-size: 14px;
  margin-right: 15px;
  color: #00FFBD;
}

.iotlist li {
  font-size: 18px !important;
}

.iotlist li {
  font-size: 18px !important;
  width: 100%;
  float: left;
}

.iotlist {
  margin: 0 auto;
  display: inline-block;
}

.list1 {
  width: 30%;
  padding: 0px;
}

.list2 {
  width: 34%;
  padding: 0px;
}

.iot-ul-row {
  display: flex;
  justify-content: center;
}

.iotbanner .container {
  padding-top: 150px;
}

.iotcards {
  background: linear-gradient(93.68deg, #FF5C00 -8.2%, #0065C1 -8.2%, #00E0FF 103.17%);
  display: flex;
  padding: 30px 50px;
  border-radius: 20px;
}

.imgdiv {
  width: 30%;
  display: flex;
  align-items: center;
}

.textdiv {
  width: 50%;
}

.imgdiv2 {
  width: 20%;
}

.textdiv {
  width: 50%;
  padding: 30px;
}

.textdiv h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.wayzcard {
  background: linear-gradient(96.02deg, #FF5C00 -89.34%, #FFCC00 -34.86%, #00E0FF 103.96%);
}

.textdiv img {
  width: 88%;
  margin-bottom: 15px;
}

/*footer address new css  */
.site-footer-padd {
  padding: 0px !important;
}

.footericons li a img {
  height: 80px;
  object-fit: contain;
  margin-right: 20px;
  filter: grayscale(100%);
}

.footericons li a img:hover {
  filter: grayscale(0);
  transition: all .5s ease-in;
}

/* new banner heading */
.bnrheadingtext {
  font-family: 'Raleway', sans-serif !important;
  font-size: 46px !important;
  font-weight: 500 !important;
  margin-bottom: 0px !important;
  text-align: center !important;
}

.bordertext {
  font-size: 114px !important;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
  line-height: 125px !important;
  margin-bottom: 0px !important;
  text-align: center !important;
}

.newheading {
  font-family: 'Lato', sans-serif;
  font-weight: 400 !important;
  font-size: 50px;
  line-height: 60px;
  display: inline-block;
  text-transform: capitalize !important;
}

.fooddelivery .bordertext {
  font-size: 94px !important;
  text-align: left !important;
}

.fooddelivery .bnrheadingtext {
  text-align: left !important;
}

.healthcaretext .bnrheadingtext {
  text-align: left !important;
}

.healthcaretext .bordertext {
  text-align: left !important;
}

.forbigtxt .bordertext {
  font-size: 150px !important;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
  margin-bottom: 0px !important;
  line-height: 160px !important;
  text-align: left !important;
}

.forbigtxt .bnrheadingtext {
  text-align: left !important;
}

.newheading2 .bordertext {
  font-size: 140px !important;
  line-height: 160px !important;
  text-transform: uppercase;
}

.newheading2 .bnrheadingtext {
  font-size: 40px !important;
}

.minmargin .container {
  padding: 170px 0px 70px !important;
}


/* laravel page css here  */



.boost-img-div {
  text-align: right;
}

.boost-img-div img {
  width: 500px;
}

.border-gradient-purple {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  padding: 2px;
  border-radius: 20px;
}

.border-gradient-purple .border-purple-inner {
  background: #110222;
  border-radius: 20px;
  padding: 15px;
  min-height: 255px;
}

.dedicated-icondiv {
  border: 1px solid #419DFF;
  border-radius: 50px 0px 50px 0px;
  padding: 15px 30px;
  min-height: 308px;
}

.dedicated-icondiv img {
  width: 70px;
}

.dedicated-icondiv .dedi-heading {
  color: #419DFF;
  font-size: 14px;
}

/* card css */
.ecomm-gradient {
  background: #4359CA;
  /* background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%); */
  border-radius: 10px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 65px !important;
  overflow: hidden;
}

.ecomm-gradient .union1 {
  position: absolute;
  bottom: 0;
  left: 10px;
  height: 200px;
}

.ecomm-gradient .union2 {
  position: absolute;
  top: -90px;
  right: 25px;
  height: 200px;
}

.ecomm-gradient h4 {
  font-size: 40px;
  z-index: 1;
}

.ecomm-gradient .grdnt-ellipse {
  position: absolute;
  top: -60px;
  left: 60px;
  height: 100px;
  transform: rotate(55deg);
}

.ecomm-gradient .grdnt-ellipse1 {
  position: absolute;
  top: 60px;
  left: 55px;
  height: 14px;
  transform: rotate(55deg);
}

.ecomm-gradient .grdnt-ellipse2 {
  position: absolute;
  bottom: -50px;
  right: 100px;
  height: 110px;
}


/* Laravel Page Css */
.laravel-innerpage {
  margin-bottom: 55px;
}

.laravel-container {
  margin-top: 130px !important;
}

.laravel-banner-img {
  /* width: 700px; */
  margin-top: 40px;
}

.laravel-develop-sec {
  margin: 50px 0;
}

.laravel-blue-box-sec .laravel-blue-box {
  min-height: 397px;
  max-height: 397px;
}

.laravel-develop-card {
  background: linear-gradient(94.5deg, #30154F 0.84%, rgba(48, 21, 79, 0) 99.82%) !important;
}

.laravel-uibtn a {
  width: auto;
}

.laravel-ul-sec {
  margin: 55px 0;
}

.laravel-ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.laravel-ul li {
  border: 1px solid #2B2B44;
  padding: 40px;
  text-align: center;
  background: #140228;
}

.lara-ul li {
  color: #9EA1B0 !important;
  font-size: 13px !important;
}

.laravel-slider-sec .owl-prev,
.laravel-slider-sec .owl-next {
  display: none;
}

.laravel-slider-sec .slider-blue-box {
  min-height: 322px !important;
  max-height: 322px !important;
  border-radius: 25px 0px 25px 0px;
}

.laravel-looking-sec {
  margin: 70px 0px 20px;
}

.laravel-looking-sec .service-inner-div {
  border: 1px solid #FFFFFF;
  width: 70%;
  padding: 30px 0;
  text-align: center;
  border-radius: 20px;
}

.laravel-looking-sec .service-inner-div:hover {
  border: 1px solid transparent;
  background: linear-gradient(105.25deg, #9945FF 1.43%, #00E0FF 84.54%, #00FF77 106.63%) !important;
}

.laravel-looking-sec .service-inner-div img {
  width: 75px;
  margin-bottom: 16px;
}

.laravel-looking-sec .lara-right-div {
  margin-top: -20px;
  float: right;
}

.laravel-looking-sec .lara-left-div {
  margin-bottom: 20px;
}

/* e-commerce style here */
.boost-img-div {
  text-align: right;
}

.boost-img-div img {
  width: 500px;
}

.border-gradient-purple {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  padding: 2px;
  border-radius: 20px;
}

.border-gradient-purple .border-purple-inner {
  background: #110222;
  border-radius: 20px;
  padding: 15px;
  min-height: 255px;
}

.dedicated-icondiv {
  border: 1px solid #419DFF;
  border-radius: 50px 0px 50px 0px;
  padding: 15px 30px;
  min-height: 308px;
}

.dedicated-icondiv img {
  width: 55px;
}

.dedicated-icondiv .dedi-heading {
  color: #419DFF;
  font-size: 18px;
}

/* card css */
.ecomm-gradient {
  background: #4359CA;
  /* background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%); */
  border-radius: 10px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 65px !important;
  overflow: hidden;
  z-index: 1;
}

.ecomm-gradient .union1 {
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 300px;
}

.ecomm-gradient .union2 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 300px;
}

.ecomm-gradient h4 {
  font-size: 40px;
}

.ecomm-gradient .grdnt-ellipse {
  position: absolute;
  top: -60px;
  left: 60px;
  height: 100px;
  transform: rotate(55deg);
}

.ecomm-gradient .grdnt-ellipse1 {
  position: absolute;
  top: 60px;
  left: 55px;
  height: 14px;
  transform: rotate(55deg);
}

.blur-elips {
  right: 0px;
  position: absolute;
  top: 0px;
}

.ecomm-gradient .grdnt-ellipse2 {
  position: absolute;
  bottom: -50px;
  right: 100px;
  height: 110px;
}

/* animation button style here  */

.cta {
  position: relative;
  margin: auto;
  padding: 15px 22px;
  transition: all 0.2s ease;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
  color: var(--color-base);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #fff;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.96);
}

.newbt {
  display: inline-block;
  padding: 24px 0px 0px 90px;
}


/* on load model  */

.onloadmodel .modal-content {
  transform: translate(0%, 6%) !important;
}

.onloadmodel .first-image-div {
  padding: 0px;
}

.onloadmodel .modal-dialog {
  max-width: 700px !important;
}

/*************************** OLD AMS PAGE CSS BUT IMPORTANT CSS CODE ***********/
.discuss-para {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}

.smo-gradientcard {
  height: 250px;
}

.choose-spaceing {
  padding: 0;
}

.dymond_img_ppc {
  width: 290px;
  position: absolute;
  bottom: -10px !important;
  right: 522px;
  z-index: -1;
  animation: treeMove 15s linear 0ms infinite;
}

.choose-sec .app-ul {
  list-style: none;
  padding: 0;
  font-size: 13px;
  color: var(--color-offwhite);
}

.choose-sec .app-ul li i {
  color: #00FFBD;
  margin-right: 10px;
}

.scale-sec .ams-row1 {
  padding: 25px;
  border-radius: 10px;
  background: linear-gradient(92.5deg, #0065C1 42.2%, rgba(0, 101, 193, 0.7) 56.96%, rgba(0, 146, 216, 0.19) 72.91%, rgba(0, 0, 0, 0) 98.79%);
  /* background: linear-gradient(93.68deg, #FF5C00 -8.2%, #0065C1 -8.2%, #00E0FF 103.17%); */

}

.ams-row-pad {
  padding: 0 !important;
}

.desk-service-sec {
  margin: 50px 0;
}

.desk-service-sec .owl-prev,
.desk-service-sec .owl-next {
  display: none;
}

/*************************** NEW AMS PAGE CSS  ********************************/
.blue-gradientbutton {
  /* background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706); */
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00E0FF 103.32%);
  padding: 1px;
  border-radius: 10px;
  display: inline-block;
}

.blue-gradientbutton .bluebtnstyle1 {
  font-size: 16px;
  color: #fff;
  width: auto;
  height: 44px;
  padding: 30px;
  display: flex;
  cursor: pointer;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
  border-radius: 10px;
  transition: .5s cubic-bezier(.19, 1, .22, 1) .5s, color .5s ease 0s, background-color .5s ease;
}

.blue-gradientbutton .bluebtnstyle1:hover {
  /* background: linear-gradient(to left, #29d6d5, #c6bf2c, #df870a, #d66706); */
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00E0FF 103.32%);
  color: #fff;
}

.app-ul li {
  line-height: 2;
  margin: 13px 0;
}

.desk-service-sec ul {
  list-style: none;
  padding: 0;
}

.desk-service-sec ul li {
  margin-bottom: 40px;
}

.desk-service-sec .desk-text-div {
  background: #291452;
  padding: 30px;
  height: 95px;
  display: flex;
  align-items: center;
  position: relative;
}

.desk-service-sec .desk-text-div .service-img {
  width: 220px;
  position: absolute;
  top: -26px;
  left: -81px;
}

.desk-service-sec .desk-text-div .text-right {
  padding-left: 130px;
  margin: 0;
}

/* home chritmas buttton */
.chritmasbt .btnstyle1 {
  /* background: linear-gradient(45deg, #ce0e0f, #ff3a3b); */
  background: #fff;
  color: #ce0e0f;
  font-weight: 500;
}

.chritmasbt .btnstyle1:hover {
  background: linear-gradient(45deg, #ce0e0f, #ff3a3b);
  color: #fff;
}

.chritmasbt .btnstyle1 i {
  color: #ce0e0f;
}

.chritmasbt {
  background: #fff !important;
}

/* .chritmasbt .btnstyle1:hover {
      background:#fff;
      color: #000;
    } */
.chritmasbt .btnstyle1:hover i {
  color: #fff;
}

/* landing page css is start here */
.landingheader {
  text-align: center;
}

.landingpge .services-title-a.mobile-app-services:before {
  background: #0F0220;
}

.landingheader h1 {
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 70px;
  text-transform: capitalize;
  font-weight: 500;
}

.yourresult .content_box {
  width: 84% !important;
  display: flex;
  padding-bottom: 0px !important;
}

.landingheader .container {
  padding-top: 180px;
  padding-bottom: 80px;
}

.resultimg img {
  width: 900px;
}

.yourresult .titletext {
  line-height: 46px;
  font-size: 36px;
}

.yourresult .content_box .ptext {
  width: 90%;
}

.landingpge .titletext {
  line-height: 46px;
  font-size: 36px;
}

.landingpge .section-title {
  letter-spacing: 6px;
}

.landingpge .icon-box {
  font-size: 80px;
  color: #fff;
  font-weight: 500;
}

.landingpge .cardp {
  padding-left: 2rem;
  margin: 0px !important;
}

.landingpge .services-title-a {
  padding: 1rem 2rem !important;
}

.whatwedo ul li {
  list-style: none;
  padding: 10px 0px 10px 50px;
  color: #fff;
  position: relative;
}

.whatwedo ul li span {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}

.whatwedo ul li img {
  width: 35px;
  margin-right: 15px;
  position: absolute;
  left: 0px;
}

.supportfree {
  width: 300px;
}

.bright {
  border-right: 1px solid #423B50;
}

.whatwedo {
  padding: 50px 0px;
}

.clutchbt {
  background: #fff;
  padding: 20px 50px;
  border-radius: 40px;
  display: inline-block;
  width: 290px;
}

.pairroxzreview {
  width: 970px;
  margin: 0 auto;
}

.mobile {
  display: none;
}

.whypairroxlanding {
  background: #1F1238;
  padding: 80px 0px;
}

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

.contentarea h3 {
  margin-bottom: 15px;
}

.contentarea {
  width: 900px;
  margin: 0 auto;
}

.mleft {
  margin-left: 50px;
}

.mright {
  margin-right: 50px;
}

.bestbox {
  background: #1F1238;
}

.bestbox {
  background: #1F1238;
  margin: 80px 0px 0px;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.bestbig {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 400px;
  width: 40%;
  padding: 50px;
  border-radius: 20px;
}

.bestsmall {
  width: 60%;
  padding: 50px;
}

.bestbig h2 {
  color: #100221 !important;
  line-height: 50px !important;
  font-weight: 600;
}

.flatesec {
  border-radius: 10px;
  position: relative;
  text-align: left;
  height: 241px;
  display: flex;
  align-items: start;
  margin-top: 50px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}

.bnrtxt {
  padding: 0px 50px;
  font-weight: 300;
  font-size: 30px;
}

.flatesec img {
  position: absolute;
  top: 0px;
  z-index: -1;
}

.boxcardmodel2 .btnstyle4.widthimprove {
  width: 50%;
}

.flatesec .gradientbutton {
  margin: 15px 50px 0px;
}

.flatesec a {
  display: block;
  height: 100%;
}

.flatemobile {
  display: none;
}

/* E-Commerce Page Css Start */
.border-gradient-purple-new {
  background: #444A65;
  padding: 15px 0 0 0;
  border-radius: 25px;
  text-align: center;
  position: relative;
}

.border-gradient-purple-new:hover {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
}

.border-gradient-purple-new:hover .Polygon-icon {
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

.border-purple-inner-new {
  background: #271746;
  border-radius: 0px 0px 20px 20px;
  padding: 15px;
  min-height: 255px;
}

.border-gradient-purple-new .Polygon-icon {
  width: 20px;
  display: none;
}

.feature-onhover-div {
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
}

.feature-onhover-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #160A2D;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.feature-onhover-inner .ptext2 {
  margin-bottom: 0px;
}

.feature-onhover-inner .features-img {
  position: absolute;
  top: -8px;
  left: -12px;
  width: 50px;
}

.first-features-row {
  display: none;
}

.border-gradient-purple-new:hover .first-features-row {
  display: block;
  transition: 2s;
}

#test-row1,
#test-row2,
#test-row3 {
  -webkit-animation: fadeinout 0.5s linear forwards;
  animation: fadeinout 0.5s linear forwards;
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeinout {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* E-Commerce Page Css End */
.reviewcard {
  display: flex;
  flex-wrap: wrap;
}

.bx2 img {
  width: 100%;
}

.reviewcard {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  background: #1F1238;
  align-items: center;
  border-radius: 25px;
  margin-bottom: 80px;
}

.reviewcard .bx2 {
  width: 42%;
}

.reviewcard .bx1 {
  width: 58%;
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}

.bx1 h2 {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bx1 h5 {
  color: #9EA1B0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

/* new service page css is here  */
/* .noidebg {
  background: url(../img/new-services/noise2.png) #160A2D !important;
} */
.noidebg::before {
  content: "";
  background-image: url(../img/new-services/noise.png);
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: .4;
  z-index: -1;
}

.bannermargin {
  padding: 100px 0px 100px;
}

.blureffect img {
  width: 60%;
  position: absolute;
  top: -100px;
  z-index: -1;
  right: 0px;
}

.bigheading {
  font-size: 110px;
  line-height: 110px;
}

.bigheadingspan {
  background: linear-gradient(to left, #00f6a1, #00e4fd, #6988ff, #a060fd);
  -webkit-background-clip: text;
  -webkit-text-stroke: 3px transparent;
  color: #1b0f31;
  font-size: 130px;
  font-family: Faktum Test Bold;
  display: block;
}

.newp {
  color: #9EA1B0;
  font-size: 20px;
  margin-top: 10px;
}

.serviceoutline {
  margin-bottom: 30px;
  padding-right: 40px;
}

.uiuxsec {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto 50px;
}

.uiimg {
  width: 50%;
}

.uicontent {
  width: 50%;
  padding-left: 70px !important;
  padding: 30px 0px;
}

.bigheading2 {
  font-size: 70px;
  line-height: 80px;
}

.bigone {
  font-size: 100px !important;
  line-height: 110px !important;
}

.serviceoutlinetext {
  background: linear-gradient(90.93deg, #FF5C00 31.43%, #FFCC00 52.95%, #00E0FF 74.02%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  color: #1b0f31;
  font-size: 90px;
  line-height: 100px;
  font-family: Faktum Test Bold;
  display: block;
}

.servicebdr {
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #ffffff1f;
  margin-bottom: 20px;
}

.design {
  width: 250px;
}

.mainlisting {
  padding: 30px 0px 30px;
  list-style: none;
}

.mainlisting li {
  color: #9EA1B0;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 30px;
}

.mainlisting li a {
  color: #9EA1B0;
  font-size: 16px;
  margin-bottom: 10px;
}

.mainlisting li img {
  width: 16px;
  margin-right: 10px;
}

.digitalmarketing .mainlisting {
  padding: 30px 0px 30px;
}

.digitalmarketing .social-img {
  width: 550px;
}

.marketing {
  width: 86%;
}

.padleft {
  padding-left: 100px;
}

.computing {
  width: 75%;
}

.digitalmarketing {
  margin-bottom: 40px;
}

.app {
  width: 160px;
}

.mobileapps .nav-pills .nav-link {
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 7px 18px !important;
  margin-right: 20px;
  width: 170px;
}

.mobileapps .nav-pills .nav-link:hover {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%) !important;
  color: #160A2D !important;
}

.mobileapps .nav-pills .nav-link.active {
  border-color: #ff5c00;
}

.webdesignsec .nav-pills .nav-link.active {
  border-color: #ff5c00;
}

.mobileapps .servicetab {
  border-top: none;
  border-bottom: none;
}

.mapp-bg {
  position: absolute;
  right: 0px;
  z-index: -1;
  top: -70px;
}

.webdesignsec .uidesignimg {
  width: 100% !important;
}

.webdesignsec .servicetab {
  border-top: none;
  border-bottom: none;
}

.webdesignsec .nav-pills .nav-link {
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 7px 18px !important;
  margin-right: 20px;
  width: 170px;
}

.webdesignsec .nav-pills .nav-link:hover {
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%) !important;
  color: #160A2D !important;
}

.mobileapps {
  margin: 80px 0px;
}

.webdesignsec {
  margin: 80px 0px;
}

.uiuxsec .newbt {
  display: inline-block;
  padding: 24px 0px 0px 0px;
}

.uiuxsec .cta span {
  color: #fff;
}

.uiuxsec .cta:hover span {
  color: #000;
}

.digitalmarketing .newbt {
  display: inline-block;
  padding: 24px 0px 0px 0px;
}

.digitalmarketing .cta span {
  color: #fff;
}

.digitalmarketing .cta:hover span {
  color: #000;
}

.design {
  /* width: 275px; */
  width: 500px;
}

/* New Fitness Page fit-benifit-sec Start */

.fit-benifit-sec {
  margin-bottom: 50px;
}

.fit-hbox {
  min-height: 304px !important;
}

.fit-feature-div {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  border-radius: 10px;
  padding: 1px;
}

.fit-feature-div .fit-feature-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #160A2D;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.fit-feature-div .fit-feature-inner p {
  margin: 0;
}

.fit-feature-div .fit-feature-inner .features-img {
  position: absolute;
  top: -10px;
  left: -14px;
  width: 65px;
}

.fitness-card {
  height: 330px;
}

.fitness-card h4 {
  text-transform: capitalize;
}

/* New Fitness Page fit-benifit-sec End */

/* Education Page Css Start */
.our-education-sec {
  margin-top: 50px;
}

.education-fit-inner {
  min-height: 80px;
  text-align: center;
}

.education-fit-inner .ptext2 {
  line-height: 20px;
}

.education-slider-sec {
  margin: 50px 0;
}

.laravel-slider-sec .education-blue-box {
  min-height: 370px;
  max-height: 370px;
  border-radius: 25px 0px 25px 0px;
  border: 1px solid #419DFF;
  padding: 15px 30px;
}

.laravel-slider-sec .education-blue-box .dedi-heading {
  color: #419DFF;
  font-size: 18px;
  margin-bottom: 10px;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.grid-first-row {
  display: flex;
  width: 100%;
  padding: 25px 0 20px 0;
  border-bottom: 1px solid #3E3939;
}

.grid-first-row .inner-main-div {
  display: flex;
  border-right: 1px solid #3E3939;
  padding: 10px;
  width: 25%;
}

.grid-first-row .inner-main-div p {
  color: #fff;
  font-size: 15px;
  line-height: initial;
}

.grid-first-row .removeb {
  border: none;
}

/* Faq Section */
.faq-para-bold {
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.hire-education-card {
  background: linear-gradient(180deg, #190551 0%, #1A0551 14.06%, #1B0552 28.65%, #1D0552 47.4%, #1F0553 67.19%, #210554 83.33%, #210554 100%);
  border-radius: 10px;

}

.hire-education-card .hire-card-inner {
  padding-left: 40px;
}

/* .hire-cardbtn{
  background: #1f0553 !important;
} */

.blue-gradientbutton .hire-cardbtn {
  font-size: 13px;
  color: #fff;
  width: auto;
  height: 25px;
  padding: 20px;
  display: flex;
  cursor: pointer;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  background: #1f0553;
  border-radius: 10px;
  transition: .5s cubic-bezier(.19, 1, .22, 1) .5s, color .5s ease 0s, background-color .5s ease;
}

.blue-gradientbutton .hire-cardbtn:hover {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00E0FF 103.32%);
  color: #fff;
}

.education-blue-box {
  min-height: 343px;
  max-height: 343px;
}

/* Education Page Css End */
/* New Contact Us css */
.contact-uldiv {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

.contact-uldiv li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: blue;
  padding: 5px;
}

.contact-uldiv li i {
  font-size: 18px;
}

.newcontact.new_ui_contact {
  margin-top: 45px;
}

.contactcard {
  padding: 30px 30px 0px 30px;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  box-shadow: 4px 0px 0px 5px #d5d5d5;
}

.icn-img {
  height: 70px;
  width: 70px;
  margin-bottom: 20px;
}

.newcontactdetails {
  justify-content: space-between;
  display: flex;
  width: 90%;
  margin: 0 auto;
  position: relative;
  margin-top: -150px;
  background: #180B32;
  margin-bottom: 70px;
}

.contactcard::after {
  content: "";
  z-index: 1;
  display: inline-block;
  position: absolute;
  width: 200.25px;
  height: 205.45px;
  /* left: 418.16px; */
  /* top: 989.17px; */
  background: #F3CD0C33;
  filter: blur(100px);
  transform: rotate(15deg);
}

/* scrollbar page css */

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #110222;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* inner pages banner css start here   */
.topline {
  display: flex;
  align-items: center;
}

.linestyle {
  width: 120px;
  height: 1px;
  margin-right: 20px;
  background: #fff;
}

.topline h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 7px;
}

.textwithcircle h2 {
  font-size: 60px;
  font-weight: 700;
  display: inline-block;
}

.textwithcircle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 555px;
  margin: 90px 0px 60px;
}

.textwithcircle h2 {
  font-size: 52px;
  font-weight: 700;
  display: inline-block;
}

.textwithcircle .heading-round {
  position: absolute;
  width: 100%;
  top: -80px;
  min-height: 220px;
}

.weight800 {
  font-weight: 800 !important;
}

.weight500 {
  font-weight: 500 !important;
}

.bannerheadig {
  font-size: 60px !important;
  display: block;
  line-height: 80px !important;
  font-family: 'Poppins', sans-serif !important;
}

.innerbanner {
  position: relative;
  padding-top: 180px;
}

.gradienteffect {
  position: absolute;
  top: -150px;
  left: 100px;
  width: 900px;
  z-index: -1;
}

.device {
  width: 800px;
  margin: 30px 0px;
}

.leftspace {
  padding-left: 250px;
}

.leftsidesec img {
  width: 60px;
  position: absolute;
  left: 10px;
  bottom: -120px;
}

.leftsidesec p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  transform: rotate(-90deg);
  position: absolute;
  top: 50px;
  left: -80px;
  margin: 0;
}

.textwithcircle2 {
  width: 710px;
}

.textwithcircle2 .heading-round {
  top: -69px;
}

.textwithcircle3 {
  width: 360px;
}

.vueframe {
  bottom: 100px !important;
}

.iotframe {
  bottom: 30px !important;
}

.protfolioline h6 {
  font-size: 17px;
  letter-spacing: 4px;
}

.portfoliosec {
  margin-top: 70px;
}

/* ------------------------------------ */

/* Grow your business section start here  */

.growsecbg {
  background: #0B0315;
  padding: 20px 40px;
  margin-bottom: 70px;
  border-radius: 25px;
}

.contentbox h2 {
  font-weight: 500;
  font-family: 'Poppins';
}

.contentbox h4 {
  color: #FAFF00;
  margin: 20px 0px 0px;
}

.line1 {
  width: 430px;
  height: 1px;
  background: #FAFF00;
  display: block;
  margin: 10px auto 2px;
}

.line2 {
  width: 450px;
  height: 1px;
  background: #FAFF00;
  display: block;
  margin: 0 auto;
}

.contentbox {
  background: #FF2200;
  position: relative;
  text-align: center;
  padding: 30px;
  margin-bottom: 80px;
  border-radius: 20px;
}

.contentbox img {
  position: absolute;
  width: 250px;
  right: 0px;
  bottom: -50px;
}

.growlist {
  position: relative;
}

.growlist li {
  font-size: 18px;
  color: #fff;
  list-style: none;
  padding-left: 20px;
  line-height: 28px;
  margin-bottom: 26px;
}

.growlist li img {
  width: 30px;
  position: absolute;
  left: 0px;
}

.growlist li span {
  color: #00FFFF;
  text-decoration: underline;
}

.widgets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #826BA4;
  border-bottom: 1px solid #826BA4;
  padding: 30px 0px;
  text-align: center;
}

.widgets p {
  margin-bottom: 0px;
  line-height: 20px;
  font-size: 16px;
  margin-top: 5px;
}

.widgets h4 {
  font-size: 22px;
}

/* ----27-04-2023--css-- */
.form_a_request {
  background: #1F1238;
  border-radius: 35px;
  padding: 45px 30px;
}

.form_a_request h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form_a_request .contactform .form-group label {
  font-size: 15px;
  display: none;
}

.form_a_request .contactform .form-group .form-control {
  font-size: 14px;
}

.form_a_request .contactform .form-group input::placeholder {
  font-size: 14px;
}

.hire_dp {
  background: linear-gradient(94.12deg, #9945FF -2.78%, #00E0FF 76.3%, #00FF77 103.32%);
  padding: 15px 30px;
  border-radius: 20px;
  max-width: 520px;
  text-align: center;
  margin: auto;
}

.hire_dp p {
  font-size: 22px;
  font-weight: 600;
  color: #100222;
  margin: 0;
}

.main-slider.request_q_sec h2 {
  font-size: 42px;
  font-weight: 600;
}

.main-slider.request_q_sec h2 .small_text {
  font-size: 22px;
  font-weight: 400;
  display: block;
  padding-bottom: 5px;
}

.main-slider.request_q_sec .spanstyle2 {
  font-size: 22px;
  font-weight: 400;
}

.main_flat_mb .flatesec_mb a {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
}

.main_flat_mb {
  padding: 0 0 80px;
}

.Plan_lists ul {
  list-style: none;
  display: flex;
  width: 100%;
  padding: 0;
}

.Plan_lists ul li {
  width: 50%;
  padding: 0px 15px 15px 0px;
}

.Plan_lists ul li:last-child {
  padding: 0px 0px 15px 0px;
}

.plan_card {
  background: radial-gradient(circle at 100% 100%, #0f0220 0, #0f0220 6px, transparent 6px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #0f0220 0, #0f0220 6px, transparent 6px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #0f0220 0, #0f0220 6px, transparent 6px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #0f0220 0, #0f0220 6px, transparent 6px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#0f0220, #0f0220) 50% 50%/calc(100% - 4px) calc(100% - 16px) no-repeat,
    linear-gradient(#0f0220, #0f0220) 50% 50%/calc(100% - 16px) calc(100% - 4px) no-repeat,
    repeating-linear-gradient(90deg, #9945ff 0%, #00e0ff 49%, #00FF77 100%);
  border-radius: 8px;
  padding: 2px;
  box-sizing: content-box;
}

.line_plan {
  height: 2px;
  width: 100%;
  display: block;
  background: -moz-linear-gradient(left, rgb(153, 69, 255) 0%, rgb(0, 224, 255) 50%, rgb(0, 255, 119) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgb(153, 69, 255) 0%, rgb(0, 224, 255) 50%, rgb(0, 255, 119) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(153, 69, 255) 0%, rgb(0, 224, 255) 50%, rgb(0, 255, 119) 100%);
}

.plan_card .head_plan {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.plan_card .head_plan h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.head_info {
  padding: 40px;
}

.amt_plan {
  text-align: center;
}

.amt_plan .show_amt {
  font-size: 30px;
  font-weight: 600;
  color: #2EDCCF;
}

.amt_plan h5 {
  margin-bottom: 3px;
}

.amt_plan h6.show_amt {
  font-size: 22px;
  margin: 0;
  color: rgb(255 255 255 / 65%);
  font-weight: 400;
  text-decoration: line-through;
}

.amt_plan .show_amt sub {
  bottom: 1px;
  font-size: 15px;
  font-weight: 500;
}

.plan_card .head_info p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
  min-height: 155px;
}

.head_info .btn {
  font-size: 24px;
  color: #0F0223;
  font-weight: 600;
  height: 52px;
  line-height: 52px;
  padding: 0 15px;
  text-align: center;
  border-radius: 25px;
  width: 100%;
  margin-bottom: 30px;
}

.head_info h6 {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
}

.plan_card .head_plan h4 span.spanstyle1 {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

.main_flat_mb .titletext.text-center {
  margin-bottom: 50px;
}

.hr_matters_banner {
  padding: 20px 0px 100px 0px;
}

.hr_matters_banner a {
  display: inline-block;
}

.mobi_app_dev_sec .home-services-inners .services-content {
  padding: 12% 25% 10% 8%;
}

.mobi_app_dev_sec .services-title-main .services-title .services-title-ui span .services-title-a {
  display: block;
  width: 135%;
  margin-left: -35%;
}

.set_mobile_view .set_mobile_none {
  display: none;
}

a.mobile_view_flat .webimg1 {
  display: none;
}

.contact_card_box {
  background: #1F1238;
  border-radius: 45px;
  max-width: 82%;
  margin: auto;
}

.head_contact {
  background: #271A40;
  padding: 42px;
  border-radius: 40px 40px 0px 0px;
}

.new_ui_contact .contactform {
  width: 100%;
  margin: 0 auto;
  padding: 55px 90px;
}

.contact_card_box h4 {
  font-size: 32px;
  font-weight: 600;
}

.request_info_sec {
  padding: 100px 0 50px 0;
}

.request_info_sec h4.contactdnone {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 3rem;
}

.request_info_sec .contact_details_newline {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.request_info_sec .contact_details_newline .contactcard {
  box-shadow: none;
  border-right: 1px solid #444A65;
  border-radius: 0;
}

.request_info_sec .contact_details_newline .contactcard:last-child {
  border: none;
}

.request_info_sec .contact_details_newline .contactcard::after {
  display: none;
}

.contact_details_newline .contactdetails li a {
  text-align: center;
}

.contact_details_newline .contactdetails li {
  flex-direction: column;
}

.contact_details_newline .contactdetails li img {
  margin-right: 0;
}

.contact_details_newline .contactdetails li span {
  font-size: 12px;
  display: block;
  padding-left: 0;
  line-height: 1;
}

.contact_details_newline .contactdetails {
  padding: 0px;
  list-style: none;
  margin: 15px 0px 30px;
}

.contact_details_newline .contactdetails address {
  max-width: 240px;
}

.trends_sub_mit {
  text-align: center;
}

.new_ui_contact .form-group label {
  display: none;
}

.new_ui_contact .gradientbutton .btnstyle1 {
  border: none;
}

.trends_check_box p {
  margin: 0;
  padding: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #999A9D;
  text-transform: capitalize;
}

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

.add_number input {
  max-width: 160px;
  margin: 0 15px 0;
  height: 42px;
}

.add_number input:focus-visible {
  box-shadow: none;
  border: 1px solid #34334e;
}

.captcha_sec .add_number {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-right: 15px;
  display: flex;
  align-items: center;
  position: relative;
}

.services-title-main .services-title .services-title-ui span .services-title-a .icon-box {
  min-width: 45px;
  max-width: 45px;
  display: block;
}

.add_number p#question {
  letter-spacing: 1px;
}

div#message {
  padding: 3px 0px 0 15px;
  font-size: 14px;
  font-weight: 200;
}

.add_number .wrongCaptcha {
  padding: 3px 0px 0 15px;
  font-size: 14px;
  font-weight: 200;
  color: #ff2f00;
  position: absolute;
  bottom: -32px;
  left: 68px;
}

.add_number .rightCaptcha {
  padding: 3px 0px 0 15px;
  font-size: 14px;
  font-weight: 200;
  color: #00FF77;
  position: absolute;
  bottom: -32px;
  left: 68px;
}

.inner_valid_text input {
  border-radius: 0.25rem;
}

.inner_valid_text input:focus-visible {
  outline: none;
  border-radius: 0.25rem;
}

.contactform .form-group input::placeholder {
  color: #9EA1B0;
}

.contactform .form-group input::placeholder {
  color: #9EA1B0;
}

.countrycode select.form-control {
  background-image: none;
}

select.form-control {
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%), radial-gradient(#cb323200 70%, transparent 72%);
  background-position: calc(100% - 20px) calc(1.5em + 2px), calc(100% - 14px) calc(1.5em + 2px), calc(100% - 0.5em) 0.5em;
  background-size: 6px 7px;
  background-repeat: no-repeat;
}

.mb_app_heading {
  margin-bottom: 6rem;
}

.mb_app_heading .mobile_text {
  display: block;
  padding-bottom: 5px;
}

.mb_app_heading .spanstyle1 {
  display: block;
  padding-bottom: 6px;
}

.contactform .captcha_sec input[type=number] {
  outline: none;
}

.specific_entity {
  padding-left: 10px;
}

.service-inner-div a {
  display: block;
}

.col-lg-6.form-group.cuntry_full {
  width: 100%;
}

.col-lg-6.form-group.learn_full {
  width: 100%;
}

h2.mb-5.titletext.new_title_cont {
  line-height: 40px;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 60px !important;
}

.new_let_hello .new_let_in {
  display: block;
  font-size: 30px;
  font-weight: 400;
}

.new_let_hello .new_hello_in {
  display: block;
  font-size: 86px;
  font-weight: bold;
}

.mb_app_heading_new {
  text-align: center;
  width: 100%;
  margin-bottom: 7rem;
}

.mb_app_heading_new .d-flex {
  align-items: center;
  margin-bottom: 28px;
  justify-content: center;
  width: 100%;
}

.mb_app_heading_new .d-flex .small_text {
  font-size: 38px;
  font-weight: 400;
  display: block;
  padding-bottom: 0px;
  color: #fff;
  line-height: initial;
}

.textwithcircle_new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 365px;
  margin: 20px 0px 10px;
}

.mb_app_heading_new .textwithcircle_new h1.spanstyle1 {
  margin: 0;
  margin-bottom: 0;
  color: #fff;
  opacity: 1;
  visibility: visible;
  font-size: 52px;
  line-height: initial;
  text-transform: capitalize;
  font-weight: 600;
}

.mb_app_heading_new h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mb_app_heading_new h2 span.spanstyle2 {
  font-size: 42px !important;
  font-weight: 600 !important;
  position: relative;
}

.mb_app_heading_new h2 span.spanstyle2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #00f6a1, #00e4fd, #6988ff, #a060fd);
}

.mb_app_heading_new h2 span.small_text {
  font-size: 24px !important;
  font-weight: 400 !important;
  margin: 0 10px !important;
}

.mb_app_heading_new h3 .mobile_text {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.textwithcircle_new .heading-round {
  position: absolute;
  width: 100%;
  top: -80%;
}

.mainlisting li a {
  background: linear-gradient(to right, #FF5C00, #FFCC00, #00E0FF);
  background-size: 200% 200%;
  animation: rainbow 2s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all .3s ease-in-out;
  transition-duration: .4s;
  display: inline-flex;
}

.mainlisting li a:hover {
  color: rgba(0, 0, 0, 0);
  transform: scale(1.02);
}

@keyframes rainbow {
  0% {
    background-position: left
  }

  50% {
    background-position: right
  }

  100% {
    background-position: left
  }
}

/* ---12-05--- */
.white_bg {
  background: #fff;
}

/* .white_bg .page-wrapper{overflow: hidden;} */
.inner_overfl {
  overflow: hidden;
}

.eql_btn {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0px 30px;
  border-radius: 30px;
  background: #8755C9;
}

.eql_btn:hover {
  color: #fff;
  background: #7f51bd;
}

.eql_btn .fa-arrow-right {
  padding-left: 5px;
}

.btn_yellow {
  background: #FFDF00;
  color: #43054C;
  font-weight: 600;
}

a.btn_yellow:hover {
  background: #FFDF00;
  color: #43054C;
}

.common_ui_hire button.btnstyle1 {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0px 30px;
  border-radius: 30px;
  background: #8755C9;
  border: 1px solid #8755C9;
  outline: none;
}

.common_ui_hire button.btnstyle1:focus-visible {
  outline: 1px solid #8755C9;
}

.get_offer_sec {
  background-image: url(../img/offer-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.offer_card {
  padding: 10px 0;
}

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

.title_hire .d-flex {
  display: flex !important;
  align-items: center;
}

img.time-offer {
  max-width: 10%;
}

.get_offer_sec.mt-4 {
  margin-top: 7.5rem !important;
}

.title_hire_in {
  text-align: center;
  padding-left: 1rem;
  line-height: 26px;
  display: flex;
  align-items: center;
}

.title_hire_in h2 {
  display: flex;
  align-items: center;
  line-height: inherit;
  font-weight: 600;
  font-size: 24px;
  margin: 0px 5px 0px 0px;
  color: #fff;
}

.title_hire_in h3 {
  display: flex;
  align-items: center;
  line-height: inherit;
  justify-content: center;
  color: #fff;
}

.thn_font {
  font-size: 24px;
  font-weight: 300;
  display: block;
  margin-right: 5px;
}

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

span.thn_yline {
  color: #FFDF00;
  font-weight: 400;
  text-decoration: line-through;
  display: block;
  margin-right: 5px;
  font-size: 24px;
}

span.thn_ybold {
  color: #FFDF00;
  font-weight: 600;
  display: block;
  font-size: 24px;
}

.get_touch_sec {
  border-bottom: 1px solid #D6D6D6;
}

.getqry_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
}

.getqry_hire {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.get_qry_bx {
  position: relative;
  padding-right: 25px;
}

/* span.title_getqry {
  font-size: 14px;
  color: #424242;
  display: block;
  position: absolute;
  left: 49px;
  top: -15px;
  font-weight: 400;
} */
span.title_getqry {
  font-size: 14px;
  color: #424242;
  display: block;
  font-weight: 400;
  width: 100%;
  text-align: center;
  width: 83%;
}

.get_qry_bx a {
  display: flex;
  align-items: flex-end;
}

.get_qry_bx a img {
  max-width: 36px;
  margin-right: 8px;
}

span.number_getqry {
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-left: 5px;
  line-height: 18px;
}

a.get_hr_logo {
  display: block;
  max-width: 160px;
}

.ranked_head {
  text-align: center;
}

.overflow_in {
  overflow: hidden;
}

section.ranked_q_sec {
  padding: 60px 0;
  position: relative;
}

section.ranked_q_sec::after {
  content: "";
  width: 412px;
  min-width: 412px;
  height: 433px;
  position: absolute;
  top: -17%;
  left: -37px;
  background: pur;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

section.ranked_q_sec::before {
  content: "";
  width: 670px;
  min-width: 670px;
  height: 710px;
  position: absolute;
  top: -16%;
  right: -16%;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.ranked_head h3 {
  font-size: 38px;
  font-weight: 600;
  color: #E74F2F;
  margin-bottom: 15px;
}

.ranked_head h6 {
  font-size: 24px;
  font-weight: 400;
  color: #171717;
  font-style: italic;
  text-transform: capitalize;
  margin-bottom: 45px;
}

.ranked_dp figure {
  width: 100%;
  border-radius: 15px;
  background: #8755C9;
  margin: 0;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranked_dp figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.form_a_ranked {
  background: #FFFFFF;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 30px;
}

.form_a_ranked h4 {
  font-size: 28px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 30px;
  text-align: center;
  width: 100%;
}

.form_a_ranked .col-lg-6.form-group.learn_full {
  display: none;
}

.form_a_ranked .form-group.for_line02 {
  display: none;
}

.form_a_ranked .form-group.for_line03 {
  display: none;
}

.checking_checkbtn .form-check {
  display: flex;
  align-items: center;
  width: 100%;
}

.checking_checkbtn label.form-check-label {
  font-size: 13px;
  color: #171717;
  font-weight: 500;
  line-height: initial;
  cursor: pointer;
}

.checking_checkbtn label.form-check-label a {
  font-size: 13px;
  color: #171717;
  font-weight: 500;
  text-decoration: underline;
}

.checking_checkbtn .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
  width: 24px !important;
  height: 24px;
  min-width: 24px;
  border: 1px solid #DCDCDC;
  padding: 0px;
  margin-top: 16px;
  margin-right: 10px;
}

.col-lg-12.for_line04 {
  display: none;
}

.form_a_ranked .col-lg-12.for_line04 {
  display: block;
}

.form_a_ranked .trends_check_box {
  display: none;
}

.common_ui_hire .form-control {
  border-radius: 0;
  border: 1px solid #DCDCDC;
  color: #171717 !important;
}

.common_ui_hire .form-control::placeholder {
  color: #9EA1B0;
}

.form_a_ranked .col-lg-6.form-group.for_line01 {
  width: 100%;
}

.common_ui_hire .form-group .countrycode select {
  color: #171717;
}

.common_ui_hire .contactform select {
  color: #171717;
}

.valid_until {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  font-style: italic;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.form_a_ranked .trends_sub_mit.mt-4 {
  margin-top: 0.5rem !important;
}

.common_ui_hire select.form-control {
  background-image: linear-gradient(45deg, transparent 50%, #171717 50%), linear-gradient(135deg, #171717 50%, transparent 50%), radial-gradient(#cb323200 70%, transparent 72%);
  background-position: calc(100% - 20px) calc(1.5em + 0px), calc(100% - 14px) calc(1.5em + 0px), calc(100% - 0.5em) 0.5em;
  background-size: 6px 7px;
  background-repeat: no-repeat;
}

.common_ui_hire .countrycode select.form-control {
  background-image: none;
}

.card_ratings .footericons {
  display: flex;
  align-items: center;
}

.card_ratings .footericons li {
  width: 16.66%;
  display: flex;
  padding: 10px;
}

.card_ratings .footericons li a figure {
  width: 100%;
  height: 95px;
  margin-bottom: 3px;
}

.card_ratings .footericons li a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.rate_here {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_ratings .footericons a {
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  text-align: center;
  padding: 15px 10px;
  width: 100%;
  transition: transform .3s;
}

.card_ratings .footericons a:hover {
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.18);
  transform: scale(1.03);
}

.card_ratings .footericons a img {
  height: auto;
  object-fit: initial;
  margin-right: 0;
  filter: none;
}

.rate_here svg {
  margin-right: 3px;
  max-width: 16px;
}

.title_dev_hire h3 {
  font-size: 38px;
  font-weight: 600;
  color: #171717;
  text-align: center;
  margin-bottom: 35px;
}

.our_stats_sec {
  background-image: url(../img/our-state-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 650px;
  display: flex;
  align-items: center;
  margin-top: -20px;
  position: relative;
}

.our_stats_sec::after {
  content: "";
  width: 360px;
  height: 360px;
  background: transparent;
  border: 48px solid #F9F9F9;
  position: absolute;
  left: -100px;
  top: 20px;
  border-radius: 50%;
  z-index: -1;
}

ul.stats_rat_list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.stats_rat_list li article {
  text-align: center;
}

.stats_rat_list li article h5 {
  font-size: 38px;
  font-weight: 600;
  color: #8755C9;
  margin: 14px 0 7px 0;
  line-height: 30px;
}

.stats_rat_list li article figure {
  height: 32px;
  margin: 0;
}

.stats_rat_list li article figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.stats_rat_list li article p {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  margin: 0;
  position: relative;
  text-transform: capitalize;
}

.stats_rat_list li article p::after {
  content: "";
  background: #171717;
  height: 2px;
  width: 35px;
  display: flex;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.our_stats_sec .title_dev_hire h3 {
  margin-bottom: 35px;
}

.our_stats_sec .container {
  padding-top: 8%;
}

.media_coverage_list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.media_coverage_list li {
  padding: 15px;
}

.media_coverage_list li:first-child {
  padding-left: 0;
}

.media_coverage_list li:last-child {
  padding-right: 0;
}

.media_coverage_list li a {
  display: block;
}

.media_coverage_list li a img {
  width: 80%;
}

section.media_coverage_sec {
  padding: 0px 0 60px 0;
  position: relative;
}

section.media_coverage_sec::after {
  content: "";
  width: 462px;
  min-width: 462px;
  height: 493px;
  position: absolute;
  top: -48%;
  left: -30px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.media_coverage_sec .title_dev_hire h3 {
  margin-bottom: 35px;
}

#cluchId .title_dev_hire h3 {
  margin-bottom: 35px;
}

.white_bg .workwedo .heading_div {
  width: 44%;
}

.white_bg .workwedo .heading_div .titletext {
  color: #171717;
  text-transform: inherit;
  font-weight: 400;
  padding: 0px 10%;
  line-height: 40px;
  font-size: 32px;
}

.white_bg .workwedo .heading_div .titletext .gradient-text-style2 {
  color: #8755C9;
  background-image: none;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  font-weight: 400;
}

.white_bg .workwedo .heading_div .gradient-text {
  background-image: none;
  -webkit-background-clip: inherit;
  color: #8755C9;
  font-size: 18px;
  font-weight: 400;
  -webkit-text-fill-color: inherit;
  background-color: inherit;
}

.white_bg .secret-video-div h2 {
  color: #171717;
  margin: 0;
}

.white_bg .contentarea h3 {
  color: #171717;
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 400;
}

.new_w_form .new_let_hello {
  color: #171717;
}

.white_bg .custombadge {
  background: #EDEDED;
  width: 80px;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  font-size: 14px;
  color: #8755c9;
  margin-left: 25px;
}

.white_bg .gradient-text {
  background-image: none;
  -webkit-background-clip: inherit;
  color: #8755C9;
  -webkit-text-fill-color: inherit;
  background-color: inherit;
  font-weight: 400;
}

.white_bg .secret-video-div {
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
}

.white_bg .custombadge.ms-0.mt-3 {
  margin-left: 20px !important;
}

.white_bg .socialic li a {
  color: #171717;
}

.white_bg .whatwedo .titletext.spanstyle1 {
  background-image: none;
  -webkit-background-clip: inherit;
  color: #8755C9;
  -webkit-text-fill-color: inherit;
  background-color: inherit;
  font-weight: 600;
  text-transform: inherit;
}

.white_bg .whatwedo .titletext.spanstyle2 {
  background-image: none;
  -webkit-background-clip: inherit;
  color: #8755C9;
  -webkit-text-fill-color: inherit;
  background-color: inherit;
  font-weight: 600;
  text-transform: inherit;
}

.white_bg .whatwedo ul li {
  color: #424242;
}

.white_bg .whypairroxlanding {
  background: #F5F1FF;
  padding: 80px 0px;
}

.white_bg .workwedo.whypairroxlanding .heading_div.wow.fadeInRight {
  width: 70%;
}

.white_bg .ptext3 {
  color: #424242;
}

.white_bg .bestbox {
  background: transparent;
}

.white_bg .bestbig {
  background: #8755c9;
  color: #fff;
}

.white_bg .bestbig h2.titletext {
  color: #fff !important;
  margin: 0;
  font-weight: 500;
  font-size: 38px;
  line-height: 52px !important;
}

.white_bg .bestsmall .ptext3.spanstyle1 {
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  color: #8755c9 !important;
}

.white_bg .contactussec {
  display: flex;
  flex-wrap: wrap;
  background: transparent;
}

.white_bg .contactussec .contactform {
  background: #fff;
}

.new_w_form .contacttext .mb-5.titletext.new_title_cont {
  color: #424242 !important;
}

.new_w_form .dymond4 {
  display: none;
}

.new_w_form .captcha_sec .add_number {
  font-size: 18px;
  font-weight: 400;
  color: #424242;
}

.new_w_form .texture-style {
  background: repeating-linear-gradient(-45deg, #d7d7d7, #ffffff 5px, #ffffff 5px, #ffffff 6px);
}

.white_bg .bright {
  border-right: 1px solid #CBCACD;
}

.new_w_form .contactussec .contacttext {
  border-right: 1px solid #CACACA;
}

.new_w_form .border {
  border: 1px solid #CACACA !important;
}

.new_w_form .border-end,
.border-start,
.border-top,
.border-bottom {
  border-color: #CACACA !important;
}

.white_bg .home-services-inners {
  background-color: #F5F1FF;
  margin-bottom: 0;
}

.white_bg .home-services-inners .titletext {
  color: #171717;
}

.mobi_white_dev_sec .services-title-a.mobile-app-services:before {
  background: #fff;
}

.mobi_white_dev_sec .icon-box {
  color: #171717;
}

.mobi_white_dev_sec .position-relative .title {
  color: #171717;
}

.mobi_white_dev_sec .cardp {
  color: #424242;
}

.white_bg .services-title-main .services-title .services-title-ui span .services-title-a .title {
  color: #171717;
  font-weight: 600;
  font-size: 20px;
}

.white_bg .mobile-app-services.services-title-a {
  background: inherit !important;
  border: 1px solid #8755c9;
}

.white_bg .mobile-app-services.services-title-a.active {
  background: inherit !important;
  border: 1px solid #8755c9;
}

.white_bg .services-title-main .services-title .services-title-ui span.active .services-title-a:before {
  background: #8755c9 !important;
  transition: 2s all !important;
  z-index: 0 !important;
}

.white_bg .services-title-main .services-title .services-title-ui span.active .services-title-a .title {
  color: #fff;
}

.white_bg .services-title-main .services-title .services-title-ui span.active .services-title-a .cardp {
  color: #fff;
}

.white_bg .services-title-main .services-title .services-title-ui span.active .icon-box {
  color: #fff;
}

.white_bg .services-title-main .services-title .services-title-ui span .services-title-a:before {
  top: 0;
  left: 0;
  margin: 0;
  content: '';
  position: absolute;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
}

.common_ui_hire .gradientbutton {
  background: none;
  padding: 0px;
  border-radius: 30px;
  display: inline-block;
}

.white_bg .gradientbutton {
  background: inherit;
  padding: 0;
  border-radius: 0;
  display: inline-block;
}

.white_bg .gradientbutton .btnstyle1 {
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #8755c9;
  min-width: 130px;
}

.text_re_per {
  font-size: 20px;
  font-weight: 400;
  color: #8755C9;
  text-align: center;
  max-width: 75%;
  margin: 25px auto 0;
}

.white_bg #clutch .bestsmall p.ptext3 {
  font-size: 18px;
  font-weight: 400;
}

.white_bg .startaproejct {
  display: none;
}

.white_bg .new_w_form {
  padding: 120px 0 0;
  position: relative;
}

.white_bg .new_w_form::after {
  content: "";
  width: 443px;
  min-width: 443px;
  height: 443px;
  position: absolute;
  bottom: -12%;
  left: 13px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.common_ui_hire .contactform .captcha_sec input[type=number] {
  outline: none;
  border: 1px solid #DCDCDC;
  color: #171717 !important;
}

.white_bg .whatwedo ul li {
  list-style: none;
  padding: 10px 0px 10px 20px;
  display: flex;
  align-items: flex-start;
}

ul.listnumber {
  counter-reset: list-number;
}

ul.listnumber li:before {
  counter-increment: list-number;
  content: counter(list-number);
  margin-right: 15px;
  margin-bottom: 5px;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #D9D8DA;
  color: #171717;
  font-size: 20px;
  font-weight: 600;
  border-radius: 25px 25px 25px 0px;
}

.title_hire .btn_yellow {
  min-width: 160px;
  padding: 0px;
}

.getqry_hire .btn.eql_btn {
  min-width: 160px;
}

.checking_checkbtn input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #9ea1b0 !important;
  border-radius: 0 !important;
  margin-right: 5px !important;
}

.checking_checkbtn .form-check {
  padding-left: 0;
}

.checking_checkbtn .form-check input {
  margin: 0;
}

.form_a_ranked.common_ui_hire .col-lg-12.for_line04 {
  margin: 15px 0 30px;
}

.footericons li:nth-child(5) a figure img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.14));
}

.card_ratings {
  padding: 0px 5%;
  z-index: 2;
  position: relative;
}

.cluchId_bg {
  position: relative;
}

.cluchId_bg::before {
  content: "";
  width: 530px;
  min-width: 530px;
  height: 530px;
  position: absolute;
  top: 30px;
  right: -10%;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .services-title-main .services-title .services-title-ui span .services-title-a .icon-box {
  min-width: 40px;
  max-width: 40px;
  display: block;
}

.white_bg .icon-box {
  font-size: 68px;
}

.white_bg .workwedo {
  position: relative;
}

.white_bg .workwedo::after {
  content: "";
  width: 462px;
  min-width: 462px;
  height: 493px;
  position: absolute;
  top: 29px;
  left: -90px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .workwedo::before {
  content: "";
  width: 612px;
  min-width: 612px;
  height: 643px;
  position: absolute;
  bottom: 9%;
  right: -53px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .hr_matters_banner a {
  display: inline-block;
  box-shadow: 0 0px 8px rgba(0, 0, 0, .09);
}

.white_bg .secret-video-div .custombadge.ms-0.mt-3 {
  margin-left: 20px !important;
  margin-top: 0px !important;
}

.white_bg .ptext {
  font-size: 14px;
  line-height: 26px;
  color: #424242;
  font-weight: 400;
  margin-bottom: 15px;
}

.white_bg .whatwedo {
  position: relative;
}

.white_bg .whatwedo::after {
  content: "";
  width: 462px;
  min-width: 462px;
  height: 493px;
  position: absolute;
  bottom: -30px;
  left: -90px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .whatbest {
  position: relative;
}

.white_bg .whatbest .bestsmall {
  background: #F5F1FF;
  border-radius: 0px 20px 20px 0px;
}

.white_bg .whatbest::after {
  content: "";
  width: 412px;
  min-width: 412px;
  height: 443px;
  position: absolute;
  top: -70%;
  left: -40px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .whatbest::before {
  content: "";
  width: 543px;
  min-width: 543px;
  height: 543px;
  position: absolute;
  bottom: -78%;
  right: -88px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg .service-main::after {
  content: "";
  width: 462px;
  min-width: 462px;
  height: 493px;
  position: absolute;
  top: -10%;
  left: -90px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.white_bg ul.listnumber {
  padding-left: 0;
}

.white_bg .common_ui_hire .form-control {
  height: 45px;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 15px;
}

.white_bg .common_ui_hire .form-control::placeholder {
  font-size: 13px;
  font-weight: 400;
}

.white_bg .contactform textarea.form-control {
  height: 100px;
  padding: 15px;
}

.get_hr_icon {
  display: none;
}

.phone_icon_tp {
  display: none;
}

.get_mail_bx span.title_getqry1 {
  font-size: 14px;
  color: #424242;
  display: block;
  font-weight: 400;
  margin: 0;
  line-height: 11px;
}

.get_mail_bx a {
  display: flex;
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  align-items: flex-start;
}

.get_mail_bx a img {
  width: 46px;
  margin-right: 10px;
}

.getqry_hire_card {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 5px;
  line-height: initial;
}

.white_bg .new_w_form .texture-style {
  display: none;
}

.white_bg .contactussec .contactform {
  padding: 3rem 3rem 3rem;
  position: relative;
}

/* ----white_theme css here----- */
.white_theme {
  background: #fff;
  color: #222222;
}

.show_white_theme .show_white {
  display: none;
}

.white_theme .show_white_theme .show_dark {
  display: none;
}

.white_theme .show_white_theme .show_white {
  display: block;
}

.white_theme .main-header {
  border-bottom: 1px solid #D4D4D4;
  padding: 15px 0;
}

.white_theme .main-header.sticky {
  background: #fff;
}


.white_theme .warning_header_text {
  color: #252525;
}

.white_theme .main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  color: #252525;
}

.white_theme .site-footer .usa-add-div h6 {
  background-size: 100%;
  background-repeat: repeat;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
}

.white_theme .startaproejct.wayz_startaproejct {
  padding: 50px 0 0 !important;
}

.white_theme .startaproejct {
  padding: 20px 0px 0;
  text-align: center;
}

.white_theme .titletext {
  color: #222;
  text-align: center;
}

.white_theme .blog-one__content {
  padding: 20px;
}

.white_theme .blog-one__content h4 {
  color: #000;
}

.white_theme p.ptext {
  font-size: 14px;
  min-height: 135px;
}

.white_theme .contactusform {
  display: none;
}

.white_theme .site-footer__middle {
  position: relative;
  display: block;
  padding: 30px 0px 30px;
  z-index: 1;
}

.white_theme .site-footer__middle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
}

.white_theme .site-footer .address-row {
  margin: 20px 0 0;
}

.white_theme .location_icon_pp {
  display: block;
  margin-right: 4px;
  width: 13px;
  height: 17px;
  top: 3px;
  position: relative;
}

.white_theme .site-footer__middle-inner .col-xl-3.col-lg-4.col-md-4.linkslist h6 .img-fluid {
  display: none;
}

.white_theme img.logo_black {
  display: block;
}

.white_theme .img-fluid.flogo {
  display: none;
}

.white_theme .gradient-text {
  background-size: 100%;
  background-repeat: repeat;
  background: linear-gradient(94.12deg, #FF5C00 -2.78%, #FFCC00 53.3%, #00E0FF 103.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white_theme .footer-widget__links-list li a {
  color: #000;
}

.white_theme .footer-widget__about-contact li .text a {
  color: #000;
}

.white_theme .footersocial a {
  color: #000;
}

.white_theme .footer-widget__about-text a {
  color: #000;
}

.white_theme .site-footer__bottom-text {
  color: #000;
}

.white_theme .site-footer__bottom-menu li a {
  color: #000;
}

.white_theme .show_white.img-fluid {
  display: none;
}

.white_theme .show_dark {
  display: block;
}

.show_dark {
  display: none;
}

.logo_black {
  display: none;
}

.location_icon_pp {
  display: none;
}

/* ----End white_theme css----- */

span.title_getqry1 {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 5px;
}

.ranked_dp {
  text-align: center;
}

.ranked_dp video {
  max-width: 75%;
  margin: auto;
  border-radius: 15px;
  min-height: 490px;
}

.btn_slateblue {
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0px 24px;
  background: #8755c9;
  border-radius: 24px;
  border: none;
  color: #fff;
  font-weight: 500;
}

.btn_slateblue:hover {
  background: #884ed3;
}

.card_ratings .text-center.pt-4 .btn_slateblue {
  min-width: 165px;
}

/* .new_eatbyapp_form .videosec {
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-right: none;
  height: 550px;
} */
section.new_eatbyapp_form {
  padding-top: 60px;
}

section.new_eatbyapp_form .pt-4 {
  padding-top: 35px !important;
}

section.new_eatbyapp_form .btn_slateblue {
  min-width: 165px;
}

.white_bg .whatwedo::before {
  content: "";
  width: 482px;
  min-width: 482px;
  height: 482px;
  position: absolute;
  bottom: 10px;
  right: -60px;
  background: #F6EFFF;
  border-radius: 50%;
  filter: blur(100px);
  transform: rotate(15deg);
  z-index: -1;
}

.us_mob_devpage iframe#ytplayer_secret {
  height: 550px;
}

.us_mob_devpage iframe#ytplayer {
  height: 550px;
}

.modal_ranked .modal-dialog {
  max-width: 900px;
}

.modal_ranked .modal-content {
  border: none;
  background: #FFFFFF;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 30px;
}

.modal_ranked .modal-header {
  padding: 0;
  border-bottom: none;
}

.modal_ranked .form_a_ranked {
  background: #FFFFFF;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.modal_ranked .btn-close {
  position: absolute;
  top: -15px;
  right: -40px;
  filter: invert(1);
  -webkit-filter: invert(1);
  opacity: 1;
  background-size: 100%;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  transition: transform .7s ease-in-out;
}

.modal_ranked .btn-close:hover {
  transform: rotate(360deg);
}

.in_modal_ranked .col-lg-6.form-group.cuntry_full {
  width: 50%;
}

.in_modal_ranked .col-lg-6.form-group.cuntry_full input {
  width: 100%;
}

.in_modal_ranked .col-lg-6.form-group.cuntry_full #countryCode {
  display: none;
}

.in_modal_ranked .col-lg-6.form-group.for_line01 {
  width: 50%;
}

span.valid_until_tx {
  font-size: 13px;
  text-align: center;
  width: 100%;
  display: block;
  padding-top: 10px;
  font-weight: 400;
}

.in_modal_ranked .contactform .form-group.for_line02 {
  display: block !important;
}

.in_modal_ranked .col-lg-6.form-group.for_line02 {
  width: 100%;
}

.in_modal_ranked .common_ui_hire h4 {
  font-size: 24px;
  color: #171717;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.modal_ranked .modal-body {
  padding: 0;
}

.modal_ranked .col-lg-12.trends_sub_mit.mt-4 {
  margin-top: 5px !important;
}

.modal_ranked .trends_check_box p {
  padding: 10px 0 0;
  font-size: 13px;
}

.modal_ranked .white_bg .gradientbutton .btnstyle1 {
  min-width: 130px;
}

.modal_ranked .btn-close:focus {
  box-shadow: none;
}

.testimonial-one-us .border {
  border: 1px solid #cacaca !important;
}

.testimonial-one-us .customtestimonial {
  background: #8755c9;
}

.testimonial-one-us .white_bg .gradient-text {
  color: #f7f7f7;
}

.testimonial-one-us .texture-style {
  background: repeating-linear-gradient(-45deg, #8755c9, #8755c9 5px, #9577bb 5px, #baa8d3 6px);
}

.testimonial-one-us .videosec {
  border-right: 1px solid #cacaca;
}

.white_bg .testimonial-one-us .gradient-text {
  color: #fff !important;
}

.white_bg .preloader {
  background-color: #fff;
}

.us_footers {
  padding: 35px 0px 30px 0px;
  width: 85%;
  margin: auto;
}

.us_footers .title_dev_hire h3 {
  font-size: 32px;
  font-weight: 600;
  color: #171717;
  text-align: center;
  margin-bottom: 10px;
}

.us_footers .title_dev_hire p {
  font-size: 22px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 0px;
  text-align: center;
}

.social_links_us ul {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 30px 0;
}

.social_links_us ul li {
  padding: 5px 10px;
}

.social_links_us ul li a {
  width: 85px;
  min-width: 85px;
  height: 85px;
  background: #FFFFFF;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.expert_develop {
  background: #8755C9;
  border-radius: 15px;
  padding: 35px 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.expert_develop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/expert_develop.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.expert_develop h4 {
  font-size: 28px;
  font-weight: 600;
  padding: 0px 20%;
  margin-bottom: 20px;
  text-align: center;
}

.expert_develop button.btn_slateblue.btnstyle1 {
  background: #fff;
  color: #8755C9;
}

.ct_zindex {
  z-index: 1;
  position: relative;
}

.us_footers .site-footer__bottom-menu li a {
  font-size: 14px;
  color: #8755c9;
  font-weight: 500;
}

.us_footers .site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0px 10px 0px;
}

.us_footers .site-footer__bottom-text {
  font-size: 14px;
  color: #191919;
  margin: 0;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

.startaproejcttext h3 {
  text-transform: capitalize;
}

.white_theme .main-header.sticky {
  box-shadow: 0px 5px 9px rgb(0 0 0 / 9%);
}

.wayz_startaproejct .startaproejcttext h3 a {
  color: #222222;
  font-weight: 700;
}

.herizontalcardhost {
  background: linear-gradient(96.63deg, #FF5E90 0%, #F94877 76.62%);
  box-shadow: 0px 24px 44px 0px #f9487738;
}

.herizontalcardhost .fistimg img {
  position: static;
  min-width: auto;
}

.herizontalcardhost .cardimg {
  width: 30%;
  position: relative;
  display: flex;
  align-items: center;
}

.herizontalcardhost .cardtext h2 {
  color: #ffffff;
}

.herizontalcardhost .cardtext p {
  color: #ffffff;
}

.herizontalcardhost .portfoliocard-listing li {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0px;
}

section.startaproejct.wayz_startaproejct {
  display: none;
}

.herizontalcardprimecoach .fistimg img {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.herizontalcardprimecoach .cardimg.fistimg {
  width: 30%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.herizontalcardprimecoach .cardimg.secondimg {
  display: flex;
  align-items: center;
}

.herizontalcardprimecoach {
  background: #01838F;
  box-shadow: 0px 24px 44px 0px rgb(1 131 143 / 30%);
}

.herizontalcardprimecoach .cardtext p {
  color: #ffffff;
}

.herizontalcardprimecoach .cardtext h2 {
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
}

.herizontalcardprimecoach .portfoliocard-listing li {
  color: #ffffff;
}

.more_small_tx {
  font-size: 32px;
  font-weight: 400;
  top: -15px;
  position: relative;
}

.sec_people_profile {
  padding: 0 0 70px 0;
}

.sec_people_profile .heading_div {
  text-align: center;
  margin-bottom: 50px;
}

.sec_people_profile .heading_div h2.landingpge .titletext {
  line-height: initial;
  font-size: 36px;
  font-weight: 400;
  margin: 0px 0 10px 0 !important;
}

.sec_people_profile .heading_div h2.landingpge .titletext {
  line-height: initial !important;
  margin: 0px 0 10px 0 !important;
}

.sec_people_profile h6.gradient-text.subtitletext {
  color: #fff;
  font-weight: 400;
  text-transform: initial;
  font-size: 28px;
  letter-spacing: initial;
}

.sec_people_profile .row .col-md-6 {
  margin: 15px 0;
  display: flex;
}

.card_people_profile {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 20px;
}

.card_people_profile figure {
  width: 85px;
  min-width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 15px 0 0;
}

.card_people_profile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card_people_profile h5 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.card_say_people {
  padding: 20px;
  border-radius: 15px;
  background: #1F1238;
  width: 100%;
}

.card_say_people p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 28px;
}

.gradientbutton.mt-4.mb-3 {
  margin-top: 4.5rem !important;
  margin-bottom: 0px !important;
}


.error_text.text-center h5 {
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.scrolling-wrapper {
  width: 100%;
  overflow: hidden;
  animation: blinker 1s linear infinite;
  /* Hide overflow to keep the text scrolling smoothly */
  /* background-color: #f; */
  /* Yellow background */
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.scrolling-text {
  display: flex;
  /* Align text horizontally */
  animation: scroll-left 15s linear infinite;
  /* Controls the speed and continuous loop */
}

.scrolling-text span {
  white-space: nowrap;
  color: #d9ec59;
  font-size: 20px;
  font-weight: bold;
  margin-right: 50px;
  /* Space between each instance of the text */
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
    /* Start the text off-screen to the right */
  }

  100% {
    transform: translateX(-100%);
    /* End with the text off-screen to the left */
  }
}