@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap");
@import url("https://site-assets.fontawesome.com/releases/v5.15.4/css/all.css");
@import url("https://use.typekit.net/wwx3qeq.css");
@import url("https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css");
@import url("../css/icostyle.css");

:root {
  --light_white: #f8f8f8;
  --black: #000;
  --white: #fff;
  --primary_color: #ff8901;
  --secondary_color: #00202f;
  --font-family: Inter, sans-serif;
}

img {
  pointer-events: none;
}

/*Website Font USE/
font-family: 'Poppins', sans-serif;
/*Website Font USE*/

/*BEGIN: GENERAL CSS*/

/*html{
      scroll-behavior: smooth;
}*/

body {
  font-family: var(--font-family);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  background: #111 !important;
}

div#userwayAccessibilityIcon {
  right: -20px !important;
  top: 20px;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
  display: none;
}

body::-webkit-scrollbar-track-piece {
  background-color: #f4f4ec;
  -webkit-border-radius: 0px;
  border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: var(--secondary_color);
}

::selection {
  color: var(--white);
  background: var(--secondary_color);
}

a {
  text-decoration: none;
  color: #000;
  font-family: var(--paragraph-font);
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  color: #b1b5d3;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}

/*Header Section Begin*/

header {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 99;
  transition: 0.5s ease-in-out;
}

header.menu_fixed {
  width: 100%;
  position: fixed;
  z-index: 99999;
  padding: 10px 0;
  background: rgb(0 0 0 / 74%);
  background: #111;
}

.main_menu_sec ul li a {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  padding: 21px 16px !important;
}

.btn__head ul li a {
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
}

.btn__head ul li a img {
  padding-right: 11px;
  position: relative;
  top: -1px;
}

.btn__head ul li {
  padding: 10px 3px;
  display: inline-block;
}

.btn__head ul li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  background: rgb(255 137 1);
  border-radius: 4px;
  color: #fff;
  border: 0;
  transition: all 0.5s ease;
  padding: 13px 10px;
}

.container {
  width: 1160px;
  margin: 0 auto;
  padding: 0;
}

.btn__head {
  text-align: center;
}

.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 29%);
  min-width: 16rem;
  border-radius: 0;
}

.main_menu_sec ul.dropdown-menu li a {
  font-size: 14px;
  color: #fff !important;
  padding: 15px 20px !important;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
}

ul.dropdown-menu {
  padding: 0;
  background: var(--secondary_color);
  border: 0 !important;
  top: 84%;
}

.main_menu_sec ul.dropdown-menu li a:hover {
  color: #9193b9 !important;
  background: var(--white) !important;
}

.mobile-nav {
  position: fixed;
  width: 80%;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  right: -80%;
  z-index: 12;
  background: var(--primary-color);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background: #123138;
}

.mobile-nav .logo-main {
  font-size: 16px;
  color: #8795a0;
  padding: 15px 0 15px 24px;
  display: inline-block;
}

.mobile-nav img {
  width: 130px;
}

.mobile-nav nav {
  height: 100%;
}

.mobile-nav nav li a {
  color: #fff;
  font-weight: 400;
  display: block;
  padding: 15px 24px;
  border-top: 1px solid #d6d8db;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

.mobile-nav nav li a .fa {
  font-size: 20px;
  float: right;
}

.mobile-nav nav li ul {
  display: none;
  background: #fff;
}

.mobile-nav nav li ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.app-container.active {
  left: -80%;
}

.app-container {
  position: relative;
  left: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  display: none;
}

.mobile-nav-btn {
  display: none;
  position: fixed;
  top: 4px;
  height: 30px;
  padding: 6px 7px;
  border-radius: 4px;
  right: 2%;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  z-index: 14;
}

.mobile-nav-btn {
  display: block;
  z-index: 99999;
  top: -10px;
}

.mobile-nav-btn.active {
  right: 2%;
  z-index: 999999999;
  top: 0;
}

.mobile-nav-btn span {
  display: none;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 8px;
}

.lines:before,
.lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: top 0.3s 0.6s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s 0.6s ease, transform 0.3s ease;
}

.mobile-nav-btn .lines:before {
  top: 0;
  content: "\f0c9";
  font-family: "Font Awesome 5 Pro";
  font-size: 31px;
  color: #fff;
  position: absolute;
  right: 0;
  background: #123138;
  padding: 13px 12px;
  border-radius: 5px;
}

.mobile-nav-btn.active .lines:before {
  content: "\f00d";
  background: #123138;
}

.mobile-nav.active {
  z-index: 9999999;
}

.mobile-nav.active {
  height: 100%;
  right: 0;
}

.mobile-nav ul {
  padding-top: 100px;
}

ul.firstlevel.unstyled {
  padding: 0;
}

/*Header Section End*/

/*Banner Section Begin*/

.banner__sec__main .carousel-item video {
  width: 100%;
  height: 870px;
  object-fit: cover;
}

.banner__img {
  width: 100%;
}

.banner__sec__main .carousel-item:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 479px;
  background: linear-gradient(360deg, #111111 0, rgba(19, 20, 38, 0) 100%);
  z-index: 1;
}

.banner_main .carousel-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 78%);
  z-index: 1;
}

.banner__sec__main .carousel-caption {
  left: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  bottom: 0;
}

.logo_tab_platform span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact__form .btn__form input[type="submit"] {
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  ) !important;
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
  border: 0 !important;
}

.banner__content__sec h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 54px;
  padding-bottom: 10px;
}

.inner_banner .banner__content__sec h1 {
  font-size: 75px;
  line-height: 89px;
}

.banner__content__sec h1 span {
  display: block;
  background: linear-gradient(
    90.22deg,
    #f8b000 0,
    #b274ce 40.72%,
    #00e9f8 69.11%
  );
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__content__sec p {
  font-size: 20px;
  color: var(--white);
  line-height: 32px;
  font-weight: 300;
  width: 100%;
  margin: 0 auto 20px;
}

.banner__btn ul li {
  display: inline-block;
  padding: 0 20px 0px 0;
}

.banner__btn ul li a {
  /* background: var(--primary_color); */
  padding: 13px 26px;
  display: inline-block;
  border-radius: 5px;
  font-size: 18px;
  color: var(--white);
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
  border-radius: 5px;
}

.banner__content__sec .banner__btn ul li:nth-child(1) a {
  background: rgba(255, 255, 255, 0.24);
}

.banner__btn {
  padding-top: 10px;
}

.banner__btn ul li a:hover {
  background: #e7a00b;
  color: var(--white);
}

.banner__form__main {
  background: rgb(255 255 255);
  padding: 20px 25px;
  text-align: center;
  border-radius: 5px;
}

.banner__form input {
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  padding: 0 17px;
  border: 0;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid rgb(0 0 0 / 12%);
}

.banner__form__head {
  padding-bottom: 10px;
}

.banner__form__head h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  color: #000;
  margin-bottom: 0.5rem;
}

.banner__form__head p {
  text-align: left;
  color: rgb(0 0 0 / 57%);
}

.banner__form textarea {
  width: 100%;
  height: 110px;
  border: 0;
  border-radius: 5px;
  padding: 12px 15px;
}

.banner__form__main .btn__form inout {
}

.banner__form__main .btn__form input {
  margin-top: 10px;
  width: 100%;
  padding: 13px 50px;
  font-size: 17px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
  border-radius: 5px;
  height: auto;
  margin: 0;
}

/*Banner Section End*/

/*Intro Section Begin*/

.item__content.box__frst {
  background: linear-gradient(
    275.76deg,
    rgba(244, 176, 255, 0.05) -0.09%,
    rgba(244, 176, 255, 0) 99%
  );
  backdrop-filter: blur(40px);
  -ms-flex-pack: center;
  justify-content: center;
  padding: 43px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item__content {
  border-radius: 12px;
}

.item__content__tab p {
}

.box__frst .item__content__tab p {
  color: var(--white);
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 0;
}

.icon__frst span {
  background: #323749;
  width: 45px;
  height: 45px;
  display: inline-block;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px !important;
  border-radius: 50px;
  transform: rotate(35deg);
  margin-left: 20px;
  font-weight: 300;
}

.item__content {
  height: 100%;
  background: #ff8901;
  backdrop-filter: blur(40px);
  border-radius: 12px;
  padding: 32px 43px 32px 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s ease-in-out;
}
.item__content__tab p {
  font-weight: 500;
  font-size: 19px;
  line-height: 27px;
  color: var(--white);
  margin-bottom: 0;
}

.item__content__icon {
  margin-right: 21px;
}

.item__content__icon.icon__frst {
  margin: 0;
}

.item__content__icon span {
  color: var(--white);
  font-size: 30px;
}

.item_ser {
  padding: 0px 0 15px;
  height: 100%;
}

.item__content:hover {
  background: #a55800;
  transition: 0.3s ease-in-out;
}

.item__content.box__frst:hover {
  background: linear-gradient(
    275.76deg,
    rgba(244, 176, 255, 0.05) -0.09%,
    rgba(244, 176, 255, 0) 99%
  );
}

/*Intro Section End*/

/*Work Ways Section Begin*/

.ways__works {
  position: relative;
  background: #0c0c0c;
}

.padding__90 {
  padding: 90px 0;
}

.center__sec__head {
  text-align: center;
}

.center__sec__head h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 56px;
  line-height: 80px;
}

.center__sec__head p {
  color: var(--white);
  font-size: 16px;
  line-height: 29px;
  font-weight: 300;
}

.ways__works__box img {
  width: 100%;
  border-radius: 10px;
}

.ways__works__box {
  position: relative;
  border-radius: 10px;
}

.overlay__ways__sec {
  position: absolute;
  top: 0;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
}

.overlay__ways__sec h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 27px;
  margin-bottom: 10px;
}

.overlay__ways__sec p {
  font-size: 15px;
  line-height: 25px;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}

.btn__web ul li a {
  /* background: var(--primary_color); */
  padding: 13px 26px;
  display: inline-block;
  border-radius: 5px;
  font-size: 17px;
  color: var(--white);
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
}

.ways__works__box .card {
  border: 0;
  margin-top: -10px;
  padding-top: 10px;
  background: #191b34;
  border-radius: 0 0 16px 16px;
  padding: 25px 25px 30px;
}

