@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?g2rwjw');
  src: url('../fonts/icomoon.eot?g2rwjw#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?g2rwjw') format('truetype'),
    url('../fonts/icomoon.woff?g2rwjw') format('woff'),
    url('../fonts/icomoon.svg?g2rwjw#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-AI-Powered:before {
  content: "\e900";
}

.icon-App-Development:before {
  content: "\e901";
}

.icon-Blockchain:before {
  content: "\e902";
}

.icon-Enterprise:before {
  content: "\e903";
}

.icon-Growth:before {
  content: "\e904";
}

.icon-Validation:before {
  content: "\e905";
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
  /*padding: 0 !important;*/
}

.page-wrap {
  min-height: 100%;
  margin-bottom: 0px;
}

.page-wrap:after {
  content: "";
  display: block;
}

footer,
.page-wrap:after {}

/*--------------General CSS---------*/
img {
  border: 0 none;
  max-width: 100%;
  vertical-align: top;
}

a {
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /*color: #3e3e3e;*/
}

a:hover,
a:focus {
  /*color: #fe5e3a;*/
  text-decoration: none;
  outline: none;
}

button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

p {
  line-height: 27px;
}

p:last-child {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0px 0px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #252b33;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  background-color: #fff;
}


/* ======================menu css nad Go to top start  ====================== */

.topnav {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  -webkit-transition: all .7s;
  transition: all .7s;
  background: #FFF;
  /* box-shadow: 0 0px 20px 2px rgb(0 0 0 / 10%); */
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: 'Top';
  text-align: center;
  line-height: 44px;
  font-size: 11px;
  font-weight: normal;
  /*color: #7da966;*/
  color: #000;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  font-weight: bold;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #7da966;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  fill: #FFF;

}

/* ======================menu css nad Go to top end  ====================== */


/*-----------------------TOGGLE STICKY HOME CSS START-----------------------------------------------*/

.navbar-light .navbar-toggler {
  border: none;
  outline: none;
}

.nav-toggle-sm {
  transform: scale(.65);
  margin-right: -.3125rem;
}

.nav-toggle {
  width: 29px;
  height: 29px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

.stick {
  width: 35px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #7da966;
  display: inline-block;
}

.body-menu-opened .collapsed .stick {
  background-color: #7da966;
}

.body-menu-opened .stick-1 {
  animation: stick-1-open .85s ease-out forwards;
}

.body-menu-opened .stick-2 {
  animation: stick-2-open .85s linear forwards;
  width: 35px;
  margin-left: 0px;
}

.body-menu-opened .stick-3 {
  animation: stick-3-open .85s linear forwards;
}

.stick:last-child {
  margin-bottom: 0px;
}

@-webkit-keyframes stick-1-open {
  0% {
    width: 35px;
  }

  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }

  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@keyframes stick-1-open {
  0% {
    width: 35px;
  }

  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }

  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@-webkit-keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@-webkit-keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

@keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

.body-menu-close .stick-1 {
  width: 3px;
  animation: stick-1-close .85s ease-out forwards;
}

.body-menu-close .stick-2 {
  animation: stick-2-close .85s ease-out forwards;
  margin-left: 0px;
}

.body-menu-close .stick-3 {
  animation: stick-3-close .85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {

  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }

  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@keyframes stick-1-close {

  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }

  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }

  40% {
    width: 0px;
  }

  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  80% {
    width: 0px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }

  40% {
    width: 0px;
  }

  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  80% {
    width: 0px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@-webkit-keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }

  40% {}

  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  90% {
    width: 3px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }

  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }

  40% {}

  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  90% {
    width: 3px;
  }

  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

/*-----------------------TOGGLE STICKY HOME CSS end-----------------------------------------------*/


/*-----------------------main styles starts here-----------------------------------------------*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

label {
  color: #001c27;
  font-weight: 400;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0px;
}

.text_red {
  color: #dd4b39;
}

textarea.form-control {
  resize: none;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-control {
  height: 47px;
  box-shadow: none;
  border: 1px solid #dadada;
  border-radius: 0;
  font-size: 13px;
  color: #747c84;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ffc107;
}

.overlay_old {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.font_b {
  font-weight: 700;
}

/*=====================================	PLACE HOLDER CSSS START HERE 		====================================*/
input.form-control::-webkit-input-placeholder {
  color: #747c84;
}

input.form-control::-moz-placeholder {
  color: #747c84;
}

input.form-control::-ms-placeholder {
  color: #747c84;
}

input.textbox::-ms-input-placeholder {
  color: #747c84;
}

input.textbox::-ms-input-placeholder {
  color: #747c84;
}

textarea.form-control::placeholder {
  color: #747c84;
}

textarea.form-control {
  min-height: auto;
  height: auto;
}

.cf:before,
.cf:after {
  content: "";
  display: table
}

.cf:after {
  clear: both;
}

.container {
  width: 100%;
  max-width: 1170px;
}

/*===================================== PLACE HOLDER CSSS END HERE 		====================================*/
/*===================================== Commen Butons ===================================*/


/*------ Button css over ----------------*/

/*======================================================================*/

/*			CUSTOM CHECK BOX AND CUSTOM RADIO CSS START		*/
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  left: -9999px;
  position: absolute;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:before,
.custom-checkbox [type="checkbox"]:checked+label:before {
  border: 1px solid #fe5e3a;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.custom-checkbox [type="checkbox"]:not(:checked)+label:after,
.custom-checkbox [type="checkbox"]:checked+label:after {
  color: #fff;
  content: "\f00c";
  font-size: 14px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0px;
  left: 0px;
  line-height: 1.45;
  padding: 1px 2px 2px 3px;
  transition: all 0.2s ease 0s;
  background-color: #fe5e3a;
  width: 20px;
  height: 20px;
}

.custom-checkbox [type="checkbox"]:not(:checked)+label,
.custom-checkbox [type="checkbox"]:checked+label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
}

/*	CUSTOM check CSS START	*/
/*	CUSTOM RADIO CSS START	*/
.radio-btn-small {
  display: inline-block;
  margin-right: 15px;
  padding: 0;
  position: relative;
  padding-left: 30px;
  margin-top: 3px;
}

.radio-btn-small:last-child {
  margin-right: 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]+label {
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

input[type="radio"]+label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 2px 8px 0 0;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0px;
  border: 1px solid #fe5e3a;
  background-color: #fff;
  border-radius: 100px;
}

input[type="radio"]:checked+label span:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #fe5e3a;
  top: 3px;
  left: 3px;
  border-radius: 100px;
}