.ways__works__box .card .card-header {
  border: 0;
  padding: 0;
}

.ways__works__box .card .card-header h5 button {
  border: 0;
  color: var(--white);
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  /* display: flex; */
  /* align-items: center; */
  padding: 0;
}

.ways__list ul li {
  color: #b1b2c1;
  font-weight: 300;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  line-height: 24px;
  font-size: 14px;
}

.ways__works__box .card-body {
  padding: 20px 0px 0 10px;
  height: 290px;
}

.ways__list ul li:before {
  content: "";
  position: absolute;
  border: 1.5px solid var(--primary_color);
  width: 8px;
  height: 8px;
  border-radius: 50px;
  left: 0;
  top: 7px;
}

.card-header h5 button.collapsed i.fa-minus:before {
  content: "\f067";
  top: 4px;
  position: relative;
  color: #898989;
}
.ways__works__box .card .card-header h5 button .fa {
  font-size: 23px;
  top: 4px;
  position: relative;
  color: #898989;
}

.ways__works__box .card .card-header h5 button span .bx {
  color: var(--primary_color);
  font-size: 27px;
  position: relative;
  top: 4px;
}

.intro__services__mian {
  padding-bottom: 90px;
}

section.intro__main {
  position: relative;
  padding: 110px 0;
}

section.intro__main:before {
  content: "";
  position: absolute;
  /* background: url(../images/home/intro-shape.webp); */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-position: 100% 30%;
}

/*Work Ways Section End*/

/*Services section Begin*/

.services__sec__tab {
  background: #0c0c0c;
}

.services__box {
  padding: 32px 24px;
  background: rgba(48, 68, 99, 0.1);
  border-radius: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start; /* height: 100%; */
  margin-bottom: 20px;
  min-height: 330px;
}

.services__box__content h3 {
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0.5rem;
}

.services__box__content p {
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.services__box__icon {
  position: relative;
  width: 85px;
  height: 93px;
}

.services__box__content {
  max-width: 210px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 32px;
}

.services__box__icon:before {
  content: url(../images/home/s2-shape.svg);
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 14px;
  top: calc(50% - 52px);
  z-index: 1;
}

.services__box__icon object {
  position: relative;
  z-index: 2;
  width: 87px;
  pointer-events: all;
}

/*Services section End*/

/*Technology Section Begin*/

.technology__sec__main {
  /* background: radial-gradient(78.18% 78.18% at 50% 100%,rgba(0,69,248,.2) 0,rgba(0,0,0,0) 100%),#131426; */
}

.tech__box {
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: 0.5s ease-in-out;
  height: 280px;
  margin-bottom: 30px;
}
.btn__form input[type="submit"] {
  margin: 0;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
  height: auto;
  padding: 12px 40px;
  font-size: 16px;
}
.tech__box h4 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
  min-height: 52px;
}

.tech__box p {
  line-height: 22px;
  color: #b1b2c1;
  margin-bottom: 16px;
  font-size: 13px;
}

.tech__box ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.tech__box:hover {
  background-color: rgba(255, 255, 255, 0.04);
  transition: 0.5s ease-in-out;
}

/*Technology Section End*/

/*Discovery Section Begin*/

.discovery__sec__main {
  background: #131526 url(../images/home/discovery-stage-bg.webp) no-repeat top
    right;
  position: relative;
  overflow: hidden;
}

.discovery__content__sec h2 {
  color: var(--white);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
}

.discovery__content__sec p {
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}

.discovery__sec__main:before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 606px;
  height: 966px;
  z-index: 0;
  /* background: url(../images/home/discovery-stage-circle-1-bg.webp) no-repeat center; */
}

.stage__sec {
  padding-top: 50px;
}

.stage__sec h5 {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
}

.stage__sec ul li {
  padding: 34px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  -ms-flex: 1;
  flex: 1;
  margin: 0 5px 0 5px;
}

.stage__sec ul li span {
  color: #bc1244;
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 20px;
  display: inline-block;
}

.stage__sec ul li p {
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 0;
  min-height: 57px;
}

.stage__sec ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: -5px;
}

.discovery__sec__main:after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -59%;
  width: 889px;
  height: 966px;
  z-index: 0;
  /* background: url(../images/home/discovery-stage-circle-2-bg.webp) no-repeat center; */
  z-index: -1;
}

.development-img {
  width: 134px;
  height: 14px;
  background: url(../images/home/discover-stage-development.webp) no-repeat
    center;
  background-size: contain;
}

/*Discovery Section End*/

/*Location Section Begin*/

.location__sec__main {
  background: #131526 url(../images/home/silicon-valley-bg.webp) no-repeat
    bottom center;
  background-size: 1280px;
  padding: 174px 0;
}

.location__content h4 {
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location__content p {
  font-size: 16px;
  color: var(--white);
  line-height: 30px;
  font-weight: 300;
}

.logo__cilent img {
  width: 100%;
}

.logo__cilent {
  padding-bottom: 40px;
}

/*Location Section End*/

/*Portfolio Section Begin*/

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

.portfolio__img__sec {
  position: relative;
  z-index: 9;
  margin-bottom: 60px;
}

.portfolio__img__sec:before {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 9;
  background: transparent linear-gradient(180deg, #02132700 0%, #021327 100%) 0%
    0% no-repeat padding-box;
}

.portfolio__overlay__sec {
  position: absolute;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 30px;
  justify-content: flex-end;
}

.port__det img {
  padding-bottom: 30px;
}

.port__det h4 {
  font-size: 28px;
  color: var(--white);
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 20px;
}

.port__det a {
  color: var(--primary_color);
  font-size: 20px;
  font-weight: 300;
}

.back_thumb {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: -1;
}

.portfolio__img__thumb img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.portfolio__sec__main {
  /* background: radial-gradient(78.18% 78.18% at 50% 100%,rgba(0,69,248,.2) 0,rgba(0,0,0,0) 100%),#131426; */
  position: relative;
}

.portfolio__sec__main:after {
  content: "";
  position: absolute;
  top: -28%;
  left: 0;
  width: 606px;
  height: 966px;
  z-index: 0;
  background: url(../images/home/discovery-stage-circle-1-bg.webp) no-repeat
    center;
}

/*Portfolio Section End*/

/* Review Section Begin*/

.review__box__sec {
  padding: 39px 24px 39px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 8px;
}

.review__box__sec .cient_logo {
  width: 64%;
  display: block;
  margin-bottom: 10px;
}

.review__box__sec span {
  color: var(--primary_color);
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
}

.review__box__sec p {
  text-align: left;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

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

.review__auth__text {
  padding-left: 20px;
}

.rev_auth__img img {
  border-radius: 50px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

p.auth_name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

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

.review__sec__mian .slick-slide {
  margin: 0;
}

/* Review Section End*/

/*Industries Section Begin*/

.logo_tab_platform {
  box-shadow: 0px 6px 14.25px 0.75px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
  padding: 21px 10px 20px 9px;
  background: rgba(48, 68, 99, 0.1);
  line-height: 60px;
  margin-left: 16px;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
}

.logo_tab_platform h5 {
  display: inline-block;
  font-size: 13px;
  padding-left: 3px;
  margin: 0;
  position: relative;
  top: 5px;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
  text-align: left;
}

.logo_tab_platform span img {
  width: 45px;
  height: 45px;
  display: inline-block;
}

.platform_logo_sec ul li {
  margin: 0;
}

.industries_sec {
  background: #111;
}

/*Industries Section End*/

/*Blog Section Begin*/

.blog__img img {
  width: 100%;
}

.blog__text {
  background: #1f203b;
  padding: 30px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog__text h6 {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.blog__text span {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

.blog__text p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}

.blog__text a {
  color: var(--primary_color);
  font-weight: 600;
  font-size: 18px;
}

/*Blog Section End*/

/*Contact Form Section Begin*/

.contact__form {
  background-size: cover;
  position: relative;
  background: radial-gradient(
        at 50% 50%,
        rgba(19, 16, 209, 0.19),
        rgba(19, 16, 209, 0) 50%
      )
      no-repeat 110% -95px/1040px 840px,
    radial-gradient(
        at 50% 50%,
        rgba(16, 93, 209, 0.17),
        rgba(16, 93, 209, 0) 50%
      )
      no-repeat 0 130px/1040px 840px,
    linear-gradient(to right, #1c1e36 0, #131426 100%);
  overflow: hidden;
  background: #131526 url(../images/home/discovery-stage-bg.webp) no-repeat top
    right;
}

.form__content__head h2 {
  font-size: 38px;
  color: var(--white);
  font-weight: 400;
  line-height: 51px;
  margin-bottom: 20px;
}

.form__content__head p {
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 0;
  width: 90%;
  color: rgb(255 255 255);
}

.contact_form h3 {
  color: #abc021;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact_form p {
  font-size: 16px;
  color: rgb(255 255 255 / 71%);
  margin-bottom: 1rem;
}

.contact_form input {
  width: 100%;
  height: 70px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #b1b5d3 !important;
  margin-bottom: 20px !important;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  border-radius: 0 !important;
}

.contact_form textarea {
  width: 100%;
  height: 150px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #b1b5d3 !important;
  resize: none;
  margin-top: 20px;
  color: #fff;
  font-weight: 300;
  border-radius: 0 !important;
}

.contact_form input::-webkit-input-placeholder,
.contact_form textarea::-webkit-input-placeholder {
  color: #b1b5d3;
}
.contact_form input::-moz-placeholder,
.contact_form textarea::-moz-placeholder {
  color: #b1b5d3;
}
.contact_form input:-ms-input-placeholder,
.contact_form textarea:-ms-input-placeholder {
  color: #b1b5d3;
}
.contact_form input:-moz-placeholder,
.contact_form textarea:-moz-placeholder {
  color: #b1b5d3;
}

.btn__form input {
  width: auto;
  border: 0;
  background: var(--primary_color);
  height: auto;
  padding: 18px 50px;
  display: inline-block;
  margin-top: 50px;
  font-size: 17px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  color: var(--white);
  font-weight: 500;
}

.btn__form input:hover {
  background: var(--white);
}

.banner__form__main .btn__form input:hover {
  background: #e7a00b;
}

.banner__form__main .selected-dial-code {
  color: #000;
}

/*Packages Section Begin*/

.packages_box_sec {
  padding: 0;
  transition: 0.5s ease-in-out;
  border-radius: 5px;
  margin-bottom: 50px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0,
    rgb(255 255 255 / 1%) 100%
  );
}

.detail__link {
  text-align: center;
  padding: 10px 0 20px;
}

.detail__link a {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
}

.packges__head h6 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.org_pri h5 {
  font-size: 35px;
  color: var(--white);
  font-weight: bold;
  position: relative;
  padding: 0 5px 0 20px;
  display: inline-block;
}

.org_pri h5 small {
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.org_pri span {
  color: #9193b9;
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
}

.org_pri span small {
  display: block;
  font-size: 18px;
  opacity: 0.5;
  text-decoration: line-through;
}

.packages__price {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(204 204 204 / 25%);
  margin-bottom: 20px;
  padding: 0 25px;
}

.cut_price small {
  color: #fff;
  font-size: 11px;
  display: block;
  text-align: right;
}

.cut_price {
}

.cut_price span.perc {
  font-size: 23px;
  color: var(--primary_color);
  font-weight: 500;
}

.packages_para p {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

.packages_para {
  padding-top: 10px;
}

ul.pkg-list li {
  font-size: 13px;
  color: var(--white);
  font-weight: 300;
  padding-bottom: 12px;
  position: relative;
  padding-left: 0;
}

ul.pkg-list li:before {
  content: "";
  background: url(../images/home/check-icon.svg);
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}

ul.pkg-list::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

ul.pkg-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e6e5e5;
  border-radius: 10px;
  background: #e6e5e5;
}
ul.pkg-list::-webkit-scrollbar-thumb {
  background: var(--primary_color);
  border-radius: 10px;
}
ul.pkg-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary_color);
  border-radius: 10px;
}

ul.pkg-list {
  height: 290px;
  overflow-y: scroll;
}

.btn__packages {
  padding-top: 20px;
  text-align: center;
  padding: 30px 20px 15px;
}

.btn__packages a {
  background: var(--primary_color);
  width: 100%;
  display: block;
  padding: 19px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  transition: 0.5s ease-in-out;
}

.packages_box_sec:hover {
}

.packages_box_sec:hover .packges__head h6 {
}

.packages_box_sec:hover .packages_para p {
}

.packages_box_sec:hover .btn__packages a {
  background: #2c2f52;
}

.packages_box_sec:hover .org_pri span {
}

.packages_box_sec:hover .org_pri span small {
}

.count__sec {
  text-align: center;
}

.count__sec h4 {
  font-size: 44px;
  color: #4edb96;
  font-weight: bold;
}

.count__sec p {
  letter-spacing: 0.65px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}

.packages_sec_main {
  position: relative;
}

.packages_sec_main:before {
  content: "";
  position: absolute;
  /* background: url(../images/home/intro-shape.webp); */
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: 100%;
  background-position: 80% -720px;
  top: 0;
  transform: rotate(180deg);
}

.packages__tab__menu ul {
  border: 0;
  margin: 0;
  justify-content: center;
}

.packages__tab__menu ul li a {
  padding: 15px 34px;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 12%) 0,
    rgb(255 255 255 / 7%) 100%
  );
  color: var(--white);
  border: 0 !important;
  border-radius: 5px !important;
  margin-bottom: 15px;
}

.packages__tab__menu ul li {
  margin: 0 !important;
  padding: 0 10px;
}

.packages__tab__menu ul li a:hover,
.packages__tab__menu ul li a.active {
  background: var(--primary_color) !important;
  color: var(--white) !important;
}

.top__pacakges__img img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 10px;
  object-fit: cover;
  position: relative;
  top: -7px;
  display: none;
}

.packges__head {
  padding: 24px 20px;
}

.pkg_list {
  padding: 0 25px;
}

ul.pkg-list li.head__pkg {
  font-weight: bold !important;
  font-size: 16px !important;
  color: #ff8901 !important;
}

/*Packages Section End*/

/*Footer Section Begin*/

footer {
  padding: 0px 0 0;
}

.footer__logo img {
  filter: brightness(0) invert(1);
  width: 50%;
}

.footer__logo {
  padding-bottom: 20px;
}

.footer__content p {
  font-size: 16px;
  line-height: 29px;
  color: var(--white);
  font-weight: 200;
  width: 90%;
  padding-bottom: 30px;
}

.footer__head h5 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 30px;
}

.footer__links ul li a {
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
}

.footer__links ul li {
  display: block;
  padding-bottom: 14px;
}

.contact__det ul li span {
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.contact__det ul li {
  padding-bottom: 20px;
}

.contact__det ul li p,
.contact__det ul li a {
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
}

.contact__det ul li span img {
  padding-right: 10px;
}

.copy__right {
  background: #181930;
  padding: 30px 0;
  margin-top: 40px;
}

.copy_text p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
}

.term__links ul li {
  display: inline-block;
}

.term__links ul {
  text-align: right;
}

.term__links ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  position: relative;
  padding: 0 20px 0 20px;
}

.term__links ul li a:after {
  content: "";
  position: absolute;
  background: var(--white);
  width: 1px;
  height: 30px;
  right: 0;
  top: -5px;
}

.term__links ul li:nth-last-child(1) a:after {
  background: transparent;
}

/*Footer Section End*/

/*Inner Page Section Begin*/

.inner_img_ban {
  width: 100%;
  height: 760px;
  object-fit: cover;
}

.count__sec_inner span {
  opacity: 0.3;
  font-size: 93px;
  font-weight: 700;
  padding-bottom: 5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  line-height: 120px;
}

.count__sec_inner p {
  font-weight: 600;
  letter-spacing: 0.31em;
  color: var(--white);
}

.count__sec_inner {
  position: relative;
  text-align: center;
}

.count__sec_inner:before {
  right: 0;
  top: 20px;
  width: 1px;
  content: "";
  height: 110px;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: rgba(86, 86, 86, 0.3);
}

.count__sec_inner:after {
  top: 60px;
  opacity: 0;
  right: -15px;
  font-size: 32px;
  content: "\f178";
  font-weight: 900;
  position: absolute;
  color: var(--primary_color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  font-family: "Font Awesome 5 Pro";
}

.count__sec_inner:hover:before {
  opacity: 0;
}

.count__sec_inner:hover:after {
  opacity: 1;
}

.experience_sec_main .row .col-sm-3:nth-last-child(1) .count__sec_inner:before,
.experience_sec_main .row .col-sm-3:nth-last-child(1) .count__sec_inner:after {
  opacity: 0;
}

.inner_banner .banner__content__sec {
  padding-top: 120px;
}

.keep__terms__sec {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0) 100%
  );
  margin: 50px 80px;
}

.term__keep__head h6 {
  color: var(--white);
  letter-spacing: 6px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
}

.term__keep__head h3 {
  color: #fff;
  font-size: 41px;
  font-weight: 700;
  line-height: 60px;
}

.term__keep__head h3 span {
  font-weight: 400;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

.term__keep__head h3 i {
  color: #bc1244;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.exp__sec {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 20px;
}

.exp__sec:before {
  top: 0;
  left: 10px;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.exp__contact span {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 40px;
  padding-left: 30px;
}

.exp__contact span a {
  color: var(--primary_color);
}

.btn__exp {
  padding-top: 10px;
}

.exp_num {
  text-align: center;
  top: -15px;
  padding-right: 30px;
}

.exp_num h6 {
  font-size: 85px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary_color);
}

.exp__contact {
}

.exp_num p {
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
}

.btn__exp ul li a {
  background: var(--primary_color);
  padding: 20px 40px;
  display: inline-block;
  border-radius: 5px;
  font-size: 17px;
}

.btn__exp {
  margin-top: 20px;
}

.intro__main .pt-5.mt-5 {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.about__short h4 {
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}

.about__short p {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 300;
}

.about__short p strong {
  font-weight: 800;
  color: var(--primary_color);
}

.about__short ul li {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 300;
}

.about__short ul li span {
  font-size: 18px;
  font-weight: bold;
}

.border_cli {
  border: 1px solid rgba(255, 255, 255, 0.17);
  margin: 100px 100px 0;
}

.logos__cli {
  text-align: center;
  border-right: 1px solid #2a2928;
  padding: 70px 0;
}

.keep__terms__sec .row .col-sm-2:nth-last-child(1) .logos__cli {
  border: 0;
}

.ori-service-inner {
  position: relative;
  margin-bottom: 50px;
}

.ori-service-img img {
  width: 100%;
  border-radius: 15px;
}

.ori-service-more {
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ori-service-more {
  font-size: 80px;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #bc1244;
}

.ori-service-inner:before {
  top: 0;
  right: 0;
  z-index: 1;
  width: 0%;
  content: "";
  left: auto;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background: rgba(13, 13, 13, 0.85);
}

.ori-service-inner:after {
  top: 0px;
  left: -5px;
  width: 95%;
  z-index: -1;
  content: "";
  height: 93%;
  opacity: 0;
  position: absolute;
  border-radius: 15px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: skew(-5deg) rotate(-5deg);
  transform: skew(-7deg) rotate(-5deg);
  background: linear-gradient(
    100.22deg,
    #f8b000 0,
    #b274ce 40.72%,
    #00e9f8 69.11%
  );
}

.ori-service-title {
  left: 0;
  right: 0;
  bottom: 55px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  position: absolute;
  text-align: left;
  padding: 0 20px;
}

.ori-service-title h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 0;
}

.ori-service-title h3 i {
  margin-left: 20px;
  float: right;
}

.ori-service-img:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  border-radius: 15px;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50.26%, rgba(9, 9, 9, 0)),
    color-stop(99.06%, #090909)
  );
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 50.26%, #090909 99.06%);
}

.ori-service-inner:hover:after {
  top: 40px;
  opacity: 1;
}

.ori-service-inner:hover:before {
  left: 0;
  width: 100%;
  right: auto;
}

.ori-service-inner:hover .ori-service-title {
  opacity: 0;
  bottom: 30px;
}

.ori-service-inner:hover .ori-service-more {
  top: 35%;
  opacity: 1;
}

/*Portfolio Section Begin*/

.tab__menu__port ul li {
  width: 100%;
  margin: 0 0 10px 0 !important;
}