input[type="radio"]:checked+label span {
  background-color: #fff;
}

input[type="radio"]:checked+label {
  color: #282828;
}


/*========================================================================
					bootstrap select box over
==========================================================================*/
.bootstrap-select.open>.dropdown-toggle.btn-default:hover,
.bootstrap-select.open>.dropdown-toggle.btn-default:focus {
  background-color: #fff;
}

.bootstrap-select>.dropdown-toggle {
  border: 1px solid #ababab;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.bootstrap-select.btn-group .dropdown-toggle .fas {
  color: #555;
}

/*========================================================================
					bootstrap select box over
==========================================================================*/



/*home_css_start*/

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 10px;
}



.navbar-brand {
  padding-top: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #7da966;
}

.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:hover,
.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

/*----------------*/

.top_menu {
  position: relative;
}

.nav_bar_ctm .navbar-brand {
  position: relative;
}

.home_banner {
  margin-bottom: 50px;
}

.in_content {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.banner_text {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.banner_text h1 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 35px;
}

.banner_text p {
  font-weight: 500;
  line-height: 27px;
  max-width: 750px;
  margin: 0px auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  font-size: 50px;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 9;
}

.main_btn {
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  background-color: #086ad8;
  color: #FFF;
  border-radius: 22px;
  line-height: 45px;
  display: inline-block;
  font-weight: 600;
  padding: 0px 20px;
  letter-spacing: 1px;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;

}


.main_btn i {
  padding-left: 10px;
  font-size: 18px;
  vertical-align: middle;
  margin-top: -2px;
}

.main_btn:hover i {
  animation: tfLeftToRight .5s forwards;
}

@keyframes tfLeftToRight {
  49% {
    transform: translate(100%)
  }

  50% {
    opacity: 0;
    transform: translate(-100%)
  }

  51% {
    opacity: 1
  }
}

.main_btn:hover {
  color: #FFF;
}


/* select2_css_start */

.select2-container {
  width: 100% !important;
  padding: 0;
}

span.select2-selection__rendered {
  white-space: nowrap;
}

.select2-container {
  width: 100% !important;
}

.select2-search--dropdown .select2-search__field {
  width: 98%;
}

.select2-dropdown .select2-results__option {
  position: relative;
}

/* select2_css_end */


/* ----------------------------- home_css_start ----------------------------- */
@-webkit-keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes float-bob {

  0%,
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
  }
}

@keyframes float-bob {

  0%,
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
  }
}

.animation_1 {
  animation-name: float-bob;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear
}

.header .menu>ul>li>.main_btn {
  display: inline-block;
  color: #FFF;
}

/* .header .menu>ul>li>.main_btn.animation_1 {
  animation-duration: 2s
} */
.header .menu>ul>li>.main_btn:hover {
  color: #FFF;
}

.banner_data h1 {
  font-weight: bold;
  color: #252b33;
  font-size: 37px;
  line-height: 53px;
}

.banner_data h1 span {
  color: #086ad8;
}

.banner_data h4 {
  font-weight: 500;
  color: #252b33;
  font-size: 18px;
  line-height: 33px;
  margin: 30px 0px;
}

.section_mb50 {
  margin-bottom: 50px;
}

.web_title h5 {
  text-transform: uppercase;
  font-weight: bold;
  color: #086ad8;
  font-size: 18px;
}

.web_title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #252b33;
  padding: 13px 0px 14px;
}

.web_title p {
  font-size: 15px;
  font-weight: 500;
}

.services_tab_main {
  margin-top: 50px;
}

.nav-pills .nav-link {
  text-align: left;
  margin-bottom: 25px;
  background-color: #FFF;
  box-shadow: 0 0 12px rgb(0 0 0 / 12%);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 19px 15px;
  color: #252b33;
}

.nav-pills .nav-link i {
  font-size: 30px;
  vertical-align: middle;
  padding-right: 12px;
}

.nav-pills .nav-link:last-child {
  margin-bottom: 0px;
}

.services_prototype {
  position: relative;
  background-color: #eef4fc;
  padding: 40px 20px 20px;
  border-radius: 5px;
}

.services_prototype h3 {
  font-size: 28px;
  font-weight: bold;
}

.services_prototype h5 {
  font-weight: 500;
  font-size: 19px;
  margin: 20px 0px 20px;
}

.services_prototype p {
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
}

.services_prototype_icon {
  margin-top: 40px;
}

.prototype_icon {
  margin-bottom: 20px;
  cursor: pointer;
}

.prototype_icon:hover img {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}

.prototype_icon img {
  margin: 0px auto;
  display: block;
  margin-bottom: 10px;
}

.prototype_icon a {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: #252b33;
}

.number_main {
  position: absolute;
  right: 0px;
  top: 0px;
}

@supports (-webkit-text-stroke: 1px black) {
  .number {
    text-transform: capitalize;
    font-size: 100px;
    -webkit-text-stroke: 1px #cee1f7;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 10px;
  }

  /* .number:before {
    -webkit-text-fill-color: #cee1f7;
  } */
}

.number {
  cursor: pointer;
  position: relative;
  text-shadow: 5px 5px 5px 5px #333;
}

.number:before {
  content: attr(data-fill);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: 0.9s;
  width: 0;
}

/* .number:hover:before {
  width: 100%;
} */

.home_portfolio .slider_block {
  background-color: #e01b49;
}

.portfolio_carousel,
.slide_carousel {
  margin-top: 40px;
}

.portfolio_carousel .owl-nav {
  position: absolute;
  z-index: 1;
  width: 86%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
}

.portfolio_carousel .owl-nav .owl-prev,
.portfolio_carousel .owl-nav .owl-next {
  color: #fff;
  border-color: #fff;
}

.portfolio_carousel .owl-nav .owl-prev i,
.portfolio_carousel .owl-nav .owl-next i {
  font-size: 26px;
  line-height: 2.1;
}


.home_portfolio .portfolio_carousel .item {
  padding: 60px 0;
}

.home_portfolio .portfolio_text {
  color: #fff;
  padding-left: 75px;
}