.tab__menu__port ul li a {
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px !important;
  font-size: 17px;
  border: 0 !important;
}

.tab__menu__port ul {
  border: 0;
}

.tab__menu__port ul li a.active {
  /* background: var(--primary_color) !important; */
  /* border-color: var(--primary_color) !important; */
  color: #fff !important;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(109, 0, 79) 0%,
    rgb(166, 16, 65) 100%
  );
  border-color: transparent;
}

.tab__menu__port ul li a:hover {
  border: 0;
}

.portfolio__inner__img img {
  width: 100%;
  border-radius: 15px;
  position: relative;
}

.portfolio__inner__img {
  position: relative;
}

.portfolio__inner__img:before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50.26%, rgba(9, 9, 9, 0)),
    color-stop(99.06%, #090909)
  );
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 50.26%, #090909 99.06%);
  z-index: 99;
  border-radius: 15px;
}

.portfolio__overlay__inner {
  position: absolute;
  bottom: 0;
  padding: 30px 30px;
  width: 100%;
  z-index: 99;
}

.portfolio__overlay__inner span {
  font-size: 35px;
  font-weight: bold;
  /* margin-bottom: 25px; */
  display: inline-block;
  color: var(--white);
  /* opacity: 0; */
  /* -webkit-transform: translateY(20px); */
  /* transform: translateY(20px); */
  -webkit-transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-bottom: 20px;
  line-height: 36px;
}

.portfolio__overlay__inner p,
.portfolio__overlay__inner p a {
  font-size: 19px;
  color: #abc021;
  /* -webkit-transform: translateY(20px); */
  /* transform: translateY(20px); */
  -webkit-transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  /* opacity: 0; */
}

.portfolio__inner__tab:hover .portfolio__overlay__inner span {
  /* opacity: 1; */
  /* -webkit-transform: translateY(0px); */
  /* transform: translateY(0px); */
}

.portfolio__inner__tab:hover .portfolio__overlay__inner p,
.portfolio__inner__tab:hover .portfolio__overlay__inner p a {
  /* opacity: 1; */
  /* -webkit-transform: translateY(0px); */
  /* transform: translateY(0px); */
}

.portfolio__inner__lnks {
  position: absolute;
  right: 50px;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
}

.portfolio__inner__lnks a i {
  color: #abc021;
  font-size: 70px;
}

.portfolio__inner__lnks a {
  display: inline-block;
}

.portfolio__inner__tab:hover .portfolio__inner__lnks {
  opacity: 1;
  bottom: 55px;
}

.portfolio__inner__tab {
  margin-bottom: 30px;
}

.menu__stactic {
  position: sticky;
  top: 20px;
}

.porfolio__sec__main .tab-content {
  overflow-y: scroll;
  height: 1260px;
}

.porfolio__sec__main .tab-content::-webkit-scrollbar {
  display: none;
}

.porfolio__sec__main .tab-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*Portfolio Section End*/

/*---------------------------------------------------- */
/*Text Scroll area*/
/*----------------------------------------------------*/
.ori-text-scroll-section-1 {
  z-index: 1;
  overflow: hidden;
  padding: 65px 0px;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
}

.ori-text-scroll-section-2 {
  z-index: 1;
  overflow: hidden;
  padding: 65px 0px;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.ori-team-content-1 {
  padding-top: 70px;
}

.ori-text-scroll-content h3 {
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
  display: inline-block;
  color: var(--white);
}
.ori-text-scroll-content h3 span {
  background-image: url(../images/home/sd1.png);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.ori-text-scroll-content .ori-text-scroll-icon {
  font-size: 75px;
  margin: 0px 25px;
  color: var(--primary_color);
}

/*Inner Page Section End*/

.inner__contact {
  background: transparent;
}

.term_content_Sec h3 {
  color: var(--white);
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 0px;
}

.term_content_Sec p {
  font-size: 17px;
  line-height: 31px;
  color: var(--white);
  font-weight: 300;
}

.term_content_Sec {
  padding-bottom: 30px;
}

.term_content_Sec ul li {
  font-size: 17px;
  color: var(--white);
  padding-bottom: 15px;
  font-weight: 300;
  list-style-type: disc;
  line-height: 28px;
}

.term_content_Sec ul li ul li a,
.term_content_Sec ul li a {
  color: var(--primary_color);
  text-decoration: underline;
  font-weight: bold;
}

.term_content_Sec ul {
  padding: 0 40px;
}

.term_content_Sec p a {
  color: var(--primary_color);
  text-decoration: underline;
  font-weight: bold;
}

/*About Us inner Section Begin*/

.about__inner__img img {
  width: 100%;
}

.about__inner1 img {
  width: auto;
  position: absolute;
  bottom: -50px;
  left: -50px;
}

.about__inner1 {
  position: relative;
}

.inner__about__content h3 {
  font-size: 49px;
  color: var(--white);
  font-weight: bold;
  margin-bottom: 20px;
}

.inner__about__content p {
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  font-weight: 300;
}

.btm__content h4 {
  font-size: 30px;
  color: var(--white);
  font-weight: bold;
  margin-bottom: 20px;
}

.btm__content ol li {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
  padding-bottom: 18px;
  line-height: 30px;
}

/*About Us inner Section End*/

/*Package section Begin*/

.pkg_detail_sec {
  padding: 40px 30px;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 4%) 0,
    rgb(255 255 255 / 18%) 100%
  );
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 6px 40px 0 rgb(0 0 0 / 14%);
  margin-top: 40px;
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
}

.pkg_detail_sec h4,
.pkg_detail_sec h1 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 15px;
}

.pkg_detail_sec span.line_through {
  margin-bottom: 10px;
  display: block;
  font-size: 24px;
  opacity: 0.5;
  text-decoration: line-through;
  color: #9193b9;
}

.pkg_detail_sec span.h5 {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 45px;
  color: var(--blue);
  font-weight: bold;
  background: -webkit-linear-gradient(to right, #932987, #9932cc);
  color: var(--white);
}

.pkg_detail_sec span.h5 sup {
  color: var(--white);
  right: -8px;
}

.pkg_detail_sec .btn_pkg {
  padding-top: 10px;
}

.product_detail_sec {
  padding: 210px 0;
  position: relative;
  z-index: 1;
  background: url(../images/home/inner-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pkg_detail_sec:before {
  content: "";
  border: 3px solid rgb(145 147 185 / 32%);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: -1;
  right: -20px;
  bottom: -20px;
}

.pkg_detail_sec:after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: -1;
  left: -20px;
  top: -20px;
}

.pkg_list_detail {
  margin: 0 10px 0 60px;
}

.pkg_list_detail ul.pkg-list {
  height: 510px;
}

.pkg_list_detail {
}

.pkg_list_detail ul.pkg-list li {
  border-bottom: 1px solid #ccc;
  padding: 15px 0px;
  font-size: 14px;
  color: var(--white);
  font-weight: 300;
  margin-right: 20px;
}

.pkg_list_detail h4 {
  font-weight: bold;
  font-size: 32px;
  color: var(--white);
}

.pkg_list_detail ul.pkg-list li:before {
  content: "";
  background: url(../images/home/tick-arrow.png) no-repeat;
  color: #bf1f0b;
  font-size: 17px;
  margin-right: 8px;
  width: 13px;
  height: 12px;
  display: inline-block;
  top: 21px;
  position: absolute;
  left: 0;
  filter: brightness(0);
}

.btn_pkg a {
  background: #24263e;
  width: 100%;
  display: block;
  padding: 19px 60px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

li.heading {
  font-weight: 600 !important;
  font-size: 17px !important;
}

section.product_detail_sec:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 479px;
  background: linear-gradient(360deg, #131426 0, rgba(19, 20, 38, 0) 100%);
  z-index: -1;
}

/*Package section End*/

.thanks_banner .banner__content__sec p {
  margin: 0 auto;
}

/*POPUP Section Begin*/

.LetsGetModal .modal-dialog {
  max-width: 920px;
}

.modal__img__sec img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.LetsGetModal .modal-body {
  padding: 0;
  border: 0;
  border-radius: 0 !important;
}

.LetsGetModal .modal-content {
  border-radius: 15px;
  border: 0;
}

.ban-form input {
  height: 45px;
  margin-bottom: 13px;
  font-size: 14px;
}

.form__banner {
  padding: 0;
}

.ban-form textarea {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  padding: 15px 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.submitbtn input {
  width: 100%;
  background: var(--secondary_color);
  border: 0;
  font-size: 18px;
  color: var(--white);
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 16px 0;
}

.overlay_popup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 20px 20px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}

.modal__img__sec {
  position: relative;
}

.overlay_popup h5 {
  color: var(--white);
  font-size: 26px;
  font-weight: 300;
}

.overlay_popup h5 span {
  color: var(--secondary_color);
}

.LetsGetModal button.close {
  background: var(--secondary_color);
  opacity: 1;
  text-shadow: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50px;
  color: #fff;
  z-index: 9999;
}

.modal-backdrop {
  z-index: 99999;
}

.modal {
  z-index: 999999;
}

.intl-tel-input {
  width: 100%;
  margin-bottom: 15px;
}

.ban-form select {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 45px;
  margin-bottom: 13px;
  font-size: 13px;
  padding: 0.375rem 0.75rem;
  color: #495057;
}

.form__banner textarea {
  height: 230px;
}

.LetsGetModal textarea {
  width: 100%;
  height: 223px;
  border-radius: 5px;
  padding: 10px 10px;
  border: 1px solid #ced4da;
  resize: none;
}

.popup__head h6 {
  font-size: 30px;
  font-weight: bold;
}

.popup__head p {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  width: 90%;
}

.banner-formInner .col-sm-8 {
  padding: 30px 40px;
}
/*POPUP Section End*/

ul.banner__point li {
  width: 100%;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 17px;
  font-weight: 200;
  position: relative;
  padding-left: 30px;
}

ul.banner__point li .fa {
  position: absolute;
  left: 0;
  top: 3px;
}

.property__listing__sec {
  position: relative;
  background: #0c0c0c;
}

.property__listing__img img {
  width: 100%;
  border-radius: 20px;
}

.property__listing__content h4 {
  font-size: 50px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}

.property__listing__content p {
  font-size: 17px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 300;
}

.property__listing__sec .row.align-items-center {
  margin-bottom: 80px;
}

.estate__banner.banner_main .carousel-item:after {
  background: rgb(0 0 0 / 50%);
}

.banner__mobile {
  display: none;
}

.mobile__number {
  display: none;
}

.blog__sec .ori-service-more {
  -webkit-transform: rotate(-0deg);
  transform: rotate(-0deg);
}
.blog__sec .ori-service-more .fas {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.blog__det h2 {
  color: #fff;
  font-size: ;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 20px;
}
.blog__det a {
  color: var(--primary_color);
  text-decoration: underline;
  font-weight: bold;
}
.blog__det b {
  font-weight: bold;
  color: var(--primary_color);
}
.blog__det strong {
  color: var(--primary_color);
  font-weight: bold;
}

/*Industries Section Begin*/

.indust__box {
  position: relative;
  margin-bottom: 40px;
  border: 1px solid #3e3e3ebd;
  padding: 30px 20px;
  height: 290px;
}

.icon__indust {
  position: relative;
  left: 0;
  width: 70px;
}

.text__indus {
  padding-left: 0;
}

.text__indus h4,
.text__indus h4 a {
  font-size: 15px;
  color: var(--primary_color);
}

.text__indus h4 a {
  text-decoration: underline;
}

.choose__box .icon__indust {
  margin-bottom: 10px;
}

.choose__box .icon__indust {
  display: ;
  position: relative;
  left: 0;
}
.choose__box .text__indus {
  padding: 0;
}
.choose__box .indust__box {
  height: 280px;
}

.text__indus p a {
  color: var(--primary_color);
  text-decoration: underline;
}

.text__indus p {
  color: #fff;
  font-size: 13px;
  line-height: 26px;
}

.indus__point li {
  list-style-type: disc;
  margin-bottom: 10px !important;
}

.indus__point {
  padding: 0 15px;
}

.para__clr__chg {
  color: #ff8901 !important;
  font-weight: bold !important;
  font-size: 17px !important;
}

.point__para li {
  padding-bottom: 0 !important;
  margin-bottom: 5px !important;
  list-style-type: disc;
}
.point__para {
  padding: 0 15px;
}

.blog__det ul li {
  font-size: 16px;
  color: #fff;
  padding-bottom: 13px;
  list-style-type: disc;
}

.blog__det ul {
  padding: 0 30px;
}

.blog__det thead tr th {
  background: #ff8901;
  font-weight: 400;
  font-size: 17px;
  padding: 19px 30px;
}

.blog__det tbody tr td {
  background: #fff;
  font-weight: 400;
  font-size: 17px;
  padding: 19px 30px;
}

/*Industries Section End*/

/*Responsive Begin*/

@media (max-width: 1600px) {
  .property__listing__content h4 {
    font-size: 37px;
  }

  .banner__img {
    width: 100%;
    height: 790px;
    object-fit: cover;
  }

  .banner__content__sec h1 {
    font-size: 48px;
    line-height: 60px;
  }

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

  .center__sec__head h2 {
    font-size: 56px;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
  }

  .location__content h4 {
    font-size: 32px;
  }

  .center__sec__head p {
    width: 80%;
    margin: 0 auto 10px;
  }

  .services__box {
    min-height: 300px;
  }

  .count__sec_inner span {
    font-size: 85px;
  }

  .services__sec__tab .center__sec__head p {
    width: 100%;
  }

  .banner__content__sec p {
    font-size: 20px;
    line-height: 35px;
  }

  .keep__terms__sec .about__short {
    padding-top: 0 !important;
  }

  .logos__cli:before {
    content: "";
    border-right: 1px solid #2a2928;
    position: absolute;
    width: 1px;
    height: 180px;
    right: 14px;
    top: 0;
  }

  .logos__cli {
    text-align: center;
    border-right: transparent;
  }

  .keep__terms__sec .row .col-sm-2:nth-last-child(1) .logos__cli:before {
    border: 0;
  }
}

@media (max-width: 1440px) {
  .container {
    width: 1050px;
  }

  .main_menu_sec ul li a {
    padding: 21px 12px !important;
  }

  .property__listing__content h4 {
    font-size: 35px;
  }

  .portfolio__overlay__inner span {
    font-size: 30px;
  }

  .center__sec__head h2 {
    font-size: 42px;
    padding-bottom: 10px;
    line-height: 49px;
  }

  .services__box__content {
    margin-right: 10px;
  }

  .services__box__content h3 {
    font-size: 18px;
  }

  .services__box {
    min-height: 290px;
  }

  .packages__tab__menu ul li a {
    padding: 15px 27px;
  }

  .tech__box ul li {
    font-size: 13px;
    padding: 4px 8px;
  }

  .tech__box {
    padding: 25px 15px;
  }

  .discovery__content__sec h2 {
    font-size: 34px;
    line-height: 46px;
  }

  .discovery__content__sec p {
    font-size: 15px;
    line-height: 27px;
  }

  .logo_tab_platform span img {
    width: 35px;
    height: 35px;
  }

  .logo_tab_platform span {
    display: flex;
    align-items: center;
  }

  .logo_tab_platform h5 {
    display: inline-block;
    font-size: 13px;
    padding-left: 9px;
    top: 0;
  }

  .blog__text h6 {
    font-size: 19px;
    line-height: 26px;
  }

  .form__content__head h2 {
    font-size: 35px;
  }

  .inner__about__content h3 {
    font-size: 38px;
  }

  .inner__about__content p {
    font-size: 15px;
    line-height: 27px;
  }

  .btm__content h4 {
    font-size: 25px;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 36px;
  }

  .about__short h4 {
    font-size: 21px;
  }

  .about__short p {
    font-size: 14px;
    line-height: 24px;
  }

  .logos__cli img {
    width: 90%;
  }

  .logos__cli:before {
    right: 4px;
  }

  .ori-text-scroll-content h3 {
    font-size: 70px;
  }

  .ori-text-scroll-section-1 {
    padding: 35px 0px;
  }

  .ori-text-scroll-section-2 {
    padding: 35px 0px;
  }

  .review__box__sec p {
    font-size: 13px;
  }

  .banner__content__sec h1 {
    font-size: 34px;
    line-height: 45px;
  }

  .term__banner .carousel-item img {
    height: 390px;
  }

  .pkg_list_detail h4 {
    font-size: 30px;
  }

  .pkg_detail_sec span.h5 {
    font-size: 40px;
  }

  .item__content__tab p {
    font-size: 17px;
    line-height: 24px;
  }

  .org_pri h5 {
    font-size: 30px;
  }

  .detail__link {
    text-align: center;
    padding: 10px 0 30px;
  }

  .org_pri span small {
    font-size: 17px;
  }

  .form__content__head p {
    font-size: 16px;
  }

  .contact_form h3 {
    color: var(--primary_color);
    font-size: 32px;
  }

  /*.ways__works.padding__90 {*/
  /*    padding: 0;*/
  /*}*/

  .inner_banner .banner__content__sec h1 {
    font-size: 62px;
    line-height: 79px;
  }
}

@media (max-width: 1366px) {
  .main_menu_sec ul li a {
    padding: 21px 10px !important;
    font-size: 13px;
  }

  .banner__content__sec p {
    font-size: 17px;
    line-height: 27px;
  }

  .item__content__tab p {
    font-size: 15px;
    line-height: 22px;
  }

  .item__content {
    padding: 30px 43px 30px 32px;
  }

  .box__frst .item__content__tab p {
    font-size: 20px;
  }

  .container {
    width: 1010px;
  }

  .center__sec__head p {
    font-size: 16px;
  }

  .services__box__icon {
    position: relative;
    width: 75px;
    height: 83px;
  }

  .services__box__icon:before {
    right: 5px;
  }

  .location__content h4 {
    font-size: 26px;
    line-height: 39px;
  }

  .form__content__head h2 {
    font-size: 33px;
    line-height: 45px;
  }

  .footer__content p {
    font-size: 15px;
    line-height: 27px;
  }

  .footer__content img {
    width: 80%;
  }

  .packages__tab__menu ul li a {
    padding: 15px 23px;
  }

  .banner__sec__main .carousel-item video {
    height: 710px;
  }
}

@media (max-width: 1200px) {
  .banner__content__sec h1 {
    font-size: 38px;
    line-height: 55px;
  }

  .banner__content__sec p {
    font-size: 18px;
    line-height: 29px;
  }

  .item_ser {
    padding: 0px 0 30px;
  }

  .discovery__content__sec h2 {
    font-size: 33px;
    line-height: 45px;
  }

  .overlay__ways__sec h3 {
    font-size: 23px;
  }

  .contact__form {
    background-position: -140%;
  }

  .packages_sec_main:before {
    background-position: -10% -580px;
  }

  .copy__right {
    padding: 20px 0;
  }

  .contact__det ul li span {
    font-size: 16px;
  }

  .copy_text p {
    font-size: 14px;
  }

  .term__links ul li a {
    color: var(--white);
    font-size: 13px;
  }

  .portfolio__overlay__inner span {
    font-size: 27px;
  }

  .count__sec_inner span {
    font-size: 65px;
  }

  .count__sec_inner p {
    letter-spacing: 0.25em;
  }

  .keep__terms__sec {
    margin: 50px 40px;
  }

  .border_cli {
    border: 1px solid rgba(255, 255, 255, 0.17);
    margin: 100px 40px 0;
  }

  .exp__contact span {
    font-size: 15px;
    padding-left: 20px;
  }

  .exp_num h6 {
    font-size: 75px;
  }

  .about__short h4 {
    font-size: 17px;
  }

  .ori-service-more a {
    font-size: 80px;
  }

  .pkg_detail_sec span.h5 {
    font-size: 35px;
  }

  .pkg_detail_sec span.line_through {
    font-size: 19px;
    opacity: 0.7;
  }

  .term_content_Sec h3 {
    font-size: 25px;
  }

  .term_content_Sec p {
    font-size: 16px;
    line-height: 28px;
  }

  .term_content_Sec ul li {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .banner__content__sec h1 {
    font-size: 43px;
    line-height: 51px;
  }

  .property__listing__content h4 {
    font-size: 31px;
  }

  .banner__btn ul li a {
    padding: 13px 26px;
    font-size: 16px;
  }

  .center__sec__head h2 {
    font-size: 38px;
    padding-bottom: 10px;
    line-height: 40px;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
  }

  .portfolio__overlay__inner p,
  .portfolio__overlay__inner p a {
    font-size: 17px;
  }

  .services__box__content {
    margin-right: 0;
  }

  .services__box__content p {
    font-size: 13px;
    line-height: 22px;
  }

  .packages__tab__menu ul li a {
    padding: 15px 25px;
    font-size: 13px;
  }

  .packges__head h6 {
    text-align: center;
    font-size: 16px;
  }

  .cut_price span.perc {
    font-size: 21px;
  }

  .detail__link a {
    font-size: 16px;
  }

  .discovery__content__sec h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .logo_tab_platform h5 {
    display: inline-block;
    font-size: 12px;
  }

  .blog__text h6 {
    font-size: 17px;
    line-height: 24px;
  }

  .blog__text p {
    font-size: 13px;
  }

  .form__content__head h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .form__content__head p {
    font-size: 15px;
    line-height: 26px;
  }

  .footer__head h5 {
    font-size: 16px;
  }

  .contact__det ul li p,
  .contact__det ul li a {
    color: var(--white);
    font-size: 14px;
  }

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

  .contact__det ul li span img {
    padding-right: 5px;
  }

  .banner__content__sec p {
    font-size: 17px;
    line-height: 27px;
  }

  .count__sec_inner span {
    font-size: 55px;
  }

  .count__sec_inner p {
    letter-spacing: 0.2em;
  }

  .inner__about__content p {
    font-size: 14px;
    line-height: 25px;
  }

  .inner__about__content h3 {
    font-size: 33px;
  }

  .btm__content ol li {
    font-size: 15px;
    line-height: 25px;
  }

  .btm__content h4 {
    font-size: 20px;
  }

  .services__box__content h3 {
    font-size: 17px;
  }

  .inner_img_ban {
    width: 100%;
    height: 600px;
  }

  .about__short h4 {
    font-size: 16px;
  }

  .logos__cli {
    text-align: center;
    border-right: 1px solid #2a2928;
    padding: 50px 0;
  }

  .logos__cli:before {
    right: 4px;
    height: 130px;
  }

  .btn__exp ul li a {
    padding: 16px 30px;
    font-size: 15px;
  }

  .exp_num {
    padding-right: 10px;
  }

  .border_cli {
    border: 1px solid rgba(255, 255, 255, 0.17);
    margin: 70px 20px 0;
  }

  .logos__cli img {
    width: 80%;
  }

  .ori-service-title h3 {
    font-size: 22px;
  }

  .packages_sec_main:before {
    background-position: -10% -650px;
  }

  .packages__tab__menu ul li a {
    padding: 15px 22px;
    font-size: 13px;
  }

  .inner_banner .banner__content__sec p {
    margin: 0 auto 20px;
  }

  .about__inner1 img {
    left: -40px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 880px;
  }

  .banner__content__sec h1 {
    font-size: 33px;
    line-height: 47px;
  }

  .banner__content__sec p {
    font-size: 16px;
    line-height: 30px;
  }

  .item__content {
    padding: 30px 23px 30px 12px;
  }

  .item__content__icon {
    margin-right: 15px;
  }

  .item__content__tab p {
    font-size: 14px;
    line-height: 20px;
  }

  .portfolio__overlay__inner span {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .tab__menu__port ul li a {
    padding: 15px 25px;
    font-size: 15px;
  }

  .packages__tab__menu ul li {
    margin: 0 !important;
    padding: 0 5px;
  }

  .packages__tab__menu ul {
    border: 0;
    margin: 0;
    justify-content: center;
  }

  .packges__head {
    padding: 24px 10px;
  }

  .packages__price {
    padding: 0 20px;
  }

  .org_pri h5 {
    font-size: 27px;
    padding: 0 5px 0 15px;
  }

  .org_pri h5 small {
    font-size: 17px;
  }

  .cut_price span.perc {
    font-size: 19px;
  }

  .pkg_list {
    padding: 0 20px;
  }

  .technology__sec__main {
    padding-top: 70px !important;
  }

  .tech__box h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 600;
    min-height: 50px;
  }

  .tech__box {
    padding: 25px 15px;
    height: 310px;
  }

  .discovery__content__sec h2 {
    font-size: 26px;
    line-height: 35px;
  }

  .stage__sec ul li p {
    font-size: 15px;
    color: var(--white);
    font-weight: 200;
    line-height: 22px;
  }

  .stage__sec ul li {
    padding: 24px 19px 32px;
  }

  .location__sec__main {
    background-size: 1060px;
    padding: 100px 0;
  }

  .location__content h4 {
    font-size: 22px;
    line-height: 33px;
  }

  .location__content p {
    font-size: 15px;
    line-height: 26px;
  }

  .ways__works__box img {
    width: 100%;
    border-radius: 10px;
    height: 270px;
    object-fit: cover;
  }

  .overlay__ways__sec {
    padding: 40px 30px;
  }

  .logo_tab_platform span img {
    width: 30px;
    height: 30px;
  }

  .logo_tab_platform h5 {
    display: inline-block;
    font-size: 11px;
  }

  .contact_form textarea {
    height: 120px;
  }

  .contact_form h3 {
    font-size: 25px;
  }

  .form__content__head h2 {
    font-size: 26px;
    line-height: 33px;
  }

  .services__box__icon {
    position: relative;
    width: 65px;
    height: 73px;
  }

  .services__box__icon:before {
    right: -8px;
  }

  .services__box__content h3 {
    font-size: 15px;
  }

  .keep__terms__sec .about__short {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }

  .exp__contact span {
    font-size: 14px;
    padding-left: 18px;
  }

  .btn__exp ul li a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .exp_num h6 {
    font-size: 50px;
  }

  .logos__cli {
    text-align: center;
    border-right: 0;
  }

  .count__sec_inner:before {
    right: -15px;
  }

  .count__sec_inner span {
    font-size: 50px;
    line-height: 90px;
  }

  .about__short p {
    font-size: 15px;
    line-height: 28px;
  }

  .pkg_list_detail {
    margin: 0 10px 0 40px;
  }

  .pkg_detail_sec h4,
  .pkg_detail_sec h1 {
    font-size: 15px;
  }

  .pkg_detail_sec span.line_through {
    font-size: 18px;
  }

  .pkg_detail_sec span.h5 {
    font-size: 30px;
  }

  .btn_pkg a {
    padding: 17px 50px;
  }

  .pkg_detail_sec {
    min-height: 390px;
  }

  .pkg_list_detail ul.pkg-list {
    height: 415px;
  }

  .pkg_list_detail h4 {
    font-size: 24px;
  }

  .banner-formInner .col-sm-8 {
    padding: 30px 44px 20px 20px;
  }

  .inner_banner .banner__content__sec h1 {
    font-size: 43px;
    line-height: 50px;
  }

  .inner_banner .banner__content__sec p {
    margin: 0 auto 20px;
    width: 80%;
  }

  .footer__links ul li a {
    color: var(--white);
    font-size: 13px;
  }

  .footer__links ul li {
    padding-bottom: 10px;
  }

  .term_content_Sec h3 {
    font-size: 20px;
  }

  .term_content_Sec p {
    font-size: 15px;
    line-height: 26px;
  }

  .term__banner .carousel-item img {
    height: 300px;
  }

  .term_content_Sec ul li {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .packages__tab__menu ul li a {
    padding: 11px 16px;
    font-size: 12px;
  }

  .tech__box h4 {
    font-size: 17px;
  }

  .tech__box ul li {
    font-size: 11px;
    padding: 4px 11px;
    margin-right: 5px;
    margin-bottom: 10px;
  }

  .discovery__content__sec h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .discovery__sec__main {
    background-position: 120px 0px;
  }

  .discovery__content__sec p {
    font-size: 14px;
    line-height: 25px;
  }

  .discovery__sec__main:after {
    z-index: 9;
  }

  .stage__sec {
    padding-top: 50px;
    position: relative;
    z-index: 99;
  }

  .packges__head h6 {
    text-align: center;
    font-size: 13px;
  }

  .btn__packages a {
    font-size: 14px;
  }

  .packges__head {
    padding: 24px 10px 5px;
  }

  .inner_banner .banner__content__sec {
    padding-top: 80px;
  }

  .inner_img_ban {
    width: 100%;
    height: 550px;
  }

  .term__banner .banner__content__sec.text-center {
    padding-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .inner_banner .banner__content__sec p {
    margin: 0 auto 20px;
    width: 80%;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .property__listing__content h4 {
    font-size: 24px;
  }

  .container {
    width: 690px;
  }

  .banner__form__main {
    display: none;
  }

  .banner__sec__main .col-sm-8 {
    max-width: 100%;
    flex: 100%;
  }

  header .col-sm-2 {
    display: none;
  }

  header .col-sm-7 {
    max-width: 75%;
    flex: 75%;
  }

  .banner__sec__main .col-sm-10 {
    max-width: 100%;
    flex: 100%;
  }

  .banner__content__sec h1 {
    font-size: 27px;
    line-height: 42px;
    padding-bottom: 0;
  }

  .banner__sec__main .carousel-item video {
    height: 570px;
  }

  .box__frst .item__content__tab p {
    font-size: 16px;
  }

  .item__content__tab p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }

  .item__content {
    padding: 20px 23px 20px 12px;
  }

  .center__sec__head h2 {
    font-size: 20px;
    padding-bottom: 10px;
    line-height: 30px;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 26px;
    line-height: 34px;
  }

  .tab__menu__port ul li a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .portfolio__overlay__inner span {
    font-size: 21px;
    padding-bottom: 7px;
  }

  .portfolio__overlay__inner p,
  .portfolio__overlay__inner p a {
    font-size: 15px;
  }

  .services__box {
    min-height: 290px;
    flex-direction: column-reverse;
    padding: 27px 24px;
  }

  .services__box__icon object {
    position: relative;
    z-index: 2;
    width: 74px;
    pointer-events: all;
  }

  .services__box__icon:before {
    right: -8px;
    width: 50px;
    height: 50px;
  }

  .services__box__icon {
    position: relative;
    width: 25px;
    height: 53px;
    margin-bottom: 30px;
  }

  .packages__tab__menu ul li a {
    padding: 11px 11px;
    font-size: 11px;
  }

  .packages_sec_main .col-sm-4 {
    max-width: 50%;
    flex: 50%;
  }

  .technology__sec__main .col-sm-4 {
    max-width: 50%;
    flex: 50%;
  }

  .tech__box {
    padding: 25px 15px;
    height: 260px;
  }

  .discovery__sec__main .col-sm-7 {
    max-width: 100%;
    flex: 100%;
  }

  .stage__sec ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: unset;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: unset;
    margin: -5px;
    flex-direction: unset;
    display: unset !important;
  }

  .stage__sec ul li {
    padding: 34px 24px 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    -ms-flex: 2;
    flex: 3;
    margin: 0 5px 0 5px;
    width: 31%;
    float: left;
    margin-bottom: 30px;
    min-height: 190px;
  }

  .stage__sec h5 {
    margin-bottom: 40px;
  }

  .location__sec__main {
    background-size: 470px;
    padding: 100px 0;
    background-position: bottom;
  }

  .center__sec__head p {
    width: 100%;
    margin: 0 auto 10px;
  }

  .overlay__ways__sec h3 {
    font-size: 18px;
  }

  .overlay__ways__sec p {
    font-size: 14px;
    line-height: 23px;
  }

  .overlay__ways__sec {
    padding: 30px 20px;
  }

  .ways__works__box img {
    height: 240px;
  }

  .industries_sec li.col-sm-2.p-0 {
    max-width: 25%;
    flex: 25%;
  }

  .blog__text h6 {
    font-size: 15px;
    line-height: 24px;
  }

  .blog__text a {
    font-size: 14px;
  }

  .form__content__head h2 {
    font-size: 22px;
    line-height: 33px;
  }

  .contact__form .col-sm-7.pl-5 {
    padding-left: 10px !important;
  }

  .form__content__head p {
    font-size: 14px;
    line-height: 26px;
    width: 100%;
  }

  .contact_form textarea {
    height: 100px;
  }

  .contact_form input {
    width: 100%;
    height: 60px;
  }

  .contact_form h3 {
    font-size: 22px;
  }

  .contact_form p {
    font-size: 15px;
    color: rgb(255 255 255 / 71%);
    font-weight: 300;
    line-height: 26px;
  }

  .copy__right .col-sm-6 {
    max-width: 100%;
    flex: 100%;
    text-align: center;
  }

  .term__links ul {
    text-align: center;
    padding-top: 20px;
  }

  .term__links ul li a:after {
    height: 20px;
    right: 0;
    top: 0;
  }

  .inner_banner .banner__content__sec p {
    margin: 0 auto 20px;
    width: 100%;
    font-size: 15px;
  }

  .inner__about__content h3 {
    font-size: 20px;
  }

  .about__inner1 img {
    left: -20px;
    width: 60%;
  }

  .inner__about__content p {
    font-size: 13px;
    line-height: 25px;
  }

  .inner__about__content.pt-5.mt-5.btm__content {
    padding-top: 0 !important;
  }

  .inner_banner .banner__content__sec h1 {
    font-size: 34px;
    line-height: 39px;
  }

  .count__sec_inner:after {
    right: -32px;
  }

  .count__sec_inner span {
    font-size: 34px;
    line-height: 60px;
    -webkit-text-stroke-width: 0.3px;
  }

  .count__sec_inner p {
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 400;
  }

  .keep__terms__sec {
    margin: 50px 0px;
  }

  .term__keep__head h6 {
    font-size: 13px;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 22px;
    line-height: 29px;
  }

  .term__keep__head h3 i {
    top: 2px;
    left: 5px;
  }

  .about__short h4 {
    font-size: 19px;
    line-height: 29px;
  }

  .about__short p {
    font-size: 14px;
    line-height: 25px;
  }

  .logos__cli img {
    width: 75%;
  }

  .logos__cli:before {
    right: 0px;
    height: 122px;
  }

  .exp__sec {
    flex-direction: column-reverse;
    text-align: center;
  }

  .exp__sec:before {
    top: 0;
    left: 5px;
  }

  .ori-service-title h3 {
    font-size: 18px;
  }

  .ori-service-more a {
    font-size: 50px;
  }

  .ori-service-title h3 i {
    margin-left: 10px;
  }

  .ori-text-scroll-content h3 {
    font-size: 50px;
  }

  .LetsGetModal .modal-dialog {
    max-width: 640px;
  }

  .modal__img__sec {
    position: relative;
    display: none;
  }

  .LetsGetModal .col-sm-8 {
    max-width: 100%;
    flex: 100%;
    padding: 30px 50px;
  }

  .count__sec_inner:before {
    right: -15px;
    top: 0;
  }

  .count__sec_inner:after {
    right: -32px;
    top: 38px;
  }

  .product_detail_sec .col-sm-4 {
    flex: 50%;
    max-width: 50%;
  }

  .product_detail_sec .col-sm-8 {
    flex: 50%;
    max-width: 50%;
  }

  .pkg_list_detail {
    margin: 0 10px 0 16px;
  }

  .footer__content p {
    font-size: 14px;
    line-height: 27px;
  }

  .product_detail_sec {
    padding: 180px 0 100px;
  }

  .footer__content img {
    width: auto;
    margin-bottom: 30px;
  }

  footer .col-sm-6 {
    max-width: 100%;
    flex: 100%;
  }

  footer .col-sm-2 {
    flex: 35%;
    max-width: 35%;
  }

  footer .col-sm-4 {
    max-width: 65%;
    flex: 65%;
  }

  .footer__logo {
    padding-bottom: 20px;
    text-align: center;
  }

  .footer__content {
    text-align: center;
    padding-bottom: 20px;
  }

  .footer__content p {
    font-size: 14px;
    line-height: 27px;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .contact__form .col-sm-5 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 40px;
  }

  .contact__form .col-sm-7.pl-5 {
    max-width: 100%;
    flex: 100%;
  }

  .contact__form {
    background-position: 10%;
  }

  .form__content__head p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    color: #fff;
  }

  .btn__web ul li a {
    padding: 13px 23px;
    font-size: 15px;
  }

  .location__sec__main .col-sm-6 {
    max-width: 100%;
    flex: 100%;
  }

  .technology__sec__main {
    padding-top: 50px !important;
  }

  .term_content_Sec ul {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .services__box__icon img {
    width: 90px;
    position: relative;
    left: -10px;
    top: -20px;
  }

  .banner__img {
    width: 100%;
    height: 1170px;
    object-fit: cover;
  }

  .banner__sec__main .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .mobile__number {
    position: fixed !important;
    background: var(--primary_color);
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    z-index: 99;
    font-size: 25px;
    display: block;
  }

  h1.desktop__heading {
    display: none;
  }

  .banner__mobile {
    display: block;
    font-size: 36px;
    font-weight: bold;
  }

  a.btn__chat {
    display: none !important;
  }

  .banner__btn ul li a.btn__chat {
    font-size: 24px;
  }

  .banner__btn ul li a.btn__number {
    font-size: 21px;
    padding: 21px 15px;
  }

  section.intro__main {
    display: none;
  }

  section.services__sec__tab.padding__90 {
    display: none;
  }

  .mobile__pkg {
    display: none;
  }

  .technology__sec__main {
    padding-top: 0px !important;
    display: none;
  }

  section.discovery__sec__main.padding__90 {
    display: none;
  }

  .banner_main .carousel-item:after {
    background: #07262c;
  }

  .property__listing__content h4 {
    font-size: 24px;
  }

  .property__listing__img {
    padding-bottom: 30px;
  }

  .property__listing__content p {
    font-size: 15px;
    line-height: 29px;
  }

  .property__listing__sec .row.align-items-center:nth-child(2) {
    flex-direction: column-reverse;
  }

  .property__listing__sec .row.align-items-center {
    margin-bottom: 10px;
  }

  header .col-sm-9.float .btn__head.text-right {
    display: none;
  }

  .banner__form__main {
    display: block;
  }

  .container {
    width: 500px;
  }

  header .col-sm-3 {
    max-width: 45%;
    flex: 45%;
  }

  .banner__content__sec h1 {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 0;
  }

  .banner__content__sec p {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }

  .intro__services__mian .col-sm-4 {
    max-width: 50%;
    flex: 50%;
  }

  .banner__sec__main .carousel-item video {
    height: 1300px;
  }

  .banner__form__main {
    margin-top: 30px;
  }

  header {
    padding: 20px 0;
  }

  .main_menu_sec {
    display: none;
  }

  .porfolio__sec__main .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .tab__menu__port ul li {
    width: auto;
    margin: 0 0 10px 0 !important;
  }

  .tab__menu__port.pt-5 {
    padding-top: 10px !important;
  }

  .porfolio__sec__main .center__sec__head.mb-5 {
    margin-bottom: 0 !important;
  }

  .menu__stactic {
    position: unset;
    top: 0;
    text-align: center;
  }

  .tab__menu__port ul {
    border: 0;
    justify-content: center;
  }

  .tab__menu__port ul li a {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 10px !important;
    background: rgb(0 0 0 / 42%);
    margin: 0 4px;
  }

  .porfolio__sec__main .col-sm-8 {
    max-width: 100%;
    flex: 1005;
    margin-top: 20px;
  }

  .services__sec__tab {
    padding-top: 20px;
  }

  .services__sec__tab .col-sm-4 {
    max-width: 50%;
    flex: 50%;
  }

  .packages__tab__menu ul li a {
    padding: 11px 20px;
    font-size: 11px;
    margin-bottom: 10px;
  }

  .org_pri h5 {
    font-size: 23px;
    padding: 0 5px 0 15px;
  }

  .org_pri h5 small {
    font-size: 15px;
  }

  .org_pri span {
    color: #9193b9;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
  }

  .cut_price span.perc {
    font-size: 16px;
  }

  .detail__link a {
    font-size: 15px;
  }

  .padding__90 {
    padding: 60px 0;
  }

  ul.pkg-list li {
    font-size: 12px;
  }

  .packages_sec_main:before {
    background-position: -10% -940px;
  }

  .tech__box {
    padding: 25px 15px;
    height: 370px;
  }

  .development-img {
    width: 104px;
  }

  .ways__works .col-sm-6 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 30px;
  }

  .ways__works__box img {
    height: auto;
  }

  .industries_sec li.col-sm-2.p-0 {
    max-width: 33%;
    flex: 33%;
  }

  .Blog__sec__main .col-sm-6 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 30px;
  }

  .LetsGetModal .modal-dialog {
    max-width: 520px;
  }

  .popup__head p {
    font-size: 14px;
  }

  .product_detail_sec .col-sm-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .product_detail_sec .col-sm-8 {
    flex: 100%;
    max-width: 100%;
  }

  .pkg_detail_sec {
    min-height: 330px;
  }

  .pkg_detail_sec h4,
  .pkg_detail_sec h1 {
    font-size: 18px;
  }

  .pkg_list_detail ul.pkg-list {
    height: 565px;
  }

  .inner__about__sec .col-sm-6 {
    max-width: 100%;
    flex: 100%;
  }

  .about__inner1 img {
    display: none;
  }

  .inner__about__content.pt-5.mt-5.btm__content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .inner__about__content {
    padding-top: 30px;
  }

  .inner__about__content p {
    font-size: 14px;
    line-height: 25px;
  }

  .inner_banner .banner__content__sec p {
    margin: 0 auto 20px;
    width: 100%;
    font-size: 14px;
  }

  .inner_banner .banner__content__sec h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .keep__terms__sec .col-sm-6 {
    max-width: 100%;
    flex: 100%;
  }

  .keep__terms__sec .about__short {
    padding-top: 30px !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .exp__sec {
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .border_cli {
    border: 1px solid rgba(255, 255, 255, 0.17);
    margin: 70px 0px 0;
  }

  .logos__cli {
    text-align: center;
    border-right: 0;
    padding: 30px 0;
  }

  .logos__cli img {
    width: 100%;
  }

  .logos__cli:before {
    right: 0px;
    height: 82px;
  }

  .keep__terms__sec {
    margin: 50px 0px 0;
  }

  .services__inner .col-sm-12.pt-5.mt-5 {
    padding-top: 0 !important;
    margin-top: 20px !important;
  }

  .services__inner .col-sm-4 {
    max-width: 100%;
    flex: 100%;
    margin-bottom: 30px;
  }

  .count__sec_inner:before {
    right: -15px;
    top: 10px;
    height: 70px;
  }

  .count__sec_inner:after {
    right: -22px;
    top: 28px;
    font-size: 23px;
  }

  .packages_sec_main .row.pt-5 {
    padding-top: 0 !important;
    padding-bottom: 20px;
  }

  .app-container {
    display: block;
  }

  header {
    padding: 23px 0;
  }

  .mobile-nav-btn {
    display: block;
    z-index: 9999999;
    top: -3px;
  }

  header.menu_fixed {
    padding: 20px 0;
  }

  .porfolio__sec__main .tab-content {
    overflow-y: scroll;
    height: auto;
  }
}

@media (max-width: 500px) {
  .container {
    width: 430px;
  }

  .packages_sec_main .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .client_logo_sec .col-sm-3 {
    max-width: 50%;
    flex: 50%;
  }

  .experience_sec_main .col-sm-3 {
    max-width: 50%;
    flex: 50%;
  }

  .ways__works__box {
    position: relative;
    border-radius: 10px;
    margin-bottom: 40px;
  }
}

@media (max-width: 450px) {
  .container {
    width: 360px;
  }

  .box__frst .item__content__tab p {
    font-size: 14px;
  }

  .icon__frst span {
    width: 40px;
    height: 40px;
  }

  .item__content {
    padding: 20px 23px 20px 12px;
    flex-direction: column;
  }

  .item__content__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .item__content__tab p {
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
  }

  .item__content__icon span {
    color: var(--white);
    font-size: 30px;
    margin-left: 0;
  }

  .item__content__tab p {
    font-size: 13px;
    line-height: 22px;
    font-weight: 300;
  }

  .item__content.box__frst {
    flex-direction: column-reverse;
  }

  .item__content.box__frst .item__content__icon.icon__frst {
    margin-bottom: 10px;
  }

  .center__sec__head h2 {
    font-size: 18px;
    padding-bottom: 10px;
    line-height: 30px;
  }

  .tab__menu__port ul li a {
    padding: 12px 17px;
    font-size: 14px;
    border-radius: 10px !important;
    background: rgb(0 0 0 / 42%);
    margin: 0 4px;
  }

  .portfolio__inner__lnks a i {
    color: var(--primary_color);
    font-size: 30px;
  }

  .center__sec__head p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    color: rgb(255 255 255 / 68%);
  }

  .services__sec__tab .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .services__box__content {
    max-width: 100%;
  }

  .services__box {
    min-height: auto;
  }

  .packages__tab__menu ul li a {
    padding: 11px 28px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .packages__tab__menu ul {
    border: 0;
    margin: 10px 0;
  }

  .packages_sec_main .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .mobile__none {
    display: none;
  }

  .banner-form .col-sm-6.d-none {
    display: block !important;
  }

  .LetsGetModal textarea {
    width: 100%;
    height: 140px;
  }

  .modal {
    z-index: 9999999;
  }

  .LetsGetModal button.close {
    top: 10px;
    right: 10px;
  }

  footer .col-sm-2 {
    flex: 100%;
    max-width: 100%;
  }

  .footer__content img {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__content p {
    font-size: 15px;
    line-height: 27px;
    margin: 0 auto;
    padding-bottom: 10px;
    width: 100%;
  }

  .footer__links ul li a {
    color: var(--white);
    font-size: 15px;
  }

  .footer__head h5 {
    font-size: 16px;
    padding-bottom: 10px;
  }

  footer .col-sm-2 {
    margin-bottom: 20px;
  }

  .product_detail_sec {
    padding: 120px 0 40px;
    background-size: 100%;
  }

  .LetsGetModal .modal-dialog {
    max-width: 410px;
    margin: 30px auto;
  }

  .experience_sec_main .col-sm-3 {
    max-width: 50%;
  }

  .keep__terms__sec .col-sm-2 {
    max-width: 33%;
  }

  .logos__cli:before {
    border: 0px;
  }

  .packges__head h6 {
    text-align: center;
    font-size: 16px;
  }

  .border_cli {
    border: 1px solid rgba(255, 255, 255, 0.17);
    margin: 20px 15px 0;
  }

  .term__keep__head h3 {
    color: #fff;
    font-size: 19px;
    line-height: 29px;
  }

  .packages_box_sec {
    margin-bottom: 30px;
  }

  ul.pkg-list li {
    font-size: 14px;
  }

  .inner_banner .banner__content__sec h1 {
    font-size: 17px;
    line-height: 30px;
  }
}

@media (max-width: 390px) {
  .container {
    width: 285px;
  }

  .banner__mobile {
    display: block;
    font-size: 28px;
  }

  .banner__sec__main .carousel-item video {
    height: 1410px;
  }

  .banner__btn ul li a.btn__number {
    font-size: 18px;
  }

  .industries_sec li.col-sm-2.p-0 {
    max-width: 50%;
    flex: 50%;
  }

  .banner__btn ul li a {
    padding: 13px 19px;
    font-size: 15px;
  }

  .intro__services__mian .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .item__content__tab p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
  }

  .tab__menu__port ul li a {
    padding: 9px 16px;
    font-size: 12px;
  }

  .center__sec__head h2 {
    font-size: 16px;
    padding-bottom: 9px;
    line-height: 26px;
  }

  .center__sec__head p {
    font-size: 15px;
    line-height: 28px;
  }

  .services__box__content p {
    font-size: 14px;
    line-height: 25px;
  }

  .packages__tab__menu ul li a {
    padding: 11px 18px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .LetsGetModal .modal-dialog {
    max-width: 360px;
    margin: 30px auto;
  }

  .technology__sec__main {
    padding-top: 0px !important;
  }

  .technology__sec__main .col-sm-4 {
    max-width: 100%;
    flex: 100%;
  }

  .tech__box {
    padding: 25px 15px;
    height: auto;
  }

  .discovery__content__sec h2 {
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .stage__sec ul li {
    padding: 24px 15px 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    -ms-flex: 2;
    flex: 3;
    margin: 0 5px 0 5px;
    width: 47%;
    float: left;
    margin-bottom: 20px;
    min-height: 150px;
  }

  .stage__sec ul li span {
    font-size: 29px;
    margin-bottom: 10px;
  }

  .discovery__sec__main {
    background-position: 120px 0px;
    padding-bottom: 0 !important;
  }

  .location__content h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .location__sec__main {
    background-size: 350px;
  }

  .client_logo_sec .col-sm-3 {
    max-width: 33%;
  }

  .logo__cilent img {
    width: 90px;
  }

  .ways__works__box img {
    height: 260px;
  }

  .logo_tab_platform {
    padding: 21px 4px 20px 5px;
    line-height: 60px;
    margin-left: 7px;
  }

  .logo_tab_platform span img {
    width: 25px;
    height: 25px;
  }

  .logo_tab_platform h5 {
    display: inline-block;
    font-size: 11px;
    padding-left: 5px;
  }

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

  .footer__content p {
    font-size: 13px;
    line-height: 23px;
  }

  .inner_banner .banner__content__sec h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .form__content__head h2 br {
    display: none;
  }

  .form__content__head h2 {
    font-size: 19px;
    line-height: 28px;
  }

  .form__content__head p {
    font-size: 15px;
    line-height: 24px;
    width: 100%;
    color: #fff;
  }

  .mobile-nav nav li a {
    font-size: 14px;
  }

  .inner_banner .banner__content__sec {
    padding-top: 60px;
  }

  .inner_img_ban {
    width: 100%;
    height: 440px;
  }

  .logo__Sec__main {
    padding-top: 10px;
  }

  header .col-sm-3 {
    max-width: 55%;
    flex: 55%;
  }
}

/*Responsive End*/




section.packages.sec-pad.homepackge .heading42 {
  color: #fff;
}

section.packages.sec-pad.homepackge .portfolio-tabs .nav-tabs .nav-link {
  color: #fff;
}

section.packages.sec-pad.homepackge .package-box {
  /* background: #fff; */
}

section.packages.sec-pad.homepackge .package-box .pack-price {
  color: #fff;
}
.contact-form textarea {
  color: #fff !important;
}


section.packages.sec-pad.homepackge .package-box h4 {
  color: #fff;
}