.home_portfolio .portfolio_text h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.home_portfolio .portfolio_text p+span {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.home_portfolio .portfolio_text .btn-group a img {
  height: 46px;
}

.home_portfolio .portfolio_text .btn-group a:last-child {
  margin-left: 20px;
}

.home_portfolio .portfolio_text .download_rating {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  text-align: center;
}

.home_portfolio .portfolio_text .download_rating h4 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.home_portfolio .portfolio_text .download_rating span {
  font-size: 16px;
}

.home_portfolio .portfolio_text .download_rating .download {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #fff;
}

.home_portfolio .portfolio_img {
  padding-right: 85px;
}


/* Business Solution Css Start */

.business_solution .web_title {
  margin-bottom: 40px;
}

.business_solution .bs_box {
  text-align: center;
  padding: 20px 30px;
  box-shadow: 0 0 8px rgb(0 0 0 / 10%);
  margin-bottom: 30px;
  transition: .4s all;
  cursor: pointer;
}

.business_solution .bs_box:hover {
  box-shadow: 0 0 8px rgb(0 0 0 / 14%);
}

.business_solution .bs_box img {
  margin: 0 auto 15px auto;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;

}

.bs_box:hover img {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.business_solution .bs_box a {
  font-weight: 700;
  color: #252b33;
  line-height: 1.5;
}

/* Why Choose Section Css Start */

.why_choose_us .why_block {
  background-color: #086ad8;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  height: 95%;
}

.why_choose_us .why_block img {
  margin: 0 auto;
}

.why_choose_us .why_block h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.6;
}

.why_choose_us .why_block p {
  line-height: 1.8;
  font-size: 17px;
}

.why_choose_us .card_block {
  padding: 30px 10px 30px 15px;
  box-shadow: 0 0 8px rgb(0 0 0 / 8%);
  min-height: 250px;
  margin-bottom: 30px;
}

.why_choose_us .card_block h4 {
  font-size: 20px;
  font-weight: 600;
}

.why_choose_us .card_block:hover .img {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}

.why_choose_us .card_block .d-flex img {
  width: auto;
}

.why_choose_us .card_block .d-flex h4 {
  width: calc(100% - 50px);
}

/* Testimonial Section */
.testimonial_section {
  background-image: url(../images/testimonial_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 70px 0;
}

.testimonial_section .testimonial_slide {
  margin-top: 20px;
}

.testimonial_section .client_info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial_section .client_info .client_img {
  border: 5px solid #fff;
  border-radius: 100%;
}

.testimonial_section .client_info .text h5 {
  color: #086ad8;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial_slider .owl-dots {
  text-align: left;
  margin-top: 30px;
}

.testimonial_slider .owl-dots .owl-dot span {
  width: 20px;
  height: 8px;
  background-color: #a9caf1;
  border: none;
  transition: .4s all;
}

.testimonial_slider .owl-dots .owl-dot.active span:hover,
.testimonial_slider .owl-dots .owl-dot:hover span {
  background-color: #086ad8;
}

.testimonial_slider .owl-dots .owl-dot.active span {
  width: 35px;
  background-color: #086ad8;
}

/* Client Section Css Start */
.satisfied_client {
  padding: 50px 0;
  background-color: #f8f8f8;
}

.satisfied_client .client_box {
  min-height: 115px;
  box-shadow: 0 0 8px rgb(0 0 0 / 8%);
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
}

.satisfied_client .web_title h5 {
  font-size: 16px;
}

.satisfied_client .web_title h2 {
  padding-top: 10px;
  text-transform: uppercase;
}

.satisfied_client .side_title {
  border-right: 1px solid #086ad8;
}

.client_slider .owl-nav {
  position: absolute;
  left: -34%;
  bottom: 0;
}

.client_slider .owl-nav .owl-prev {
  position: relative;
  left: 0;
}

.client_slider .owl-nav .owl-next {
  position: relative;
  right: auto;
  margin-left: 20px;
}

.client_slider .owl-nav .owl-prev,
.client_slider .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  line-height: 42px;
}

.client_slider .owl-nav .owl-prev,
.client_slider .owl-nav .owl-next {
  color: #086ad8;
  border-color: #086ad8;
}


/* Footer Css Start */

footer {
  background-image: url(../images/footer_bg.jpg);
  color: #fff;
  padding-top: 40px;
}

footer a {
  color: #fff;
}

footer h3 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

footer h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 50px;
  background-color: #086ad8;
  height: 4px;
  display: block;
}

footer .f_logo {
  margin-bottom: 15px;
  display: block;
}

footer .social_media {
  display: flex;
}

footer .social_media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #086ad8;
  border-radius: 100px;
  color: #086ad8;
  margin-right: 10px;
}

footer .social_media li a:hover {
  background-color: #086ad8;
  color: #fff;
}

footer .link_block a {
  margin-bottom: 10px;
  display: block;
}

footer .contact ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

footer .contact ul li .icon {
  margin-right: 10px;
  width: 30px;
}

footer .contact ul li .icon i {
  font-size: 22px;
}

footer .contact ul li .text {
  width: calc(100% - 30px);
}

footer .contact ul li .mail_list a:last-child {
  /*padding-left: 15px;*/
  /*margin-left: 10px;*/
  /*border-left: 1px solid #086ad8;*/
}

footer .copy_right {
  border-top: 1px solid #343b44;
}

/* ----------------------------- home_css_end ----------------------------- */


.soluction_section {
  margin-top: 50px;
}

.soluction_section .web_title h2 {
  padding-bottom: 0px;
  padding-top: 0px;
}

.sol_box {
  border: 1px solid #ccc;
  padding: 15px 20px;
  margin-top: 30px;
  transition: .4s all;
}

.sol_box:hover {
  border-color: #086ad8;
}

.sol_box img {
  width: 40px;
  height: auto;
}

.sol_box:hover img {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}

.sol_box h3 {
  font-weight: 600;
  color: #000000;
  margin: 15px 0 5px 0;
  font-size: 22px;
  transition: .4s all;
}

.service_box {
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0 8px rgb(0 0 0 / 10%);
  margin-bottom: 30px;
  transition: .4s all;
  border-radius: 4px;
}

.service_box:hover {
  box-shadow: 0 0 8px rgb(0 0 0 / 14%);
}

.service_box img {
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

.service_box:hover img {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.service_box h4 {
  font-size: 18px;
  margin: 15px 0 10px 0;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  color: #252B33;
}

.container-box {
  max-width: 1430px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.wwd-content-center h2 {
  margin-bottom: 40px;
}

.wwd-content-center {
  text-align: center;
}

.wwd-service-section {
  margin-bottom: 80px;
}

.wwd-service-section.left-section .service-content {
  padding: 30px 0px 0px 0px;
}

.wwd-service-section.left-section .service-content p a,
.wwd-service-section.right-section .service-content p a {
  color: #252B33;
}

.wwd-service-section.right-section .service-content {
  padding: 30px 0px 0px 0px;
}

.wwd-service-section .service-content h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.service-points,
.service-content .green-btn {
  margin-top: 40px;
}

.service-points ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-bottom: 0px;
}

.service-points ul.two-col li {
  width: 50%;
  list-style-type: disc;
}

.service-points ul li {
  font-size: 14px;
  color: #252B33;
  list-style-position: outside;
  padding: 0 30px 5px 0px;
  width: 100%;
  position: relative;
}

.service-points ul li a {
  color: #252B33;
}

.service-points ul.points-white li {
  color: #ffffff;
}

.service-points ul.points-white li a {
  color: #252B33;
}

/* .wwd-service-content-center{ margin-bottom: 100px;} */
.wwd-service-content-center .wwd-service-bg {
  background-color: #f8f8f8;
}

.wwd-service-content-center:last-child {
  margin-bottom: 0;
}

.wwd-service-content-center .wwd-content-center {
  padding: 80px 40px;
}

.wwd-service-content-center .wwd-content-center.pad-b-0 {
  padding-bottom: 0px;
}

.wwd-service-content-center .wwd-content-center .img-box {
  margin-top: 60px;
}

.wwd-service-content-center .wwd-content-center .technology-icon {
  margin-bottom: 0px;
}

.wwd-service-content-center .wwd-content-center .technology-icon ul {
  justify-content: center;
}

.our-target-customers-section {
  padding-bottom: 100px;
}

.our-target-customers-section .mobile-app-services p {
  padding-right: 30px;
}

.mobile-app-services {
  margin-top: 80px;
}

.mobile-app-services h3 {
  margin: 32px 0px 16px 0px;
  font-weight: 600;
  color: #252B33;
  font-size: 24px;
}

.services-icon-section {
  padding: 0px 0px 80px 0px;
}

.services-icon-section .row {
  justify-content: center;
}

.services-icon-section .icon-block {
  text-align: center;
  padding: 40px 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services-icon-section .icon-block .icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
}

.services-icon-section .icon-block .icon-box svg {
  width: 48px;
  height: 48px;
}

.services-icon-section .icon-block .icon-box .tech-icon {
  font-size: 40px;
  color: #252B33 !important;
}

.services-icon-section .icon-block .icon-box .tech-icon.icon-caffe,
.services-icon-section .icon-block .icon-box .tech-icon.icon-open-source-platform {
  font-size: 26px;
}

.services-icon-section .icon-block h5,
.services-icon-section .icon-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #252B33;
  font-weight: 500;
  margin-top: 16px;
}

.services-icon-section .icon-block:hover {
  background-color: #f8f8f8;
}

.our-work-listing-section {
  padding-bottom: 100px;
}

.our-work-listing-section .case-listing-col {
  margin-top: 60px;
}

.our-work-listing-section .green-btn {
  text-align: center;
  margin-top: 60px;
}

.case-listing-col .cs-listing-img {
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
  height: 270px;
  border-radius: 5px;
}

.case-listing-col .cs-listing-img img {
  width: 360px;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: 0.4s ease;
}

.case-listing-col .cs-listing-img:hover img {
  transform: scale(1.08);
}

.case-listing-col .cs-project-detail {
  margin-top: 15px;
}

.case-listing-col .cs-project-detail p {
  color: #81959E;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 0px;
  min-height: 26px;
}

.case-listing-col .cs-project-detail h3 {
  color: #252B33;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.case-listing-col .cs-technology {
  margin-top: 10px;
}

.case-listing-col .cs-technology span {
  border: 1px solid rgba(218, 225, 228, 1);
  border-radius: 12px;
  font-size: 12px;
  color: #81959E;
  font-weight: normal;
  padding: 1px 10px;
  margin-right: 4px;
  display: inline-block;
}

.discovery-workshop-section {
  padding-top: 120px;
  background-color: #f8f8f8;
}

.discovery-workshop-section .discovery-content {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.discovery-workshop-section .discovery-workshop-wireframes {
  padding-top: 60px;
  text-align: center;
}

.workshop-service-section {
  height: auto;
  padding: 120px 0px;
}

.workshop-service-section h2 {
  color: #252B33;
  text-align: center;
  margin-bottom: 50px;
}

.workshop-service-section .service-box {
  background: #f8f8f8;
  border-radius: 4px;
  padding: 30px;
  margin-top: 30px;
  height: calc(100% - 30px);
}

.workshop-service-section .service-box h3 {
  color: #252B33;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.workshop-service-section .service-box p {
  color: #252B33;
  margin-bottom: 0px;
}

.workshop-service-section .service-box h4 {
  color: #252B33;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.service-title-box {
  text-align: center;
}

.service-title-box p {
  font-size: 20px;
  padding-top: 30px;
  width: 92%;
  margin: 0 auto;
}

.service-title-box h5 {
  font-size: 20px;
  color: #323A45;
  letter-spacing: 0;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.service-title-box .separator-line {
  width: 60px;
  height: 4px;
  background-color: #F13C31;
  display: block;
  margin-top: 40px;
}

.discovery-benefits {
  padding-top: 120px;
  background-color: #f8f8f8;
}

.discovery-benefits .benefits-services {
  margin-top: 50px;
  padding-bottom: 80px;
}

.discovery-benefits .benefits-services .benefits-box {
  text-align: center;
  margin-top: 30px;
}

.discovery-benefits .benefits-services .benefits-box h3 {
  color: #323A45;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 30px 0 12px 0px;
}

.discovery-design-development {
  padding-bottom: 120px;
}

.discovery-design-development .discovery-design-title {
  text-align: center;
  margin: 80px 0px 100px;
}

.discovery-design-development .work-animation-sec {
  position: relative;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: -60px;
  margin-bottom: 100px;
}

.discovery-design-development .work-more-sec {
  padding-top: 80px;
  border-top: 1px solid #EEEEEE;
}

.discovery-design-development .work-more-sec p {
  width: 80%;
  margin: 0 auto;
  color: #252B33;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 48px;
}

.work-process-section {
  padding: 120px 0px;
  background-color: #f8f8f8;
}

.work-process-section .work-process-img {
  text-align: center;
  margin-top: 80px;
}

.work-process-section .work-process-services {
  margin-top: 140px;
}

.work-process-section .work-process-info .service-title-box {
  text-align: left;
}

.work-process-section .work-process-info {
  margin-top: 20px;
}

.work-process-section .work-process-info .work-process-point {
  margin-top: 40px;
}

.work-process-section .work-process-info .work-process-point h3 {
  color: #323A45;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.work-process-section .work-process-arrow {
  text-align: center;
}

.work-process-section .work-process-arrow.right-arrow {
  transform: rotateY(180deg);
}

.work-process-section .work-process-block.right-side .work-img {
  text-align: right;
}

.work-process-section .design-work-block {
  margin-top: 80px;
}

.work-process-section .design-work-block .row {
  align-items: center;
}

.work-process-section .design-work-block .work-img {
  text-align: right;
}

.work-process-section .design-work-block .design-work-info h2 {
  font-style: normal;
}

.work-process-section .design-work-block .design-work-info .blue-color {
  color: #F13C31;
}

.work-process-section .design-work-block .design-work-info p {
  margin-bottom: 20px;
}

.work-process-section .design-work-block .design-work-info span {
  color: #323A45;
  font-size: 16px;
  display: block;
  margin: 10px 0px 40px 0px;
}

.our-work-section {
  padding: 120px 0px;
  border-bottom: 1px solid #EEEEEE;
  background-color: #ffffff;
}

.our-work-section .portfolio-section {
  padding-top: 50px;
}

.our-work-section .portfolio-section .portfolio-box-container .portfolio-box {
  padding-top: 30px;
}

.our-work-section .portfolio-section .portfolio-box-container .green-btn {
  text-align: center;
  margin-top: 60px;
}

.wwd-service-section .service-content .gameanax-button {
  margin-top: 40px;
}

.services-box-hover-section,
.industry-view-sec {
  margin-bottom: 100px;
}

.services-box-hover-section .services-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  margin-right: -15px;
  margin-left: -15px;
}

.services-box-hover-section .services-block {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.services-box-hover-section .services-block.three-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.services-box-hover-section .services-block .service-info {
  padding: 30px;
}

.services-box-hover-section .services-block .service-info h2 {
  color: #252B33;
  margin-bottom: 15px;
}

.services-box-hover-section .services-block .service-info p {
  color: #252B33;
}

.services-box-hover-section .services-block .service-img img {
  width: 100%;
}

.services-box-hover-section .services-block .service-box-inner {
  background-color: #f8f8f8;
  height: 100%;
}

.game-portfolio-section {
  padding-bottom: 100px;
}

.game-portfolio-section .game-title-box h2 {
  margin-bottom: 50px;
  text-align: center;
}

.wwd-pad-100 {
  padding: 100px 0px;
}

.vr-about-sec h2 {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0px;
  line-height: 50px;
  color: #252B33;
  width: 80%;
}

.vr-about-sec p {
  margin-bottom: 15px;
}

.vr-about-sec p:last-child {
  margin-bottom: 0px;
}

.vr-services-sec {
  background: #fff;
  position: relative;
  padding: 50px 50px 0px;
  margin-top: -250px;
  box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.vr-services-sec h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 60px;
}

.vr-services-sec h3 {
  font-size: 18px;
  font-weight: 800;
  color: #252B33;
  margin: 20px 0px;
}

.vr-services-sec p {
  width: 100%;
  color: #252b33;
}

.service_boxes {
  position: relative;
  padding: 15px;
  border-radius: 5px;
  min-height: 250px;
  margin-top: 30px;
}

.service_boxes .icon_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service_boxes .icon_text .icon_s {
  width: 70px;
  height: 70px;
  border: 1px solid #086ad8;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.service_boxes .icon_text .icon_s img {
  width: 35px;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

.service_boxes:hover .icon_text .icon_s img {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.service_boxes .icon_text h4 {
  width: calc(100% - 80px);
  font-size: 18px;
  font-weight: 600;
}


/* ---------------------------- service_css_start --------------------------- */
.service_bg {
  position: relative;
  overflow: hidden;
  color: #fff;
  height: auto;
  background: url(../images/service_banner.jpg);
  background-size: cover;
}

.service_banner_content {
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  height: 500px;
}

.service_banner_content h1 {
  font-weight: bold;
  color: #FFF;
  font-size: 37px;
  line-height: 53px;
}

.service_banner_content p {
  margin: 15px 0px 25px;
  color: #FFF;
}

.consult_experts_btn {
  margin-bottom: 100px;
  display: inline-block;
}

.service_banner_content .main_btn {
  width: auto;
}

.service_banner_shape_bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.service_banner_shape_bottom img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.sets_up_edigito {
  margin-top: 50px;
}

.sets_up_edigito h2 {
  padding-top: 0px;
  padding-bottom: 30px;
}

.sets_up_edigito .card_block {
  height: 100%;
  margin-bottom: 0px;
  min-height: auto;
}

.we_offer_main {
  margin-bottom: 30px;
}

.header .menu>ul>.active a {
  color: #0d6efd;
}

/* ---------------------------- service_css_end --------------------------- */


/* =============== Pricing Section Css Start======================= */

/* -------------------Pricing-Section---------------------- */

.pricing_section {
  background-image: url(../images/new/plan_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin: 50px 0 0 0;
}

.pricing_section.row_am {
  padding-top: 90px;
}

.pricing_section .section_title h2 {
  color: #fff;
}

/* pricing wraper  */
.pricing_section .toggle_block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}

/* pricing toggle button */
.pricing_section .toggle_block span {
  color: #000;
  font-weight: 600;
  display: block;
  margin: 0 5px;
}

.tog_btn.month_active {
  left: 35px !important;
}

.pricing_section .toggle_block span.deactive {
  color: #000000;
}

.pricing_section .toggle_block .offer {
  background-color: #086ad8;
  border-radius: 5px;
  padding: 2px 10px;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.pricing_section .toggle_block .tog_block {
  width: 70px;
  height: 35px;
  background-color: #fff;
  border-radius: 18px;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 8px #1b005673;
}

.pricing_section .toggle_block .tog_block .tog_btn {
  height: 23px;
  width: 23px;
  border-radius: 25px;
  display: block;
  background-color: #086ad8;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all;
}

/* pricing pannel */
.pricing_section .pricing_pannel {
  margin-top: 50px;
  display: none;
  padding-bottom: 50px;
}

.pricing_section .pricing_pannel.active {
  display: block;
}

.pricing_section .pricing_pannel .pricing_block {
  text-align: left;
  background-color: #f8fbff;
  min-height: 530px;
  border-radius: 12px;
  padding: 60px 30px 30px 50px;
  margin-bottom: 40px;
  border: 1px solid #086ad8;
  position: relative;
  top: 0;
  transition: .4s all;
}

.pricing_section .pricing_pannel .pricing_block:hover {
  border: 1px solid #086ad8;
  top: -10px;
}

.pricing_section .pricing_block:not(.highlited_block) .btn_main {
  border-color: #086ad8;
  background-image: none;
  color: #086ad8;
}

.pricing_section .pricing_block:not(.highlited_block) .btn_main:hover {
  opacity: 1;
}

.pricing_section .pricing_pannel .pricing_block .icon {
  margin: 0 0 10px -25px;
  position: relative;
}

.pricing_section .pricing_pannel .col-md-4 .icon .dot_anim {
  position: absolute;
  width: 6px;
  height: 6px;
  display: block;
  background-color: #086ad8;
  border-radius: 10px;
  z-index: 1;
  transition: 0.5s all;
}

.pricing_section .pricing_pannel .col-md-4:nth-child(2) .dot_anim {
  background-color: var(--orange);
}

.pricing_section .pricing_pannel .col-md-4 .dot_block {
  position: absolute;
  left: 0;
  top: 0;
  width: 133px;
  height: 133px;
  transition: 0.5s all;
  transform: rotate(-30deg);
  transition-delay: 0.5s;
}

.pricing_section .pricing_pannel .col-md-4 .icon .dot_anim:nth-child(1) {
  top: 30px;
  left: 40px;
}

.pricing_section .pricing_pannel .col-md-4 .pricing_block:hover .icon .dot_anim:nth-child(1) {
  top: 20px;
  left: 25px;
}

.pricing_section .pricing_pannel .col-md-4 .icon .dot_anim:nth-child(2) {
  right: 35px;
  top: 40px;
}

.pricing_section .pricing_pannel .col-md-4 .pricing_block:hover .icon .dot_anim:nth-child(2) {
  right: 25px;
  top: 15px;
}

.pricing_section .pricing_pannel .col-md-4 .icon .dot_anim:nth-child(3) {
  left: 50px;
  bottom: 70px;
}

.pricing_section .pricing_pannel .col-md-4 .pricing_block:hover .icon .dot_anim:nth-child(3) {
  left: 40px;
  bottom: 40px;
}

.pricing_section .pricing_pannel .col-md-4 .pricing_block:hover .dot_block {
  transform: rotate(0deg);
}

/* pricing box heading h3 */
.pricing_section .pricing_pannel .pricing_block .pkg_name h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}

.pricing_section .pricing_pannel .highlited_block .pkg_name h3 {
  color: #fff;
}

.pricing_section .pricing_pannel .pricing_block .pkg_name span {
  color: #000000;
  font-size: 15px;
}

.pricing_section .pricing_pannel .pricing_block .price {
  font-size: 48px;
  color: #086ad8;
  margin: 25px 0;
  display: block;
  font-weight: 700;
}

.pricing_section .pricing_pannel .pricing_block .price span {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}

/* pricing box list */
.pricing_section .pricing_pannel .pricing_block .benifits {
  margin-bottom: 40px;
}

.pricing_section .pricing_pannel .pricing_block .benifits li p {
  margin-bottom: 5px;
  color: #000000;
}

.pricing_section .pricing_pannel .pricing_block .benifits li i {
  margin-right: 5px;
}

.pricing_section .pricing_pannel .pricing_block .benifits .include i {
  color: #009515;
}

.pricing_section .pricing_pannel .pricing_block .benifits .exclude i {
  color: #ff0000;
}

.pricing_section .pricing_pannel .pricing_block .btn_main {
  width: 180px;
}

.pricing_section .pricing_pannel .pricing_block:not(.highlited_block) .btn_main:hover {
  border-color: transparent;
  background: #086ad8;
  color: #fff;
}

.pricing_section .contact_text {
  text-align: center;
  margin-bottom: 0;
}

.pricing_section .contact_text a {
  color: var(--purple);
  text-decoration: underline;
}

.pricing_section .pricing_pannel .highlited_block {
  background-color: #086ad8;
  color: #fff;
}

.pricing_section .pricing_pannel .highlited_block .price,
.pricing_section .pricing_pannel .highlited_block .pkg_name span,
.pricing_section .pricing_pannel .highlited_block .price span,
.pricing_section .pricing_pannel .highlited_block .benifits li p {
  color: #fff;
}

.pricing_section .pricing_pannel .highlited_block .main_btn {
  background-color: #fff;
  color: #086ad8;
}

.pricing_section .pricing_pannel .highlited_block .benifits .include i {
  color: #fff;
}

/* =============== Pricing Section Css End =======================*/


/* =============== Feature Section Css Startc =======================*/

.features_section p {
  padding: 5px 0;
  padding-left: 12px;
  position: relative;
}

.features_section p i {
  position: absolute;
  left: 0;
  top: 10px;
  color: #0d6efd;
}

.features_section .feature_inner {
  padding: 20px;
  background-color: #eff6ff;
  border-radius: 5px;
  box-shadow: 0 0 8px #f2f2f2;
}

/* =============== Feature Section Css End =======================*/

/* =============About Page Css Start ============================ */
.sec-pad-50 {
  padding: 50px 0px;
}

.sec-pad-100 {
  padding: 100px 0px;
}

.aboutus-des-sec {
  margin-top: 50px;
}

.aboutus-des-sec h2 {
  margin-bottom: 30px;
}

.belif_section .web_title {
  text-align: center;
}

.belif_boxes {
  margin-bottom: 20px;
}

.belif_boxes h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
  margin: 15px 0px
}

.belif_boxes img {
  width: 45px;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}

.belif_boxes:hover img {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.about-left-right-sec {
  position: relative;
}

.about-left-right-sec .tagline {
  position: sticky;
  top: 100px;
}

.about-left-right-sec .culture-detail {
  margin-bottom: 60px;
}

.about-left-right-sec .culture-detail:last-child {
  margin-bottom: 0px;
}

.about-left-right-sec .culture-detail h3 {
  margin-bottom: 15px;
}

.about-left-right-sec h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}

.testimonial_block {
  background-color: #F8F8F8;
  padding: 50px 0;
}

.testimonial_block .work-with-us p {
  margin-bottom: 10px;
}

.testimonial_block .work-with-us h2 {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 30px;
}


/* =============About Page Css Start ============================ */

/* =======================Contact Us Page Css Start ========================= */
.enquiry-page-sec {
  padding: 50px 0;
  font-family: Poppins, sans-serif;
}

.enquiry-page-sec .enquiry-page-width {
  max-width: 1170px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
}

.enquiry-page-sec .content_bottom {
  background: 0 0;
  z-index: 1;
  border-top: 0;
}

.enquiry-page-sec .footer-nl-form {
  overflow: hidden;
  position: relative;
  background: #fff;
  border-top: 0 !important;
}

.enquiry-page-sec #lets-talk.lets-talk {
  margin: 0;
}

#lets-talk.lets-talk {
  z-index: 999999;
  margin: 70px auto;
}

.enquiry-page-form {
  position: relative;
}

.enquiry-wrap {
  display: flex;
  justify-content: space-between;
}

.enquiry-page-sec .enquiry-page-form .contact-section .header-main {
  display: flex;
  margin-bottom: 40px;
  width: 100%;
}

.enquiry-page-sec .enquiry-page-form .contact-section .header-main .header-part {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enquiry-page-form .contact-section .header-main .header-part .logo {
  margin-top: 5px;
}

.enquiry-page-form .contact-section .header-main .header-part .go-back-button {
  margin-top: 10px;
}

.enquiry-page-form .contact-section .header-main .header-part .go-back-button a {
  color: #8a959e;
  font-size: 14px;
  font-weight: 600;
}

.enquiry-page-form .contact-section .contact-form-sec {
  width: 45%;
}

.enquiry-page-form .contact-section .contact-form-sec form.form_brand {
  background-color: #f1f4f5;
  padding: 30px;
  box-sizing: border-box;
}

.enquiry-page-sec .enquiry-page-form .contact-section .contact-form-sec .group,
.enquiry-page-form .contact-section .contact-form-sec .bottom-area {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-bottom: 15px;
}

.enquiry-page-form .contact-section .contact-form-sec .bottom-area {
  padding-bottom: 0px;
}

.enquiry-page-form .contact-section .contact-form-sec .group label {
  margin-bottom: 5px;
  display: block;
  font-size: 13px;
  color: #252b33;
  font-weight: 500;
}

.enquiry-page-form .contact-section .contact-form-sec input {
  background-color: #fff;
  font-family: Poppins, sans-serif;
  border: 1px solid #d9dee2;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 40px;
  display: block;
  width: 100%;
  padding: 0 0 0 15px;
  font-size: 14px;
  color: #252b33;
  box-sizing: border-box;
  border-radius: 0;
}

.enquiry-page-form .contact-section .contact-form-sec input.name {
  width: 50%;
  margin-right: 15px;
}

.enquiry-page-form .contact-section .contact-form-sec input.last-name {
  margin-right: 0;
}

.enquiry-page-form .contact-section .contact-form-sec textarea {
  border-radius: 0;
  font-family: Poppins, sans-serif;
  border: 1px solid #d9dee2;
  display: block;
  width: 100%;
  padding: 10px 0 25px 15px;
  font-size: 14px;
  color: #252b33;
  background: #fff;
  resize: none;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form_brand .email-msg-alert {
  font-size: 14px;
  line-height: 16px;
  color: #00b762 !important;
  margin-top: 10px;
  margin-bottom: 0;
}

.form_brand .email-msg-alert .fa {
  color: #00b762 !important;
}

.enquiry-page-form .contact-section .contact-form-sec select {
  border: 1px solid #D9DEE2;
  font-family: 'Poppins', sans-serif;
  border-radius: 0px;
  height: 40px;
  display: block;
  width: 100%;
  padding: 0px 0px 0px 15px;
  color: #252b33;
  background: #fff url("../images/drop-down.svg") no-repeat right 15px center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  box-sizing: border-box;
  cursor: pointer;
}

.enquiry-page-form .contact-section .contact-form-sec select option[value=""][disabled] {
  display: none;
}

.enquiry-page-form .contact-section .contact-form-sec input:focus,
.enquiry-page-form .contact-section .contact-form-sec textarea:focus,
.enquiry-page-form .contact-section .contact-form-sec select:focus {
  outline: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.enquiry-page-form .contact-section .contact-form-sec input.contact-number {
  padding-left: 110px !important;
}

.enquiry-page-form .contact-section .contact-form-sec .bottom-area .submit-btn .submit {
  font-size: 14px;
}

.enquiry-page-form .contact-section .contact-form-sec .budget-group {
  display: flex;
}

.enquiry-page-form .contact-section .contact-form-sec .budget-group .minimum-budget {
  margin-right: 15px;
}

.enquiry-page-form .contact-section .contact-form-sec .budget-group .group {
  width: 48.1%;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec .projectfileupload {
  position: relative;
  width: 100%;
  height: 40px;
  border: 1px solid #d9dee2;
  background: #fff;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec .projectfileupload input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  opacity: 0;
  cursor: pointer;
}

.enquiry-page-sec .enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec .projectfileupload p {
  margin-top: 0px;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec .projectfileupload p {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #252b33;
  font-size: 14px;
  line-height: 37px;
  font-weight: 400;
  margin-bottom: 0;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec p.upload-file-size {
  color: #252b33;
  font-size: 11px;
  line-height: 22px;
  margin: 3px 0 0;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec p.upload-file-size.error-validation {
  color: red !important;
}

.enquiry-page-form .contact-section .contact-form-sec .group.file-upload-sec .projectfileupload .fa {
  color: #F13C31 !important;
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  padding: 12px;
}

.enquiry-page-form .contact-section .contact-form-sec .bottom-area {
  position: relative;
  display: inline-block;
}

.enquiry-page-form .contact-section .contact-form-sec .bottom-area .nl-submit-wrap {
  width: 100%;
}

.has_danger {
  border: 1px solid red !important;
}

.required {
  color: red;
}

.all-field-error {
  color: #f13c31;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.enquiry-page-form .contact-section .client-logo {
  width: 48%;
  position: relative;
  box-sizing: border-box;
}

.enquiry-page-form .contact-section .client-logo h4 {
  font-size: 16px;
  color: #252b33;
  letter-spacing: -.33px;
  font-weight: 400;
  margin-bottom: 20px;
}

.enquiry-page-form .contact-section .client-logo .client-image .col-md-3 {
  margin-top: 25px;
}

.svg-sprite {
  background-image: url("../images/homepage/brand-logo-black-sprite.svg");
  background-repeat: no-repeat;
  height: 50px;
  width: 110px;
  display: inline-block;
  background-size: cover;
}

.body-theme-dark .svg-sprite {
  background-image: url("../images/homepage/brand-logo-white-sprite.svg");
}

.svg-sprite.logo-brand-black-oracle {
  background-position: 4px 0px;
}

.svg-sprite.logo-brand-black-mtn {
  background-position: -112px 0px;
}

.svg-sprite.logo-brand-black-mtu {
  background-position: -217px 0px;
}

.svg-sprite.logo-brand-black-bcg {
  background-position: -335px 0px;
}

.svg-sprite.logo-brand-black-sanchobbdo {
  background-position: -454px 0px;
}

.svg-sprite.logo-brand-black-gulfstream {
  background-position: -570px 0px;
}

.svg-sprite.logo-brand-black-astrazeneca {
  background-position: -748px 0px;
  height: 48px;
}

.svg-sprite.logo-brand-black-yahoo {
  background-position: -1190px 0px;
}

.svg-sprite.logo-brand-black-smithfield {
  background-position: -1308px 0px;
}

.svg-sprite.logo-brand-black-essilor {
  background-position: -1655px 0px;
  height: 55px;
}

.svg-sprite.logo-brand-black-cosmopolitan {
  background-position: -1602px 0px;
}

.svg-sprite.logo-brand-black-lifetechnologies {
  background-position: -1898px 0px;
}

.svg-sprite.logo-brand-black-jacksoncoker {
  background-position: -2015px 0px;
}

.svg-sprite.logo-brand-black-macys {
  background-position: -2645px 0px;
}

.svg-sprite.logo-brand-black-cartier {
  background-position: -2762px 0px;
}

.svg-sprite.logo-brand-black-rimac {
  background-position: -2879px 0px;
}

.enquiry-page-form .contact-section .client-logo .testimonial-slide-sec {
  text-align: center;
  -webkit-user-select: inherit;
  -moz-user-select: inherit;
  -ms-user-select: inherit;
  user-select: inherit;
  margin-top: 40px;
}

#contact_testimonial {
  margin-top: 30px;
}

#contact_testimonial .item {
  text-align: center;
}

.contact_slide {
  display: inline-block;
  vertical-align: middle;
  outline: 0;
  transition: all .25s ease 0s;
  border-radius: 5px;
  padding: 20px;
  margin: 0 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #f1f4f5;
  text-align: center;
  width: 98%;
}

.contact_slide img {
  display: inline-block;
  width: 60px !important;
  height: 60px;
  border-radius: 100px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin: 10px auto 20px auto;
}

.enquiry-page-form .contact-section .contact_slide p {
  margin-bottom: 0;
  font-weight: 600;
}

.enquiry-page-form .contact-section .client-logo .testimonial-slide-sec .slide h4 {
  font-size: 16px;
  color: #252b33;
  font-weight: 400;
  width: 90%;
  margin: 20px auto;
  line-height: 23px;
}

.enquiry-page-form .contact-section .client-logo .testimonial-slide-sec .slide p {
  font-size: 14px;
  color: #252b33;
  font-weight: 600;
  margin-bottom: 0;
}

.enquiry-page-form .contact-section .client-logo .testimonial-slide-sec .slide h6 {
  font-size: 12px;
  color: rgba(37, 43, 51, .5);
  font-weight: 400;
}

.testimonial-slide-sec {
  overflow: hidden;
}

.testimonial-slide-sec .owl-stage {
  display: flex;
}

.testimonial-slide-sec .owl-nav {
  display: none;
}

.testimonial-slide-sec .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-slide-sec .owl-dots .owl-dot {
  border: 2px solid #F13C31;
  padding: 0px;
  width: 10px;
  height: 10px;
  font-size: 0px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  margin: 0px 5px;
}

.testimonial-slide-sec .owl-dot.active {
  background-color: #F13C31;
}

.enquiry-page-form .contact-section .required-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.enquiry-page-form .contact-section .required-sec p {
  color: #252b33;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 0;
}

.enquiry-page-form .contact-section .copyright-recaptcha {
  width: 85%;
  margin-top: 15px;
}

.enquiry-page-form .contact-section .copyright-recaptcha p {
  font-size: 12px;
  line-height: 18px;
  color: #252b33;
  margin-bottom: 0;
}

.enquiry-page-form .contact-section .copyright-recaptcha p a {
  color: #f13c31;
}

.enquiry-page-form .contact-section .copyright .copyright-text {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 35px;
  padding-top: 30px;
}

.enquiry-page-form .contact-section .copyright .copyright-text span {
  font-size: 12px;
  color: #252b33;
}

.inquiry-btm-form.footer-nl-form {
  overflow: hidden;
  position: relative;
  background: 0 0;
  z-index: 9;
}

.enquiry-page-form .btm-form-title-sec {
  margin-bottom: 50px;
}

.enquiry-page-form .bottom-form-title {
  color: #f13c31;
  font-weight: 800;
  margin-bottom: 10px;
}

.enquiry-page-form .btm-form-title-sec p {
  font-size: 18px;
  line-height: 28px;
}

.enquiry-page-form .contact-section .client-logo svg {
  width: 90px;
  margin: 10px 0;
}

.enquiry-page-sec .enquiry-page-form .contact-section .client-logo svg {
  width: 100%;
  margin: 0px;
}

.enquiry-page-form .contact-section .contact-form-sec .group {
  padding-bottom: 15px;
  position: relative;
}

#contact_testimonial.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #086ad8;
  border-color: #0d6efd
}

/* --------------------------- portfolio_css_start -------------------------- */
.portfolio_sec_main {
  margin-bottom: 50px;
}

.portfolio_inner {
  padding: 60px 0;
}

.home_portfolio .portfolio_inner .portfolio_img {
  padding-right: 0;
}

.home_portfolio .portfolio_inner .portfolio_text {
  padding-left: 0;
}

.home_portfolio .portfolio_inner .portfolio_img img {
  margin: 0px auto;
}

.home_portfolio .bahok_portfolio_main,
.bahok_portfolio {
  background-color: #006885;
}

.home_portfolio .iliko_portfolio_main,
.iliko_portfolio {
  background-color: #ef333e;
}

.home_portfolio .onkar_taxi_portfolio_main,
.onkar_taxi_portfolio {
  background-color: #6e22b8;
}

.home_portfolio .jumia_portfolio_main,
.jumia_portfolio {
  background-color: #f58c23;
}

/* --------------------------- portfolio_css_start -------------------------- */

.slider_volotea {
  background-color: #e01b49;
}

.slider_bahok {
  background-color: #006885;
}

.slider_iliko {
  background-color: #ef333e;
}

.slider_onkar_taxi {
  background-color: #6e22b8;
}

.slider_jumia {
  background-color: #f58c23;
}