@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  overflow-x: hidden;
}

ul {
  list-style-type: none;
}

@-webkit-keyframes navbar {
  0% {
    width: 0rem;
    left: -28rem;
  }
  100% {
    width: 28rem;
    left: 0;
  }
}

@keyframes navbar {
  0% {
    width: 0rem;
    left: -28rem;
  }
  100% {
    width: 28rem;
    left: 0;
  }
}

@-webkit-keyframes navbar-close {
  0% {
    width: 28rem;
    left: 0;
  }
  100% {
    width: 0rem;
    left: -28rem;
  }
}
@keyframes navbar-close {
  0% {
    width: 28rem;
    left: 0;
  }
  100% {
    width: 0rem;
    left: -28rem;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.heading {
  font-family: "Work Sans", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #262626;
}
.heading-lg {
  font-size: 5rem;
}
.heading-secondary {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #262626;
}

.sub-heading {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 3rem;
}

.header-intro-paragraph {
  color: #262626;
  font-size: 1.8rem;
  font-weight: 300;
}

.header.what-we-do .header-intro-text .header-intro-paragraph span {
  font-weight: 500;
}

.s-title {
  font-family: "Work Sans", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #262626;
}

.paragraph {
  font-size: 1.6rem;
  color: #262626;
  font-weight: 300;
}

.link {
  color: #ff6024;
}
.link:hover {
  text-decoration: underline;
  color: #ff6024;
}

.navbar a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}

.footer h4 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
}
.footer a {
  color: #262626;
}

.pills-heading {
  font-weight: 500;
  font-size: 2rem;
  color: #262626;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1300px) {
  .heading {
    font-size: 3rem;
  }
  .heading-lg {
    font-size: 4rem;
  }
  .heading-secondary {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 740px) {
  .heading-secondary {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 860px) {
  .heading-lg {
    font-size: 3.2rem;
  }
}
.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 35px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 15px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.btn-primary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #ff6024;
  padding: 1.5rem 2rem;
  height: 5rem;
  width: 25rem;
  font-size: 1.6rem;
  font-weight: 400;
  border-color: transparent !important;
  overflow: hidden;
  will-change: transform;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  z-index: -1;
  display: block;
  background: white;
  position: absolute;
  width: 200%;
  height: 20rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: 0.35s ease-out;
  -o-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
  -webkit-transform: translate(-120%, -50%) translateZ(0);
  transform: translate(-120%, -50%) translateZ(0);
  border-color: #262626 !important;
}
.btn-primary:hover {
  color: #262626 !important;
  border: 1px solid #262626;
  background-color: #262626;
}
.btn-primary:hover svg > * {
  fill: #262626;
}
.btn-primary:hover:before {
  -webkit-transform: translate(-45%, 10%) translateZ(0);
  transform: translate(-45%, 10%) translateZ(0);
}
.btn-primary svg path {
  margin-left: 5rem;
  -webkit-transition: 0.25s all ease-in;
  -o-transition: 0.25s all ease-in;
  transition: 0.25s all ease-in;
}
.btn-primary:active,
.btn-primary:hover {
  text-decoration: none !important;
}
.btn-primary:focus {
  text-transform: none !important;
  background-color: #ff6024;
}

.btn-text {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 0;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #353535;
}
.btn-text svg {
  margin-left: 1rem;
}
.btn-text:focus,
.btn-text:active,
.btn-text:hover {
  text-decoration: none;
  color: #ff6024;
}

.carousel {
  padding: 10rem 17.8rem 10rem 20rem;
}
.carousel-text {
  min-width: 31rem;
  width: 31rem;
  margin-right: 2rem;
}
.carousel .slider-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.carousel .slider-item {
  position: relative;
  background-color: #f7f7f7;
}
.carousel .slider-item-text {
  height: 7rem;
  padding: 1rem 1.5rem;
}
.carousel .slider-item-text a {
  font-size: 1.6rem;
  margin-left: 0.8rem;
}
.carousel .slider-item-heading {
  font-size: 1.6rem;
}
.carousel .slider-item-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.carousel .slider-item-img {
  overflow: hidden;
}
.carousel .slider-item-img img {
  -webkit-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  transition: 0.4s all linear;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.carousel .slider-item:hover .slider-item-img img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.carousel-content {
  display: inline;
}
.carousel .slider-testimonials .owl-nav button {
  background-color: transparent !important;
  width: auto !important;
  height: auto !important;
}
.carousel .owl-carousel {
  max-width: 100%;
  overflow: hidden;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.carousel .owl-carousel .owl-nav {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 2.5rem;
}
.carousel .owl-carousel .owl-nav button {
  background-color: #ff6024;
  width: 4.5rem;
  height: 4.5rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1rem;
}
.carousel .owl-carousel .owl-nav .owl-next svg {
  margin-right: -2px;
}
.carousel .owl-carousel .owl-nav .owl-prev svg {
  margin-right: 2px;
}
.carousel .owl-carousel .slider-counter-1,
.carousel .owl-carousel .slider-counter-2 {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  color: #262626;
}

.carousel-wrapper {
  margin: 3rem 0 1rem;
}
.carousel-wrapper .owl-item {
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel-wrapper .owl-item:focus {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.carousel-wrapper .owl-item img {
  height: 30rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}
.carousel-wrapper .carousel-arrows .owl-nav {
  margin-top: 2rem;
}
.carousel-wrapper .carousel-arrows .owl-nav svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: visible;
}
.carousel-wrapper .carousel-arrows .owl-nav .owl-prev {
  margin-right: 3rem !important;
}
.carousel-wrapper .carousel-arrows .owl-nav .owl-prev:hover svg path {
  fill: #ff6024;
}
.carousel-wrapper
  .carousel-arrows
  .owl-nav
  .owl-prev:hover
  ~ .owl-next
  svg
  path {
  fill: #bcbcbc;
}
.carousel-wrapper .carousel-arrows .slider-item .area-paragraph {
  width: 100%;
  margin-bottom: 4rem;
}
.carousel-wrapper .carousel-arrows .slider-item .area-paragraph-sm {
  width: 100%;
}
.carousel-wrapper .carousel-arrows .slider-item .qoute-icon {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1550px) {
  .carousel {
    padding: 10rem 7.8rem 10rem 10rem;
  }
}
@media only screen and (max-width: 1250px) {
  .carousel {
    padding: 10rem 2.8rem 10rem 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .carousel {
    padding-right: 5rem;
  }
  .carousel .slider-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .carousel-text {
    margin-bottom: 4rem;
    min-width: 100%;
    width: 100%;
  }
  .carousel .owl-carousel .owl-nav {
    margin-right: 0;
  }
}
@media only screen and (max-width: 740px) {
  .carousel {
    padding: 5rem;
  }
}
@media only screen and (max-width: 650px) {
  .carousel {
    padding: 5rem 2rem;
  }

  .carousel-wrapper .owl-item img {
    height: auto !important;
    min-height: 19rem !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.services {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.services-text {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 7rem 7rem 7rem 20rem;
}
.services-text p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
}
.services .service {
  width: 25%;
  max-width: 25%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  min-height: 30rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.services .service .service-img-holder {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 30rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.services .service.app-dev .service-img-holder {
  background-image: url("../../Images/V4/images/banner/custom_app.jpg");
}
.services .service.architecture .service-img-holder {
  background-image: url("../../Images/V4/images/services/architecture.webp");
  background-size: 25rem;
  background-position-y: bottom;
  background-position-x: right;
}
.services .service.dev-teams .service-img-holder {
  background-image: url("../../Images/V4/images/banner/teams.jpg");
}
.services .service.mobile-app .service-img-holder {
  background-image: url("../../Images/V4/images/services/app-dev.jpg");
}
.services .service.team-extension .service-img-holder {
  background-image: url("../../Images/V4/images/services/team-extension.jpg");
}
.services .service.web-dev .service-img-holder {
  background-color: #ff6024;
  background-image: url("../../Images/V4/images/services/web-dev.jpg");
}
.services .service-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.services .service:hover .service-text .heading-secondary {
  color: #ff6024 !important;
}
.services .service:hover .service-img-holder {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.services .service-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 80%;
  height: 9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 2rem;
}
.services .service-text .heading-secondary {
  -webkit-transition: 0.1s all ease-in;
  -o-transition: 0.1s all ease-in;
  transition: 0.1s all ease-in;
}

@media only screen and (max-width: 1550px) {
  .services-text {
    padding-left: 10rem;
  }
}
@media only screen and (max-width: 1300px) {
  .services-text {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    background-color: #fff;
  }
  .services .service {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 1250px) {
  .services .services-text {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 650px) {
  .services .services-text {
    padding: 5rem 2rem 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .services {
    position: relative;
    margin-bottom: 5rem;
  }
  .services .service {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .services-text .btn-primary {
    position: absolute;
    bottom: -5rem;
    left: 0;
    right: 0;
    width: 100%;
  }

  .service.team-extension {
    order: 1;
  }
  .service.architecture {
    order: 2;
  }
}
.technologies {
  padding: 10rem 20rem;
  background-color: #f7f7f7;
}
.technologies-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.technologies-header-txt {
  max-width: 50%;
}
.technologies-wrapper {
  margin-top: 3rem;
}
.technologies-wrapper .row {
  margin-right: -1rem;
  margin-left: -1rem;
}
.technologies .technologie-item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.technologies .technologie-item a {
  background-color: #fff;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #262626;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.1s color ease-in;
  -o-transition: 0.1s color ease-in;
  transition: 0.1s color ease-in;
}
.technologies .technologie-item a span {
  display: block;
}
.technologies .technologie-item a span img {
  display: block;
  margin-bottom: 0.8rem;
  -webkit-filter: saturate(0);
  filter: saturate(0);
  -webkit-transition: 0.1s -webkit-filter ease-in;
  transition: 0.1s -webkit-filter ease-in;
  -o-transition: 0.1s filter ease-in;
  transition: 0.1s filter ease-in;
  transition: 0.1s filter ease-in, 0.1s -webkit-filter ease-in;
}
.technologies .technologie-item a:hover {
  text-decoration: none;
  color: #ff6024;
}
.technologies .technologie-item a:hover img {
  -webkit-filter: saturate(1);
  filter: saturate(1);
}

@media only screen and (max-width: 1550px) {
  .technologies {
    padding: 10rem;
  }
}
@media only screen and (max-width: 1250px) {
  .technologies {
    padding: 10rem 5rem;
  }
}
@media only screen and (max-width: 1180px) {
  .technologies .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media only screen and (max-width: 690px) {
  .technologies {
    position: relative;
    padding: 10rem 2rem 15rem;
  }
  .technologies-header-cta {
    position: absolute;
    bottom: 9rem;
  }
  .technologies-header-txt {
    max-width: 100%;
  }
}
@media only screen and (max-width: 650px) {
  .technologies {
    padding: 5rem 2rem 10rem;
  }
}
@media only screen and (max-width: 640px) {
  .technologies .col-md-4 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .technologies-header-cta {
    position: absolute;
    bottom: 4rem;
  }
}
@media only screen and (max-width: 420px) {
  .technologies {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .technologies .col-md-4 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .technologies-header-cta {
    left: 2rem;
    right: 2rem;
  }
  .technologies-header-cta a {
    width: 100%;
  }
  .technologies .technologie-item span {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .technologies .technologie-item span img {
    margin-bottom: 0 !important;
    margin-right: 1.5rem;
  }
}
.page-banner {
  padding: 10rem 20rem 4rem;
  position: relative;
  background-image: url("../../Images/V4/images/banner/why-us-img.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 77rem;
  min-height: 76rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-banner::after {
  content: "";
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6)),
    to(rgba(255, 255, 255, 0.01))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  z-index: 1;
  position: absolute;
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-banner .banner-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #fff;
  z-index: 3;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-banner .banner-text .heading {
  color: #fff;
}
.page-banner .banner-text .sub-heading {
  margin: 2rem 0;
}
.page-banner .banner-text .banner-list {
  margin-bottom: 2.5rem;
}
.page-banner .banner-text .banner-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-banner .banner-text .banner-list-item span {
  margin-right: 1rem;
  font-size: 5rem;
  color: #ff6024;
}
.page-banner .banner-text .banner-list-item p {
  margin-bottom: 0;
}
.page-banner-img-holder {
  display: none;
}

@media only screen and (max-width: 1550px) {
  .page-banner {
    padding: 10rem 10rem 4rem;
  }
}
@media only screen and (max-width: 1250px) {
  .page-banner {
    padding: 10rem 5rem 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .page-banner .banner-text .sub-heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 740px) {
  .page-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background-image: none;
    background-color: #000;
    max-height: 100%;
    min-height: 100%;
  }
  .page-banner-img-holder {
    display: block;
  }
  .page-banner-img-holder img {
    width: 100%;
  }
  .page-banner .banner-text {
    position: relative;
    padding: 5rem 5rem;
  }
  .page-banner .banner-text .banner-list-item {
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .page-banner .banner-text .banner-list-item span {
    font-size: 4rem;
    min-width: 10rem;
    width: 10rem;
  }
  .page-banner .banner-text .banner-list-item p {
    font-weight: 300;
    font-size: 1.4rem;
  }
  .page-banner .banner-text .btn-primary {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .page-banner::after {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .page-banner .banner-text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contact {
  padding: 10rem 20rem;
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-text {
  min-width: 33rem;
  width: 33rem;
  margin-right: 2rem;
}
.contact-text .s-title {
  margin-bottom: 2rem;
}
.contact-form {
  font-size: 1.6rem;
  width: 100%;
}
.contact-form label {
  font-weight: 300;
  color: #262626;
}
.contact-form .required {
  color: #ff0000;
}
.contact-form .form-control {
  height: 5rem;
  font-size: 1.6rem;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #bebebe;
}
.contact-form textarea.form-control {
  height: 15rem;
}
.contact-form .row,
.contact-form .form-group {
  margin-bottom: 2rem;
}
.contact.bg-white {
  background-color: #fff !important;
}

@media only screen and (max-width: 1550px) {
  .contact {
    padding: 10rem;
  }
}
@media only screen and (max-width: 1250px) {
  .contact {
    padding: 10rem 5rem;
  }
}
@media only screen and (max-width: 1100px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-text {
    width: 50%;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 900px) {
  .contact-text {
    min-width: 0 !important;
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 650px) {
  .contact {
    padding: 5rem 2rem;
  }
}
@media only screen and (max-width: 350px) {
  .contact-page.header .heading-contact-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .contact-page.header .heading-contact-item img {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 750px) {
  .contact-page {
    overflow: hidden;
  }
  .contact-page .header-intro-map {
    right: -34rem !important;
    top: 6rem !important;
  }
  .footer-item {
    margin-left: 3rem !important;
  }
}
@media only screen and (max-width: 510px) {
  .contact .contact-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .contact .contact-footer .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
  }

  .contact-page.header .heading-contact-item img {
    width: 7rem;
  }
}

@media only screen and (max-width: 350px) {
  .contact .contact-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .contact .contact-footer .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
  }

  .contact-page.header .heading-contact-item img {
    width: 7rem;
  }
}
.checkbox-wrapper {
  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;
  font-size: 1.4rem;
}
.checkbox-wrapper .checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-wrapper .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #bebebe;
  -webkit-transition: all 0.12s ease-in;
  -o-transition: all 0.12s ease-in;
  transition: all 0.12s ease-in;
}
.checkbox-wrapper .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
  height: 0;
  width: 0;
}
.checkbox-wrapper .checkbox input:checked ~ .checkmark {
  background-color: #ff6024;
  border: 1px solid #ff6024;
}
.checkbox-wrapper .checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-wrapper .checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-wrapper .checkbox .checkmark:after {
  left: 8px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.area-nav {
  width: 100%;
  position: sticky;
  z-index: 1001;
  top: 0;
  padding: 0 20rem;
  display: inline-block;
  background-color: #f6f6f6;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}
.area-nav-item {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: #262626;
  padding: 1.5rem 3rem;
  cursor: pointer;
  width: 20%;
  -webkit-transition: 0.12s background ease-in-out;
  -o-transition: 0.12s background ease-in-out;
  transition: 0.12s background ease-in-out;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.area-nav-item > * {
  pointer-events: none;
}
.area-nav-item:hover {
  text-decoration: none;
  background-color: #e9e9e9;
  color: #262626;
}
.area-nav .arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: #000;
  display: none;
  z-index: 100;
  cursor: pointer;
  color: #fff;
  text-align: center;
  line-height: 72px;
}
.area-nav .arrow.visible {
  display: block;
}
.area-nav .arrow.left {
  left: 0;
}
.area-nav .arrow.right {
  right: 0;
}
.area-nav #wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  scroll-behavior: smooth;
}
.area-nav #wrapper::-webkit-scrollbar {
  height: 0px;
  background: transparent;
}
.area-nav #content {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.area-nav-industries .area-nav-item {
  white-space: nowrap;
}
.area-section {
  padding: 10rem 20rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.area-section-heading {
  min-width: 33rem;
  width: 33rem;
  margin-right: 2rem;
}
.area-section-heading .s-title {
  margin-bottom: 2rem;
}
.area-section-content {
  overflow: hidden;
}
.area-section-content .area-paragraph {
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
  color: #262626;
  width: 80%;
  margin-bottom: 1rem;
}
.area-section-content .area-paragraph-sm {
  color: #262626;
  width: 80%;
  line-height: 26px;
  font-size: 1.6rem;
  font-weight: 300;
}
.area-section-content .area-paragraph-sm span {
  font-weight: 400;
  color: #ff4600;
}
.area-section-content .text-strong {
  font-weight: 500 !important;
  color: #000 !important;
}
.area-section-content .area-features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
}
.area-section-content .area-features-item {
  padding: 0 1.5rem;
  width: 33.33%;
}
.area-section-content .area-features-item .area-paragraph-sm {
  width: 100%;
}
.area-section-content .area-features-item-name {
  margin: 1.5rem 0;
  font-size: 2rem;
  font-weight: 500;
}
.area-section-content .area-features-item-name span {
  display: block;
  font-weight: 400;
}
.area-section-content .area-features-item:first-child {
  padding-left: 0 !important;
}
.area-section-content .area-features-item:last-child {
  padding-right: 0 !important;
}
.area-section-content .area-features .item-border {
  padding: 3rem !important;
  border: 1px solid #5f5f5f;
  border-right: none;
}
.area-section-content .area-features .item-border:last-child {
  border-right: 1px solid #5f5f5f;
}
.area-section-content .area-features .text-strong {
  font-weight: 500 !important;
  color: #000 !important;
}
.area-section-content .dev-methodologies {
  margin: 4rem 0 8rem;
  position: relative;
}
.area-section-content .dev-methodologies picture img {
  width: 100%;
  max-width: 100rem;
}
.area-section-content .dev-methodologies .scrum-master {
  position: absolute;
  top: 9rem;
  left: 27rem;
}
.area-section .area-dev-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.area-section .area-dev-img img {
  width: 36rem;
}
.area-section .area-dev-img .mob-dev-info {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.area-section .area-dev-img .mob-dev-info .dev-info-role {
  display: block;
  color: #ff6024;
  font-size: 1.2rem;
  font-weight: 600;
  top: 0;
  text-transform: uppercase;
}
.area-section .area-dev-img .mob-dev-info .dev-info-name {
  color: #262626;
  font-weight: 400;
}
.area-section .area-dev-img .mob-dev-info {
  right: -1rem;
  top: 25%;
  border-left: 1px solid #bebebe;
  padding-left: 1.2rem;
}
.area-section .area-features-list {
  list-style-type: disc;
  margin-top: 1rem;
}
.area-section .area-features-list li {
  margin-left: 2rem;
  color: #c8c8c8 !important;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.area-section .area-features-item-num {
  color: #ff6024 !important;
  font-size: 6rem;
  font-weight: 200 !important;
  margin-bottom: 0;
}
.area-section.trusted-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.area-section.trusted-section .trusted-heading {
  margin: 0 auto;
}
.area-section.trusted-section .trusted-heading .s-title {
  text-align: center;
}
.area-section.trusted-section .divider {
  margin-left: auto;
  margin-right: auto;
}
.area-section.trusted-section .area-section-content {
  margin: 2rem auto 0;
  max-width: 110rem;
}
.area-section.trusted-section .area-section-content div {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.area-section .area-section-img img {
  width: 70%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.area-section.our-team {
  padding: 0;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  position: relative;
}
.area-section.our-team .our-team-content {
  padding: 10rem 5rem 10rem 20rem;
  width: 50%;
}
.area-section.our-team .our-team-content .area-paragraph {
  width: 100%;
  color: #c8c8c8 !important;
  padding-bottom: 4rem;
  padding-top: 1rem;
  border-bottom: 1px solid #979797;
}
.area-section.our-team .our-team-img {
  width: 50%;
  height: 72rem;
  display: block;
  background-image: url(../../Images/V4/images/banner/our-team-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.area-section.our-team .our-team-link {
  position: absolute;
  cursor: pointer;
  right: 20rem;
  bottom: 0;
  background-color: #ff6024;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 22rem;
  height: 12rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 2rem;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.area-section.our-team .our-team-link span {
  margin-top: 1.5rem;
}
.area-section.our-team .our-team-link:hover {
  background-color: #e65622;
  text-decoration: none;
}
.area-section.our-team .our-team-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.area-section.our-team .our-team-list-item .num {
  display: block;
  margin-right: 1rem;
  width: 12rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 5rem;
  color: #ff6024 !important;
}
.area-section.our-team .our-team-list-item .desc {
  font-weight: 400;
  font-size: 1.6rem;
  color: #c8c8c8 !important;
}
.area-section.how-we-work #accordion-t-extension {
  padding-right: 0;
}
.area-section .client-info {
  margin-top: 3rem;
}
.area-section .client-info .client-name {
  font-size: 1.6rem;
  font-weight: 700;
}
.area-section .clutch-rate {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.area-section .clutch-rate p {
  margin-bottom: 0;
}
.area-section .clutch-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2rem;
}
.area-section .clutch-wrapper .clutch-logo {
  width: 6.6rem;
  margin-right: 1.5rem;
}
.area-content-list {
  margin-top: 3rem;
}
.area-content-list li {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: #ff4600;
}

#web-dev {
  padding-bottom: 0 !important;
}
#web-dev.how-it-works {
  padding-bottom: 10rem !important;
}
@media only screen and (max-width: 1550px) {
  #web-dev.how-it-works {
    padding-bottom: 10rem !important;
  }
}
@media only screen and (max-width: 1350px) {
  #web-dev.how-it-works {
    padding-bottom: 5rem !important;
  }
}

#web-dev .area-paragraph:last-child {
  margin-bottom: 5rem !important;
}

.bg-dark {
  background-color: #232323 !important;
}
.bg-dark * {
  color: #fff !important;
}
.bg-dark .area-paragraph-sm {
  color: #c8c8c8 !important;
}
.bg-dark .s-title {
  font-weight: 300 !important;
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
}

.bg-black {
  background-color: #000 !important;
}
.bg-black * {
  color: #fff !important;
  z-index: 101;
}
.bg-black .area-paragraph-sm {
  color: #c8c8c8 !important;
}

.bg-image {
  position: relative;
}
.bg-image::before {
  content: "";
  min-height: 40rem;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 50%;
  background-image: url(../../Images/V4/images/banner/how-we-work-banner.jpg);
  mix-blend-mode: normal;
  opacity: 0.25;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.client-satisfaction .carousel-wrapper {
  margin-top: 0;
}
.client-satisfaction .carousel-wrapper .owl-item {
  cursor: auto;
}

#accordion-t-extension {
  margin-top: 4rem;
  padding-right: 20rem;
  width: 70%;
}
#accordion-t-extension .card {
  border: none !important;
}
#accordion-t-extension .card:last-child {
  border-bottom: 1px solid #bcbcbc !important;
}
#accordion-t-extension .card .collapse-title {
  font-weight: 400;
  padding: 2rem 0.8rem;
  font-size: 2rem;
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#accordion-t-extension .card .collapse-title:hover {
  text-decoration: none;
}
#accordion-t-extension .card .collapse-title-icon {
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
#accordion-t-extension .card .collapse-title.collapsed .collapse-title-icon {
  transform: rotateZ(0deg) !important;
  -webkit-transform: rotateZ(0deg) !important;
  -moz-transform: rotateZ(0deg) !important;
  -ms-transform: rotateZ(0deg) !important;
}
#accordion-t-extension .card,
#accordion-t-extension .card-header {
  background-color: transparent;
  border-right: none;
  border-left: none;
  border-bottom: none;
  border-top: 1px solid #bcbcbc;
}
#accordion-t-extension .card-body {
  margin-top: -0.5rem;
  font-size: 1.6rem;
  font-weight: 300;
}
#accordion-t-extension .card-header {
  padding: 0;
}

.area-c-gallery {
  padding-right: 0 !important;
}
.area-c-gallery .area-section-content .area-paragraph,
.area-c-gallery .area-section-content .area-paragraph-sm {
  padding-right: 8rem;
}

.area-section-content .s-title {
  width: 80%;
}

.gradient-bg {
  position: relative;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(-6.77%, rgba(255, 255, 255, 0.0001)),
    color-stop(51.12%, #fcfcfc),
    to(#e4e4e4)
  );
  background: -o-linear-gradient(
    right,
    rgba(255, 255, 255, 0.0001) -6.77%,
    #fcfcfc 51.12%,
    #e4e4e4 100%
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.0001) -6.77%,
    #fcfcfc 51.12%,
    #e4e4e4 100%
  );
}

.area-section.what-we-provide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.area-section.what-we-provide .area-features.row {
  margin-left: 0;
  margin-right: 0;
}
.area-section.what-we-provide .border-bottom {
  padding-bottom: 5rem;
  border-bottom: 1px solid #979797 !important;
}
.area-section.what-we-provide .area-service-cycle {
  margin-top: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.area-section.what-we-provide .area-service-cycle .area-paragraph span {
  font-weight: 300;
  color: #ff4600;
}
.area-section.what-we-provide .service-cycle-sm {
  display: none;
}
.area-section.what-we-provide .service-cycle {
  margin: 10rem auto 5rem;
}
.area-section.what-we-provide .service-cycle-content {
  position: relative;
  width: 50rem;
  height: 50rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #ff6024;
}
.area-section.what-we-provide .service-cycle-tab {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 75%;
}
.area-section.what-we-provide .service-cycle-tab .area-features-item-name {
  margin: 1.5rem 0;
  font-size: 3rem;
  font-weight: 500;
}
.area-section.what-we-provide .service-cycle-tab .area-paragraph-service {
  font-weight: 300;
}
.area-section.what-we-provide .service-cycle-pills .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #262626;
  padding: 1rem;
}
.area-section.what-we-provide .service-cycle-pills .nav-link.active {
  background-color: transparent;
}
.area-section.what-we-provide .service-cycle-pills .nav-link.active::before {
  content: "";
  background-color: #ff6024;
  width: 1.2rem;
  min-height: 1.2rem;
  height: 1.2rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 1;
}
.area-section.what-we-provide .service-cycle-pills .nav-link::after {
  content: "";
  background-color: #fbf9f9;
  border: 2px solid #ff6024;
  width: 2.2rem;
  min-height: 2.2rem;
  height: 2.2rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  position: absolute;
}
.area-section.what-we-provide .service-cycle-pills #pills-reliable-tab {
  position: absolute;
  top: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-reliable-tab::after {
  left: 50%;
  top: 48px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-reliable-tab.active::before {
  left: 50%;
  top: 53px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-quality-tab {
  position: absolute;
  right: -8rem;
  top: 25%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
  width: 8.5rem;
}
.area-section.what-we-provide .service-cycle-pills #pills-quality-tab::after {
  left: -33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-quality-tab.active::before {
  left: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-sensible-tab {
  position: absolute;
  right: -8rem;
  bottom: 25%;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}
.area-section.what-we-provide .service-cycle-pills #pills-sensible-tab::after {
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-sensible-tab.active::before {
  left: -27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-fast-tab {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-fast-tab::after {
  left: 50%;
  top: -27px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-fast-tab.active::before {
  left: 50%;
  top: -22px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-helpful-tab {
  position: absolute;
  left: -7rem;
  bottom: 25%;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}
.area-section.what-we-provide .service-cycle-pills #pills-helpful-tab::after {
  right: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-helpful-tab.active::before {
  right: -27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide .service-cycle-pills #pills-secure-tab {
  position: absolute;
  left: -7rem;
  top: 25%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}
.area-section.what-we-provide .service-cycle-pills #pills-secure-tab::after {
  right: -34px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area-section.what-we-provide
  .service-cycle-pills
  #pills-secure-tab.active::before {
  right: -29px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 1550px) {
  .area-nav,
  .area-section {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .area-nav #accordion-t-extension,
  .area-section #accordion-t-extension {
    padding-right: 10rem;
  }

  .our-team-link {
    right: 10rem !important;
  }

  .our-team-content {
    padding-left: 10rem !important;
  }

  .area-dev-img img {
    width: 30rem !important;
  }
  .area-dev-img .mob-dev-info {
    border: none !important;
    padding-right: 1.2rem;
    background-color: #fff;
    top: 49% !important;
  }
}
@media only screen and (max-width: 1350px) {
  .area-nav,
  .area-section {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .area-nav #accordion-t-extension,
  .area-section #accordion-t-extension {
    padding-right: 5rem !important;
  }

  .our-team-content {
    padding-left: 5rem !important;
  }

  .our-team-link {
    right: 5rem !important;
  }

  .area-c-gallery .area-section-content .area-paragraph,
  .area-c-gallery .area-section-content .area-paragraph-sm {
    padding-right: 10rem;
  }

  .area-dev-img {
    margin-right: 2rem !important;
  }
  .area-dev-img img {
    width: 26rem !important;
  }
}
@media only screen and (max-width: 1320px) {
  #s-architecture .s-title {
    font-size: 24px !important;
  }
  #s-architecture .area-features .item-border {
    padding: 3rem 2rem !important;
  }
}
@media only screen and (max-width: 1220px) {
  .area-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .area-section-heading {
    margin-bottom: 3rem;
  }
  .area-section-content .area-paragraph,
  .area-section-content .area-paragraph-sm {
    width: 100%;
  }
  .area-section-content .s-title {
    width: 100% !important;
  }
  .area-section-content #accordion-t-extension {
    padding-right: 5rem !important;
    width: 100%;
  }
  .area-section .area-features-item {
    width: 50%;
  }

  .area-section-img img {
    width: 100% !important;
  }

  .mob-development .area-features-item {
    width: 33.33% !important;
  }
  .mob-development .area-dev-img img {
    width: 29rem !important;
  }

  .area-c-gallery .area-section-content .area-paragraph,
  .area-c-gallery .area-section-content .area-paragraph-sm {
    padding-right: 5rem !important;
  }

  .area-section.what-we-provide {
    overflow: hidden;
  }
  .area-section.what-we-provide .area-service-cycle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .our-team-content {
    padding-left: 5rem !important;
  }

  .area-features .area-features-item.col-lg-3 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 2rem;
  }
  .area-features .area-features-item.col-lg-3:nth-child(2) {
    padding-right: 0;
  }
  .area-features .area-features-item.col-lg-3:nth-child(3) {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .area-nav-item {
    font-size: 15px;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 1050px) {
  .area-section.our-team {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .area-section.our-team .our-team-content {
    width: 100%;
  }
  .area-section.our-team .our-team-img {
    width: 100%;
    background-size: cover;
    height: 56rem;
  }
}
@media only screen and (max-width: 991px) {
  .area-section.our-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .area-nav {
    padding: 0 2rem !important;
  }
}
@media only screen and (max-width: 599px) {
  .slider1 .owl-stage,
  .slider2 .owl-stage {
    padding-left: 0 !important;
  }
  .slider1 .owl-prev,
  .slider2 .owl-prev {
    display: none !important;
  }
  .slider-counter-1,
  .slider-counter-2 {
    display: none !important;
  }

  .slider1 .owl-nav,
  .slider2 .owl-nav {
    margin: 0 !important;
    height: 0 !important;
  }
  .slider1,
  .slider2 {
    overflow: unset !important;
  }
  .slider1 .owl-dots,
  .slider2 .owl-dots {
    height: 0 !important;
  }
  .slider1 .owl-next,
  .slider2 .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -10px;
    padding-right: 14px !important;
    padding-left: 16px !important;
  }
}
.carousel .owl-carousel .owl-nav button:hover {
  background-color: #ff7541;
}
@media only screen and (max-width: 870px) {
  #s-architecture .area-features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #s-architecture .area-features-item {
    width: 100% !important;
    border-bottom: 0;
    border-right: 1px solid #5f5f5f;
    margin-bottom: 0 !important;
  }
  #s-architecture .area-features-item:last-child {
    border-bottom: 1px solid #5f5f5f;
  }
}
@media only screen and (max-width: 850px) {
  .area-section.our-team .our-team-img {
    height: 42rem;
  }
  .area-section.our-team .our-team-link {
    height: 9rem;
  }
  .area-section.our-team .our-team-link span {
    margin-top: 0;
  }

  .clutch-rate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .client-satisfaction .carousel-wrapper .owl-item {
    cursor: -webkit-grab !important;
    cursor: grab !important;
  }

  .area-features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .area-features-item {
    width: 100% !important;
    margin-bottom: 2rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .area-features-item:last-child {
    margin-bottom: 0;
  }
  .area-features-item.col-lg-3 {
    -ms-flex: 0 0 100% !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
  }

  .mob-development {
    padding-bottom: 0;
  }
  .mob-development .area-features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .mob-development .area-features-item {
    width: 50% !important;
  }
  .mob-development .area-dev-img {
    position: relative;
    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;
  }
  .mob-development .area-dev-img img {
    width: 36rem !important;
  }
  .mob-development .area-dev-img .mob-dev-info {
    right: 23% !important;
  }
}
@media only screen and (max-width: 1150px) {
  .area-nav #wrapper {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 750px) {
  .service-cycle-content {
    width: 42rem !important;
    height: 42rem !important;
  }
  .service-cycle-content .area-features-item-name {
    font-size: 2.6rem !important;
  }
  .service-cycle-content #pills-quality-tab::after {
    left: -28px !important;
  }
  .service-cycle-content #pills-sensible-tab::after {
    left: -26px !important;
  }
  .service-cycle-content #pills-secure-tab::after {
    right: -29px !important;
  }
  .service-cycle-content #pills-helpful-tab::after {
    right: -27px !important;
  }
  .service-cycle-content .service-cycle-pills .nav-link.active::before {
    display: none !important;
  }
  .service-cycle-content .service-cycle-pills .nav-link.active::after {
    background-color: #ff6024 !important;
  }
}
.case-studie .s-title {
  padding-right: 5rem !important;
}
@media only screen and (max-width: 650px) {
  .area-nav,
  .area-section {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .case-studie .s-title {
    padding-right: 2rem !important;
  }
  .area-section.mob-development {
    padding-bottom: 0 !important;
  }
  .what-we-provide .area-features {
    margin-top: 0;
  }
  .what-we-provide .area-service-cycle {
    margin-top: 4rem !important;
  }

  .border-bottom {
    padding-bottom: 2rem !important;
  }

  .area-c-gallery .area-section-content .area-paragraph,
  .area-c-gallery .area-section-content .area-paragraph-sm {
    padding-right: 2rem !important;
  }

  .area-section.our-team .our-team-link {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .our-team-content {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .area-section-content #accordion-t-extension {
    padding-right: 2rem !important;
  }

  .trusted-section .row .col-6 {
    -ms-flex: 0 0 100% !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
  }
  .trusted-section .row .col-6:last-child {
    margin-bottom: 0;
  }

  .mob-development .area-dev-img img {
    width: 27rem !important;
  }
  .mob-development .area-dev-img img .mob-dev-info {
    right: 6rem;
  }
}
@media only screen and (max-width: 550px) {
  .dev-methodologies-img img {
    max-width: 34.5rem !important;
  }

  .our-team-content p {
    border-bottom: 0 !important;
    padding-bottom: 1rem !important;
  }
  .our-team-content .our-team-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 470px) {
  .mob-development .area-features {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    margin-bottom: 2rem;
  }
  .mob-development .area-features-item {
    width: 100% !important;
  }
}
@media only screen and (max-width: 620px) {
  .area-section.what-we-provide {
    padding-bottom: 5rem;
  }
  .area-section.what-we-provide .service-cycle {
    display: none;
  }
  .area-section.what-we-provide .service-cycle-sm {
    margin-top: 3rem;
    position: relative;
    display: block;
  }
  .area-section.what-we-provide .service-cycle-sm .service-cycle-wrapper {
    border-left: 2px solid #ff6024;
    padding-left: 3rem;
  }
  .area-section.what-we-provide
    .service-cycle-sm
    .service-cycle-wrapper::before {
    bottom: 22px;
    content: "";
    z-index: 1001;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ff6024;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -10px;
  }
  .area-section.what-we-provide
    .service-cycle-sm
    .service-cycle-wrapper
    .area-features-item-name {
    font-size: 1.8rem;
    margin-top: 1rem;
    font-weight: 600;
  }
  .area-section.what-we-provide
    .service-cycle-sm
    .service-cycle-wrapper
    .service-cycle-item {
    margin: 2.5rem 0;
    position: relative;
    top: -15px;
  }
  .area-section.what-we-provide
    .service-cycle-sm
    .service-cycle-wrapper
    .service-cycle-item::before {
    top: 13px;
    content: "";
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ff6024;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -42px;
  }
}
.vertical-pills .nav-pills .nav-link {
  -webkit-border-radius: 0;
  border-radius: 0;
  border-bottom: 0 !important;
  border-left: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
}
.vertical-pills .nav-pills .nav-link:first-child {
  border-top: 0 !important;
}
.vertical-pills .nav-pills .nav-link.active {
  border-right: 0;
}
.vertical-pills .nav-pills .nav-link.active .tab-icon {
  display: none;
}
.vertical-pills .area-paragraph-sm {
  width: 100%;
  margin: 3rem 0;
}
.vertical-pills .area-paragraph-sm span {
  font-weight: 500 !important;
}
.vertical-pills .area-paragraph-sm .text-strong {
  font-weight: 600;
  color: #000 !important;
  font-weight: 600;
}
.vertical-pills .tab-content {
  padding: 3rem 3rem 3rem 0;
}
.vertical-pills .tab-content .area-paragraph-sm {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.vertical-pills .tab-pane .has-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.vertical-pills .tab-pane .has-icon .tab-content-icon {
  margin-right: 3rem;
}
.vertical-pills.pills-dark .tab-pane .has-icon {
  background-color: #000;
}
.vertical-pills .tab-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.vertical-pills .tab-content-wrapper .tab-content .pills-heading {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.vertical-pills .tab-content-wrapper .tab-content-icon {
  margin-right: 3rem;
  margin-top: 3.8rem;
}
.vertical-pills .collapse:not(.show) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pills-light {
  margin-top: 3rem;
  border: 1px solid #959595;
}
.pills-light .nav-pills .nav-link {
  background-color: #f9f9f9;
  border: 1px solid #959595;
  color: #262626;
}
.pills-light .nav-pills .nav-link.active {
  background-color: #fff;
}
.pills-light .tab-content {
  overflow: auto;
  height: 31.2rem;
}

.pills-dark {
  background-color: #000;
  border: 1px solid #5f5f5f;
  margin-top: 3rem;
}
.pills-dark .nav-pills .nav-link {
  background-color: #000;
  border: 1px solid #5f5f5f;
  color: #a9a9a9 !important;
}
.pills-dark .nav-pills .nav-link.active {
  color: #fff !important;
  background-color: #000;
  font-weight: 500 !important;
}
.pills-dark .card-body {
  background-color: #000 !important;
}
.pills-dark .card-body .area-paragraph-sm {
  color: #fff;
}
.pills-dark .card-body .pills-heading {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.pills-dark .tab-content {
  overflow: auto;
  height: 26.8rem;
}

.vertical-pills .card-body {
  padding: 0 !important;
}
.vertical-pills .card .card-header {
  display: none;
}

@media only screen and (max-width: 920px) {
  .vertical-pills {
    border: none !important;
  }
  .vertical-pills .tab-pane {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .vertical-pills .card {
    border: none !important;
  }
  .vertical-pills .card .card-header {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 !important;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f9f9f9;
  }
  .vertical-pills .card .card-header h5 {
    width: 100%;
  }
  .vertical-pills .card .card-header a {
    padding: 1.3rem 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f9f9f9;
    color: #262626;
    font-size: 1.6rem;
    font-weight: 400;
  }
  .vertical-pills .card .card-header a:hover {
    text-decoration: none !important;
  }
  .vertical-pills .card .card-header a[aria-expanded="true"] span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .vertical-pills .card-body {
    background-color: #f9f9f9;
    padding: 3rem 1rem !important;
  }
  .vertical-pills .card-body h2 {
    display: none;
  }
  .vertical-pills .col-8 {
    -ms-flex: 0 0 100% !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .vertical-pills .col-4 {
    display: none !important;
  }

  .pills-light .card.tab-pane {
    border: 1px solid #959595 !important;
    border-bottom: 0 !important;
  }
  .pills-light .card.tab-pane:last-child {
    border-bottom: 1px solid #959595 !important;
  }

  .pills-dark .card.tab-pane {
    border: 1px solid #5f5f5f !important;
    border-bottom: 0 !important;
  }
  .pills-dark .card.tab-pane:last-child {
    border-bottom: 1px solid #5f5f5f !important;
  }
  .pills-dark .card .card-header {
    background-color: #000 !important;
  }
  .pills-dark .card .card-header a {
    background-color: #000 !important;
    color: #fff;
  }
  .pills-dark .card-body {
    background-color: #000 !important;
  }
  .card-header .tab-icon {
    pointer-events: none;
  }

  .tab-open {
    display: block !important;
  }
  .c-collapse.show {
    display: block !important;
  }
  .c-collapse {
    display: none !important;
  }

  .tab-content-icon {
    padding-left: 2rem;
    padding-top: 4rem;
  }

  .pills-dark .tab-content,
  .pills-light .tab-content {
    overflow: auto;
    height: auto;
  }

  .vertical-pills .tab-content {
    padding: 0;
  }

  .tab-pane .has-icon {
    display: block;
  }

  .tab-pane .collapse:not(.show) {
    display: none !important;
  }
}
@media (min-width: 920px) {
  .vertical-pills .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
  .vertical-pills .nav-tabs {
    border-bottom: none;
    border-right: 1px solid #ddd;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .vertical-pills .nav-tabs {
    margin: 0 15px;
  }
  .vertical-pills .nav-tabs .nav-item + .nav-item {
    margin-top: 0.25rem;
  }
  .vertical-pills .nav-tabs .nav-link {
    -webkit-transition: border-color 0.125s ease-in;
    -o-transition: border-color 0.125s ease-in;
    transition: border-color 0.125s ease-in;
    white-space: nowrap;
  }
  .vertical-pills .nav-tabs .nav-link:hover {
    background-color: #f7f7f7;
    border-color: transparent;
  }
  .vertical-pills .nav-tabs .nav-link.active {
    border-bottom-color: #ddd;
    border-right-color: #fff;
    -webkit-border-bottom-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px;
  }
  .vertical-pills .nav-tabs .nav-link.active:hover {
    background-color: #fff;
  }
  .vertical-pills .card {
    border: none;
  }
  .vertical-pills .pills-light .collapse:not(.show) {
    display: block;
  }
}
@media (max-width: 920px) {
  .vertical-pills .tab-pane {
    display: block !important;
    opacity: 1 !important;
  }
}
@media (max-width: 650px) {
  .area-section.bg-image {
    padding: 7em 0 0 0;
  }
  .area-section.bg-image .area-paragraph {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    margin-bottom: 6rem !important;
  }
  .area-section.bg-image .area-section-heading {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .pills-dark .card.tab-pane,
  .pills-light .card.tab-pane {
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .pills-light {
    margin-bottom: 5rem;
  }

  .area-section.bg-image {
    padding: 7rem 0 0 0;
  }
  .area-section.bg-image .area-paragraph {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .area-section.bg-image .area-section-heading {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .area-section.bg-image:before {
    min-height: 48rem;
    max-height: 48rem;
    width: 100%;
  }

  #team-extension {
    padding: 10rem 0 0 0;
  }
  #team-extension .area-section-heading {
    padding-left: 2rem;
  }
  #team-extension .area-paragraph,
  #team-extension .area-paragraph-sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #team-extension .tab-content .area-paragraph,
  #team-extension .tab-content .area-paragraph-sm {
    padding-left: 0;
    padding-right: 0;
  }

  .what-we-do ~ .footer.footer-gradient-bg {
    background: #fff !important;
  }
}
@media (max-width: 500px) {
  .collapse-content-wrapper .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cookies {
  display: none;
  margin-left: 20rem;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  z-index: 1001;
  padding: 4rem;
  max-width: 110rem;
  -webkit-box-shadow: -1px 0 15px 5px #00000040;
  box-shadow: -1px 0 15px 5px #00000040;
}
.cookies-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookies-heading {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  width: 100%;
}
.cookies-paragraph {
  width: 58%;
  padding-right: 3rem;
  color: #262626;
}
.cookies-paragraph span {
  font-weight: bold;
}
.cookies-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookies-btns .btn-text {
  margin-right: 3rem;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  margin-top: -6px;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.cookies-btns .btn-primary {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  font-size: 16px !important;
}
.cookies-btns .btn-primary:before {
  right: -26rem;
}

@media only screen and (max-width: 1550px) {
  .cookies {
    margin-left: 10rem;
    margin-right: 10rem;
  }
}
@media only screen and (max-width: 1250px) {
  .cookies {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 982px) {
  .cookies-paragraph {
    width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
    margin-top: 1rem;
    color: #262626;
  }
  .cookies-btns {
    margin-left: auto;
  }
}

@media only screen and (max-width: 650px) {
  .cookies {
    margin: 0;
    padding: 3rem 2rem;
  }
  .cookies-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: auto;
  }
  .cookies-btns .btn-primary {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1rem;
  }
  .cookies-btns .btn-text {
    margin-right: 0 !important;
  }
}
.navbar-collapse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.navbar-collapse .close-nav {
  display: none;
}

.navbar {
  height: 6.1rem;
  overflow: hidden;
  padding: 0;
}
.navbar .navbar-brand {
  padding-left: 2rem;
  padding-top: 0.5rem;
}
.navbar .navbar-brand img {
  width: 15rem;
}
.navbar .nav-item {
  padding: 0 1.2rem;
}
.navbar .nav-item a {
  padding: 2rem 1rem;
  position: relative;
}
.navbar .navbar-nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar .contact-link {
  padding-right: 0;
}
.navbar .contact-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ff6024;
  height: 6.1rem !important;
  padding: 0 2rem !important;
  -webkit-transition: 0.12s background ease-in;
  -o-transition: 0.12s background ease-in;
  transition: 0.12s background ease-in;
}
.navbar .contact-link a svg {
  margin-left: 1rem;
}
.navbar .contact-link a:hover {
  background-color: #e85e2d;
}
.navbar .contact-link ::after {
  background-color: transparent !important;
}
.navbar .close-nav {
  cursor: pointer;
  height: 5.2rem;
  border-left: 1px solid #bebebe;
  width: 5.2rem;
  margin-left: auto;
  padding: 1.5rem;
}
.navbar .close-nav svg {
  width: 2.2rem;
  margin-top: -5px;
}
.navbar .nav-item.active .nav-link::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #ff6024;
  position: absolute;
  bottom: 1px;
  left: 1rem;
  right: 1rem;
}
.navbar .nav-item .nav-link:hover::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  height: 2px;
  bottom: 1px;
  left: 1rem;
  right: 1rem;
  background-color: #ff6024;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar.nav-light {
  background-color: #fff;
}
.navbar.nav-light .nav-link {
  color: #262626;
}
.navbar.nav-light .contact-link .nav-link {
  color: #fff;
}

.navbar-toggler {
  padding-right: 2rem;
  margin-right: 0;
  position: absolute;
  right: -2rem;
  top: -4px;
}
.navbar-toggler .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 6rem;
}
.navbar-toggler .hamRotate.active {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggler .hamRotate180.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navbar-toggler .line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5;
  stroke-linecap: round;
}
.navbar-toggler .ham1 .top {
  stroke-dasharray: 40 139;
}
.navbar-toggler .ham1 .bottom {
  stroke-dasharray: 40 180;
}
.navbar-toggler .ham1.active .top {
  stroke-dashoffset: -98px;
}
.navbar-toggler .ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.navbar-toggler.home .navbar-toggler {
  top: -5px;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 4rem;
  max-height: 71rem;
  min-height: 70rem;
  position: relative;
}
.header.home {
  max-height: 100vh;
  height: calc(100vh - 6.1rem);
  min-height: 40vh;
}

.header.home .header-intro-text {
  max-width: 68rem !important;
}
.header.home .header-intro-text h1 {
  font-size: 4rem;
}
.header.home .navbar {
  border-bottom: 0 !important;
  background-color: transparent;
}
.header.home .navbar img {
  width: 15rem;
}
.header.home video {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  min-width: 100%;
  z-index: -1;
  min-height: 100%;
}
.header-img-holder {
  display: none;
  width: 100%;
  height: 0;
  padding-top: 66.71%;
  background-image: url("../../Images/V4/images/header/header-home-sm.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 25rem;
}
.header-intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 20rem;
}
.header-intro-text {
  max-width: 60rem;
}
.header.home .header-intro-text h1 {
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
}
.header-intro-text h1 {
  color: #000;
  font-weight: 500;
  line-height: 1.1;
}

.header-intro-text h1 span {
  display: inline-block;
  overflow: hidden;
  animation: 0.3s swift-up ease-in-out forwards;
}

.header-intro-text h1 i {
  font-style: normal;
  position: relative;
  top: 4rem;
  animation: 0.5s swift-up ease-in-out forwards;
}

@keyframes swift-up {
  to {
    top: 0;
  }
}

.background-video {
  width: 100vw;
  height: calc(100vh - 6.1rem);
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.background-video.mobile {
  display: none;
}

.header-intro-badges.iso-icons-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .background-video.desktop {
    display: none;
  }

  .background-video.mobile {
    display: block;
    height: calc(90vh - 3.8rem);
  }
  .header.home {
    max-height: 100vh;
    height: calc(90vh - 3.8rem);
    min-height: 40vh;
  }
}

@media only screen and (max-width: 700px) {
  .header-intro-badges.iso-icons-mobile {
    display: flex;
  }
  .header-intro-badges.iso-icons-desktop {
    display: none;
  }
}

.header-intro-text .btn-primary {
  margin-top: 3rem;
}
.header-intro-badges {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.header-intro-badges div {
  margin-right: 3.5rem;
}
.header.what-we-do {
  padding-bottom: 0;
  background-image: url("../../Images/V4/images/header/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
}
.header.what-we-do .navbar-brand {
  padding-top: 0;
}
.header.what-we-do .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
  margin-right: 5rem;
}
.header.what-we-do .header-intro-text .heading {
  color: #000;
}
.header.what-we-do .header-intro-devs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 5rem;
  position: relative;
}
.header.what-we-do .header-intro-devs .ceo-info,
.header.what-we-do .header-intro-devs .dev-info {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header.what-we-do .header-intro-devs .ceo-info-role,
.header.what-we-do .header-intro-devs .dev-info-role {
  display: block;
  color: #ff6024;
  font-size: 1.2rem;
  font-weight: 600;
  top: 0;
  text-transform: uppercase;
}
.header.what-we-do .header-intro-devs .ceo-info-name,
.header.what-we-do .header-intro-devs .dev-info-name {
  color: #262626;
  font-weight: 400;
}
.header.what-we-do .header-intro-devs .ceo-info {
  right: 0;
  top: 28%;
  border-left: 1px solid #bebebe;
  padding-left: 1.2rem;
}
.header.what-we-do .header-intro-devs .dev-info {
  left: -3rem;
  top: 33%;
  border-right: 1px solid #bebebe;
  padding-right: 1.2rem;
}
.header.what-we-do .header-intro-devs img {
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.header.case-studies {
  padding-bottom: 0;
  background-image: url("../../Images/V4/images/header/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  overflow: hidden;
}

.header.case-studies .industries-hero {
  width: 100%;
  min-width: 55rem;
  max-width: 82rem;
}

.project-summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-right: 2rem;
}

.project-summary-item span {
  font-weight: 300;
  font-size: 16px;
}

.project-summary-item p {
  font-weight: 300;
  font-size: 18px;
}

.project-summary-item-divider {
  width: 1px;
  height: 4rem;
  background-color: #d0d0d0;
  display: block;
  margin: 0 4rem;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.header.case-studies .navbar-brand {
  padding-top: 0;
}

.header.case-studies .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
}

.header.case-studies .header-intro-text .heading {
  color: #000;
}

.header.case-studies .header-intro-devs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-left: 0;
}

.header.case-studies .header-intro-devs img {
  width: 105rem;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.header.case-studies .header-intro-devs .dev2-info,
.header.case-studies .header-intro-devs .dev-info {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header.case-studies .header-intro-devs .dev2-info-role,
.header.case-studies .header-intro-devs .dev-info-role {
  display: block;
  color: #ff6024;
  font-size: 1.2rem;
  font-weight: 600;
  top: 0;
  text-transform: uppercase;
}

.header.case-studies .header-intro-devs .dev2-info-name,
.header.case-studies .header-intro-devs .dev-info-name {
  color: #262626;
  font-weight: 400;
}

.header.case-studies .header-intro-devs .dev2-info {
  right: 4rem;
  top: 40%;
  border-left: 1px solid #bebebe;
  padding-left: 1.2rem;
}

.header.case-studies .header-intro-devs .dev-info {
  left: 17rem;
  top: 17%;
  border-right: 1px solid #bebebe;
  padding-right: 1.2rem;
}

.header.case-studies.who-we-are {
  padding-bottom: 0;
  background-image: url("../images/header/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
}

.header.case-studies.who-we-are .navbar-brand {
  padding-top: 0;
}

.header.case-studies.who-we-are .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
}

.header.case-studies.who-we-are .header-intro-text .heading {
  color: #000;
}

.header.case-studies.who-we-are .header-intro-devs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-left: 0;
}

.header.case-studies.who-we-are .header-intro-devs img {
  width: 105rem;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.header.case-studies.who-we-are .header-intro-devs .dev2-info,
.header.case-studies.who-we-are .header-intro-devs .dev-info {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header.case-studies.who-we-are .header-intro-devs .dev2-info-role,
.header.case-studies.who-we-are .header-intro-devs .dev-info-role {
  display: block;
  color: #ff6024;
  font-size: 1.2rem;
  font-weight: 600;
  top: 0;
  text-transform: uppercase;
}

.header.case-studies.who-we-are .header-intro-devs .dev2-info-name,
.header.case-studies.who-we-are .header-intro-devs .dev-info-name {
  color: #262626;
  font-weight: 400;
}

.header.case-studies.who-we-are .header-intro-devs .dev2-info {
  right: 4rem;
  top: 40%;
  border-left: 1px solid #bebebe;
  padding-left: 1.2rem;
}

.header.case-studies.who-we-are .header-intro-devs .dev-info {
  left: 17rem;
  top: 17%;
  border-right: 1px solid #bebebe;
  padding-right: 1.2rem;
}
.header.who-we-are {
  padding-bottom: 0;
  background-image: url("../../Images/V4/images/header/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
}
.header.who-we-are .navbar-brand {
  padding-top: 0;
}
.header.who-we-are .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
}
.header.who-we-are .header-intro-text .heading {
  color: #000;
}
.header.who-we-are .header-intro-devs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-left: 0;
}
.header.who-we-are .header-intro-devs img {
  width: 105rem;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.header.who-we-are .header-intro-devs .dev2-info,
.header.who-we-are .header-intro-devs .dev-info {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header.who-we-are .header-intro-devs .dev2-info-role,
.header.who-we-are .header-intro-devs .dev-info-role {
  display: block;
  color: #ff6024;
  font-size: 1.2rem;
  font-weight: 600;
  top: 0;
  text-transform: uppercase;
}
.header.who-we-are .header-intro-devs .dev2-info-name,
.header.who-we-are .header-intro-devs .dev-info-name {
  color: #262626;
  font-weight: 400;
}
.header.who-we-are .header-intro-devs .dev2-info {
  right: 8rem;
  top: 40%;
  border-left: 1px solid #bebebe;
  padding-left: 1.2rem;
}
.header.who-we-are .header-intro-devs .dev-info {
  left: 15rem;
  top: 17%;
  border-right: 1px solid #bebebe;
  padding-right: 1.2rem;
}
.header.industries {
  padding-bottom: 0;
  background-image: url("../../Images/V4/images/header/header-img-dark.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
}
.header.industries .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
  margin-right: 5rem;
}
.header.industries .header-intro-text .heading {
  color: #fff;
}
.header.industries .header-intro-paragraph {
  color: #fff !important;
}
.header.industries .navbar-brand {
  padding-top: 0;
}
.header.industries .industries-hero {
  width: 100%;
  max-width: 60rem;
  margin-bottom: 10rem;
  min-width: 40rem;
}
.header.contact-page {
  padding-bottom: 0;
  background-image: url("../../Images/V4/images/header/header-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
}
.header.contact-page .navbar-brand {
  padding-top: 0;
}
.header.contact-page .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 2rem;
  z-index: 1;
}
.header.contact-page .header-intro-text .heading {
  color: #000;
}
.header.contact-page .header-intro-text .view-on-google {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #262626;
  font-size: 1.6rem;
  font-weight: 300;
}
.header.contact-page .header-intro-text .view-on-google img {
  margin-right: 1rem;
}
.header.contact-page .header-intro-map {
  position: absolute;
  right: 0;
  top: 14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 5rem;
}
.header .heading-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5.5rem 0;
}
.header .heading-contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header .heading-contact-item img {
  width: 9rem;
  margin-right: 1rem;
}
.header .heading-contact-item .header-intro-paragraph p {
  margin-bottom: 0;
}
.header .heading-contact-item .header-intro-paragraph a {
  color: #262626;
  display: block;
}
.header .heading-contact-item:first-child {
  margin-right: 6rem;
}

@media only screen and (max-width: 1630px) {
  .header.who-we-are .header-intro-devs .dev-info {
    left: 9rem !important;
  }
  .header.who-we-are .header-intro-devs img {
    width: 85rem !important;
  }
  .header.who-we-are .header-intro-devs .dev2-info {
    right: 2.5rem !important;
  }
}
@media only screen and (max-width: 1550px) {
  .header-intro {
    padding-left: 10rem;
  }
}
@media only screen and (max-width: 1445px) {
  .header-intro-devs {
    margin-left: 4rem;
  }
  .header-intro-devs img {
    width: 62rem;
  }
  .header-intro-devs .dev-info {
    left: -4rem !important;
  }
  .area-nav #content {
    width: 1150px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .area-nav-item {
    width: 15rem !important;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
  }
}
@media only screen and (max-width: 1250px) {
  .header-intro-devs img {
    width: 50rem;
  }
}
@media only screen and (max-width: 1250px) {
  .header-intro {
    padding-left: 5rem;
  }

  .what-we-do .header-intro-text {
    margin-right: 2rem;
  }
  .what-we-do .header-intro-devs .dev-info,
  .what-we-do .header-intro-devs .ceo-info {
    background-color: #fff;
    border: none !important;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .what-we-do .header-intro-devs .ceo-info {
    top: 46% !important;
  }
}
@media only screen and (max-width: 1200px) {
  .header.who-we-are .header-intro-devs picture {
    overflow: hidden;
  }
  .header.who-we-are .header-intro-devs img {
    width: 73rem !important;
    margin-right: -9rem;
  }
  .header.who-we-are .header-intro-devs .dev-info,
  .header.who-we-are .header-intro-devs .dev2-info {
    background-color: #fff;
    border: none !important;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .header.who-we-are .header-intro-devs .dev-info {
    left: 7rem !important;
  }
  .header.who-we-are .header-intro-devs .dev-info-name {
    font-size: 1.4rem;
  }
  .header.who-we-are .header-intro-devs .dev2-info {
    right: 5rem !important;
    top: auto;
    bottom: 7rem;
  }
  .header.who-we-are .header-intro-devs .dev2-info-name {
    font-size: 1.4rem;
  }
  .header.who-we-are .header-intro-text .header-intro-paragraph {
    font-size: 1.7rem;
  }

  .header.what-we-do .header-intro-text .header-intro-paragraph {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 991px) {
  .header.what-we-do .header-intro-devs img {
    width: 44rem;
  }
}
@media only screen and (max-width: 950px) {
  .header.who-we-are .header-intro-devs img {
    width: 65rem !important;
  }
  .header.who-we-are .header-intro-devs .dev-info {
    left: 9rem !important;
    top: 38%;
  }
  .header.who-we-are .header-intro-devs .dev2-info {
    right: 5rem !important;
    top: auto;
    bottom: 6rem;
  }
}
@media only screen and (max-width: 900px) {
  .header.what-we-do {
    overflow: hidden;
  }
  .header.what-we-do .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 0;
  }
  .header.what-we-do .header-intro-text {
    margin-bottom: -1rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .header.what-we-do .header-intro-devs {
    margin-left: auto;
  }
  .header.what-we-do .header-intro-devs img {
    width: 48rem;
  }
}
@media only screen and (max-width: 870px) {
  .header.who-we-are {
    overflow: hidden;
  }
  .header.who-we-are .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 0;
  }
  .header.who-we-are .header-intro-text {
    margin-bottom: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .header.who-we-are .header-intro-devs {
    margin-left: auto;
  }
  .header.who-we-are .header-intro-devs picture img {
    margin-right: 0;
    width: 100% !important;
    max-width: 75rem !important;
  }

  .header.contact-page .header-intro-text .header-intro-paragraph {
    font-size: 1.6rem;
  }

  .header.contact-page .heading-contact-item:first-child {
    margin-right: 3rem !important;
  }
  .header.case-studies .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header.case-studies .header-intro .header-intro-text {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 780px) {
  .header.industries .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 5rem;
  }
  .header.industries .header-intro-text {
    margin-bottom: 3.5rem;
  }
  .header.industries .industries-hero-wrapper {
    margin-left: auto;
  }
  .header.industries .industries-hero {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0;
    min-width: 40rem;
  }
}
@media only screen and (max-width: 750px) {
  .header.contact-page .heading-contact {
    margin: 3rem 0;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .header.contact-page .heading-contact-item:first-child {
    margin-right: 0rem !important;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .header-intro {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header.who-we-are .header-intro {
    padding-right: 0;
  }
  .header.who-we-are .header-intro-text {
    margin-bottom: 3rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .header.what-we-do .header-intro {
    padding-right: 0;
  }
  .header.what-we-do .header-intro-text {
    margin-bottom: 3rem;
  }
  .header.what-we-do .header-intro-devs img {
    width: 42rem;
  }

  .header.industries .header-intro {
    padding-right: 0 !important;
    padding-left: 2rem !important;
  }
  .header.industries .industries-hero {
    min-width: 35rem;
  }
}
@media only screen and (max-width: 560px) {
  .header.what-we-do {
    min-height: auto !important;
    max-height: 100% !important;
    overflow: hidden;
  }
  .header.what-we-do .ceo-info {
    display: none !important;
  }
  .header.what-we-do .header-intro-devs {
    margin-right: 0;
  }
  .header.what-we-do .header-intro-devs img {
    width: 100%;
    max-width: 27rem;
    margin-right: 2rem;
  }
  .header.what-we-do .header-intro-text {
    margin-top: 8rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media only screen and (max-width: 540px) {
  .header.who-we-are {
    min-height: auto !important;
    max-height: 100% !important;
    overflow: hidden;
  }
  .header.who-we-are .header-intro-text {
    margin-bottom: 3rem;
    margin-top: 8rem;
  }
  .header.who-we-are .header-intro-devs {
    margin-left: auto;
  }
  .header.who-we-are .header-intro-devs picture img {
    margin-right: 0;
    width: 100% !important;
    max-width: 38rem !important;
  }
  .header.who-we-are .header-intro-devs .dev2-info {
    display: none;
  }
  .header.who-we-are .header-intro-devs .dev-info {
    left: 5rem !important;
  }
}
@media only screen and (max-width: 1200px) {
  .navbar .collapsing {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
  .navbar .navbar-collapse {
    padding: 0;
    height: 100%;
    width: 28rem !important;
    position: fixed;
    z-index: 1010;
    background-color: #fff;
    top: 0;
    left: -28rem;
    overflow-x: hidden;
    -webkit-box-shadow: 1px 0 11px #0f0f0fd9;
    box-shadow: 1px 0 11px #0f0f0fd9;
    -webkit-animation: navbar 0.2s !important;
    animation: navbar 0.2s !important;
    height: 100%;
  }
  .navbar .navbar-collapse.show {
    width: 28rem !important;
    left: 0;
  }
  .navbar .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 !important;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    margin-left: 0;
  }
  .navbar .navbar-nav .nav-item {
    width: 100%;
    border-top: 1px solid #bebebe;
    margin-bottom: 0 !important;
  }
  .navbar .navbar-nav .nav-item.contact-link {
    padding: 3rem !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .navbar .navbar-nav .nav-item.contact-link a {
    color: #fff !important;
  }
  .navbar .navbar-nav .nav-link {
    color: #262626 !important;
    padding: 1.5rem 1.5rem !important;
  }
  .navbar .navbar-nav .nav-item:not(last-child) {
    margin-bottom: 1rem;
  }
  .navbar .navbar-nav .nav-item.active .nav-link {
    border: 0;
  }
  .navbar .navbar-nav .nav-item.active::after {
    content: "" !important;
    display: block !important;
    width: 2px !important;
    height: 100% !important;
    background-color: #ffffff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    visibility: visible;
    opacity: 1 !important;
  }
  .navbar .navbar-nav .nav-item:hover::after {
    width: 5rem;
    opacity: 1;
  }
  .navbar .close-nav {
    display: block !important;
    cursor: pointer;
    height: 5.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-left: 1px solid #bebebe;
    width: 5.2rem;
    margin-left: auto;
    -webkit-transition: 0.15s ease-in;
    -o-transition: 0.15s ease-in;
    transition: 0.15s ease-in;
    padding: 1.5rem;
  }
  .navbar .close-nav svg {
    width: 2.2rem;
    -webkit-transition: 0.15s ease-in;
    -o-transition: 0.15s ease-in;
    transition: 0.15s ease-in;
  }
  .navbar .close-nav:hover {
    background-color: #ff6024;
  }
  .navbar .close-nav:hover svg line {
    stroke: #fff;
  }

  .navbar .nav-item.active .nav-link::before {
    background-color: #ff6024;
    position: absolute;
    left: 0 !important;
    top: 50% !important;
    width: 2px !important;
    height: 2.2rem !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .navbar .nav-item .nav-link:hover::after {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    width: 2px !important;
    height: 2.2rem !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0 !important;
    top: 50% !important;
    bottom: 0 !important;
    background-color: #ff6024;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .navbar .navbar-collapse {
    padding: 0;
    height: 100%;
    width: 100% !important;
    opacity: 0;
    position: fixed;
    z-index: 1010;
    background-color: #fff;
    top: -100%;
    left: 0;
    right: 0;
    overflow-x: hidden;
    box-shadow: none;
    animation: fadeIn ease 0.2s !important;
    padding-top: 7rem;
  }
  .navbar .navbar-collapse.show {
    width: 100% !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    position: fixed;
  }

  .navbar .navbar-brand,
  .navbar .navbar-toggler.navbar-light {
    z-index: 9999 !important;
  }

  .navbar .close-nav {
    display: none !important;
  }

  .navbar .navbar-nav .nav-item {
    width: 100%;
    border-top: 1px solid #bebebe;
    margin-bottom: 0 !important;
  }
  .navbar .navbar-nav .nav-item.contact-link {
    padding: 3rem !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .navbar .navbar-nav .nav-item.contact-link a {
    color: #fff !important;
  }
  .navbar .navbar-nav .nav-link {
    color: #262626 !important;
    padding: 2rem 1.5rem !important;
    font-size: 17px;
  }
  .navbar .navbar-nav .nav-item:not(last-child) {
    margin-bottom: 1rem;
  }
  .navbar .navbar-nav .nav-item.active .nav-link {
    border: 0;
  }
  .navbar .navbar-nav .nav-item.active::after {
    content: "" !important;
    display: block !important;
    width: 2px !important;
    height: 100% !important;
    background-color: #ffffff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    visibility: visible;
    opacity: 1 !important;
  }
}

@media only screen and (max-width: 900px) {
  .header.home .header-intro .heading-lg {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 700px) {
  .header.home .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header.home .header-intro .heading-lg {
    font-size: 3.2rem;
  }
  .header.home .header-intro-badges {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 2rem;
  }
  .header.home .header-intro-badges div {
    margin-right: 2rem;
  }
  .header.home .header-intro-badges div img {
    /*width: 8rem;*/
    height: 2.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .header.home .animation-wrapper #c {
    margin-top: -5rem;
    /*transform: scale(0.8);*/
  }
}
@media only screen and (max-width: 390px) {
  .header.home .animation-wrapper #c {
    margin-top: -8rem;
    /* transform: scale(0.8);*/
  }
}
@media only screen and (max-width: 390px) {
  .header.home .animation-wrapper #c {
    margin-top: -5rem;
  }
  .header.home .header-intro-text .heading-lg {
    font-size: 2.5rem !important;
  }
}
@media only screen and (max-width: 740px) {
  .area-section-heading {
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media only screen and (max-width: 725px) {
  .header.who-we-are .header-intro-devs img {
    width: 100% !important;
  }
  .header.who-we-are .header-intro-text {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 550px) {
  .header.home .header-intro-text {
    max-width: 100%;
  }
  .header.home .header-intro-text .btn-primary {
    width: 100%;
  }
}
@media only screen and (max-width: 380px) {
  .header.home .header-intro-text .heading-lg {
    font-size: 2.8rem;
  }
}
.animation-wrapper {
  position: absolute;
  top: 0rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.animation-wrapper .intro-carousel {
  position: absolute;
  top: 0;
  left: 0;
}
.animation-wrapper .intro-carousel img {
  display: none;
}
.animation-wrapper .flickity-viewport {
  height: 100% !important;
}
.animation-wrapper .intro-cell {
  width: 100%;
  height: 100%;
  text-align: center;
}
.animation-wrapper .intro-text {
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 860px;
}
.animation-wrapper .intro-text h1 {
  font-size: 42px;
  margin: 0;
}
.animation-wrapper .intro-text h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
}
.animation-wrapper .intro-text p {
  font-size: 18px;
  line-height: 1.5;
}
.animation-wrapper .intro-text a {
  display: inline-block;
  padding: 15px 30px;
  background: #feca0a;
  -webkit-border-radius: 99px;
  border-radius: 99px;
  text-transform: uppercase;
  font-weight: bold;
}
.animation-wrapper .intro-text .feature {
  height: 800px;
}
.animation-wrapper #c {
  height: 100% !important;
  width: 100% !important;
  display: block;
}

.footer {
  padding: 2rem 20rem;
}
.footer h4 {
  margin: 2rem 0 2.5rem;
}
.footer li {
  margin-bottom: 1rem;
}
.footer p {
  margin-top: 3rem;
}
.footer-item {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 1rem;
  margin-left: 4rem;
}
.footer-item ul li a {
  font-weight: 300;
}
.footer-social-media a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-social-media a img {
  margin-right: 1rem;
}
.footer-social-media span {
  margin-right: 1rem;
  width: 35px;
  height: 35px;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  position: relative;
}
.footer-social-media span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}
.footer-social-media span:hover {
  background-color: #334aa7;
}
.footer .copyright {
  position: relative;
  padding: 2rem 0;
}
.footer .divider {
  background-color: #262626;
}

.footer.footer-gradient-bg {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(2.69%, #eaeaea),
    color-stop(24.93%, #ffffff),
    color-stop(56.24%, #ffffff),
    to(#e4e4e4)
  );
  background: -o-linear-gradient(
    right,
    #eaeaea 2.69%,
    #ffffff 24.93%,
    #ffffff 56.24%,
    #e4e4e4 100%
  );
  background: linear-gradient(
    270deg,
    #eaeaea 2.69%,
    #ffffff 24.93%,
    #ffffff 56.24%,
    #e4e4e4 100%
  );
}

@media only screen and (max-width: 1550px) {
  .footer {
    padding: 2rem 10rem;
  }
}
@media only screen and (max-width: 1250px) {
  .footer {
    padding: 2rem 5rem;
  }
}
@media only screen and (max-width: 991px) {
  .footer {
    padding: 2rem 5rem;
  }
  .footer-item.ml-auto {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 650px) {
  .footer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 585px) {
  .footer {
    padding: 2rem;
  }
  .footer-about-section .paragraph {
    display: none;
  }
  .footer-iso {
    display: none;
  }
  .footer-details-mobile {
    display: block !important;
  }
  .footer-about-section img {
    width: 13rem;
  }
  .footer-item {
    margin-left: 0 !important;
  }
  .footer-item ul li a {
    font-size: 1.4rem;
  }
  .footer-nav,
  .footer-social {
    min-width: 50% !important;
  }
  .footer-contact {
    margin-left: 0;
  }

  .copyright {
    font-size: 1.4rem;
  }
}
.page-content .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.divider {
  background-color: #ff6024;
  height: 1px;
  width: 4rem;
  margin: 2rem 0 !important;
  display: block;
}

::-moz-selection {
  color: #fff;
  background: #fc6732;
}

::selection {
  color: #fff;
  background: #fc6732;
}

.about-us {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-us .about-us-img {
  min-height: 54rem;
  display: block;
  width: 50%;
  background-image: url("../../Images/V4/images/banner/bit.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.about-us-text {
  padding: 0 5rem;
  width: 50%;
}
.about-us-text p {
  max-width: 60rem;
  font-size: 2rem;
  margin: 1.5rem 0;
}

@media only screen and (max-width: 1280px) {
  .about-us-text p {
    font-size: 1.6rem;
  }
  .about-us-text .btn-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 740px) {
  .about-us {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-us-text {
    width: 100%;
    padding: 5rem;
  }
  .about-us .about-us-img {
    width: 100%;
    height: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 0 !important;
    height: 0 !important;
    padding-top: 57%;
    margin-top: -3px;
  }
}
@media only screen and (max-width: 650px) {
  .about-us-text {
    padding: 5rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .about-us .about-us-img {
    background-position-x: center;
    background-size: cover;
    min-height: 38rem !important;
    height: auto;
  }
  .header.case-studies .industries-hero {
    min-width: 46rem;
    max-width: 47rem;
  }
}
@media only screen and (max-width: 650px) {
  .header.case-studies {
    min-height: 57rem;
  }
  .header.case-studies .header-intro .header-intro-text {
    margin-bottom: 0rem;
  }
}
.our-mission {
  margin-top: 26rem;
  padding: 0 20rem;
  position: relative;
}
.our-mission-img-holder {
  width: 50%;
  background-image: url("../../Images/V4/images/banner/our-mission.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.our-mission .row {
  margin-left: 0;
  margin-right: 0;
}
.our-mission-content {
  background-color: #ff6024;
  padding: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
.our-mission-content p {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  line-height: 40px;
}
.our-mission-wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 52rem;
  max-height: 52rem;
  margin-top: -26rem;
}

@media only screen and (max-width: 1550px) {
  .our-mission {
    padding: 0 10rem;
  }
}
@media only screen and (max-width: 1350px) {
  .our-mission {
    padding: 0 5rem;
  }
  .our-mission-content p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1050px) {
  .our-mission {
    padding: 0;
  }
  .our-mission-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .our-mission-content {
    width: 100%;
  }
  .our-mission-img-holder {
    height: 46rem;
    background-position: center 10%;
    width: 100%;
  }
}
@media only screen and (max-width: 850px) {
  .our-mission-img-holder {
    height: 32rem;
  }
}
@media only screen and (max-width: 500px) {
  .our-mission-content {
    padding: 5rem 2rem;
  }
}
.industry-tag {
  display: inline-block;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 15px;
  font-size: 16px;
  margin-bottom: 1rem;
}
.industry-tag svg {
  margin-right: 4px;
}
.case-studie .s-title {
  margin-bottom: 15px;
}

.case-studie.bg-blue {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(-6.77%, #374b5c),
    color-stop(50.51%, #2f4353),
    color-stop(98.88%, #263038)
  );
  background: -o-linear-gradient(
    right,
    #374b5c -6.77%,
    #2f4353 50.51%,
    #263038 98.88%
  );
  background: linear-gradient(
    270deg,
    #374b5c -6.77%,
    #2f4353 50.51%,
    #263038 98.88%
  );
}

.case-studie .area-features {
  margin-top: 0 !important;
}

.case-studie p {
  margin-bottom: 0 !important;
}

.case-studie.bg-blue > *,
.case-studie.bg-blue .s-title {
  color: #fff;
}

.case-studie.bg-blue .area-paragraph,
.case-studie.bg-blue .area-paragraph-sm {
  color: #c8c8c8;
}

.case-studie.bg-blue .project-summary-item span,
.case-studie.bg-blue .area-content-list li {
  color: #c8c8c8;
}

.project-summary-item-v-divider {
  display: none;
}

@media only screen and (max-width: 740px) {
  .project-summary-item-divider {
    display: none;
  }
  .project-summary {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .project-summary-item {
    width: 50%;
  }

  .project-summary-item-v-divider {
    background-color: #dcdcdc;
    height: 1px;
    width: 100%;
    display: block;
    margin: 2rem 0;
  }
  .bg-blue .project-summary-item-v-divider {
    background-color: #435a6d;
  }
}
.carousel.case-studies .slider-item-img {
  background-color: #000;
  position: relative;
}

.carousel.case-studies .slider-item-img img {
  opacity: 0.6;
}
.carousel.case-studies .slider-item-img .industry-tag {
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 15px;
  bottom: 5px;
  font-size: 14px;
}
.carousel.case-studies .slider-item-img .industry-tag.bg-blue {
  background-color: #2e4150;
  border: 1px solid #50626f;
  color: #fff;
}

.area-nav-item.active {
  border-bottom: 3px solid #ff6024;
  background-color: #e9e9e9;
}

@media only screen and (max-width: 1445px) {
  .area-nav-item {
    width: 20rem !important;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
  }
}

@media only screen and (max-width: 1250px) {
  .area-nav {
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
}
@media only screen and (max-width: 1110px) {
  .area-filter.area-nav #wrapper .area-nav-item {
    width: 18.5vw !important;
    min-width: fit-content !important;
  }
}
@media only screen and (max-width: 860px) {
  .area-filter.area-nav #wrapper .area-nav-item,
  .area-nav #wrapper .area-nav-item {
    width: 22.5vw !important;
    min-width: fit-content !important;
  }
}

@media only screen and (max-width: 650px) {
  .area-filter.area-nav #wrapper .area-nav-item,
  .area-nav #wrapper .area-nav-item {
    width: 29.5vw !important;
    min-width: fit-content !important;
  }
}

@media only screen and (max-width: 500px) {
  .area-filter.area-nav #wrapper .area-nav-item,
  .area-nav #wrapper .area-nav-item {
    width: 42.5vw !important;
    min-width: fit-content !important;
  }
}

@media only screen and (max-width: 400px) {
  .area-filter.area-nav #wrapper .area-nav-item,
  .area-nav #wrapper .area-nav-item {
    width: 70vw !important;
    min-width: fit-content !important;
  }
  .area-nav #content {
    width: 1550px;
  }
}

@media only screen and (max-width: 520px) {
  .contact-page .header-intro-map {
    right: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  .contact-page .header-intro-map img {
    width: 100%;
  }
}

.notification {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: fixed;
  top: 50px;
  right: 50px;
  border-radius: 5px;
  box-shadow: 0 0 8px 1px #00000040;
  padding: 20px 15px;
  width: 350px;
  z-index: 1001;
}
.notification .message {
  display: flex;
}
.notification .message p {
  margin-bottom: 0;
  margin-left: 10px;
  font-weight: 500;
}
.notification-success {
  border-bottom: 5px solid #2dcd6f;
}
.notification-failed {
  border-bottom: 5px solid #e64d3c;
  width: 423px;
  align-items: flex-start;
}
.notification-failed p {
  margin-bottom: 5px !important;
}
.notification-failed p a {
  margin-bottom: 5px !important;
}
.notification.notification-failed .p-small {
  font-size: 14px;
  color: #898989;
  font-weight: 400;
  margin-bottom: -4px !important;
}
.notification .close-popup {
  display: block;
  cursor: pointer;
}
.notification .close-popup svg {
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
  transition: 0.15s all ease-in;
}
.notification .close-popup:hover svg {
  opacity: 1;
  transform: scale(1.2);
}

@media only screen and (max-width: 520px) {
  .notification {
    right: 10px;
    left: 10px;
    width: auto;
  }
}

.career {
  background-image: url(../../Images/V4/images/banner/career-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 35rem;
  padding: 10rem 20rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.logo-career {
  margin-bottom: 2rem;
}
.logo-career img {
  width: 5.2rem;
  height: 5rem;
}

.career-body {
  gap: 2rem;
}
.career-content > h3 {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.6px;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.career-btn {
  align-self: end;
}

.career-content > h6 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: #ffffff;
  max-width: 73rem;
}

.page-career-img-holder {
  display: none;
}

@media only screen and (max-width: 1550px) {
  .career {
    padding: 10rem 10rem 4rem;
  }
}

@media only screen and (max-width: 1250px) {
  .career {
    padding: 10rem 5rem 4rem;
  }
}

@media only screen and (max-width: 740px) {
  .logo-career {
    display: none;
  }
  .career {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background-image: none;
    background-color: #000;
    max-height: 100%;
    min-height: 100%;
    position: relative;
  }

  .page-career-img-holder {
    display: block;
  }

  .page-career-img-holder img {
    width: 100%;
  }

  .career-text {
    padding: 4rem 2rem 5rem 2rem;
  }

  .career-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .career-btn a {
    width: 100%;
  }
  .career-content {
    margin-bottom: 5rem;
  }
}

.content-career {
  justify-content: unset !important;
  -webkit-justify-content: unset !important;
}

header.careers {
  padding-bottom: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(30.69%, #e4e4e4),
    color-stop(45.93%, #ffffff),
    color-stop(57.24%, #e4e4e4),
    to(#e4e4e4)
  );
  background: -o-linear-gradient(
    right,
    #e4e4e4 30.69%,
    #ffffff 45.93%,
    #ffffff 57.24%,
    #e4e4e4 100%
  );
  background: linear-gradient(
    270deg,
    #e4e4e4 30.69%,
    #ffffff 45.93%,
    #ffffff 57.24%,
    #e4e4e4 100%
  );
}

.header.careers .header-intro-text {
  max-width: 52rem !important;
  margin-bottom: 10rem;
  margin-right: 5rem;
}

@media only screen and (max-width: 780px) {
  header.careers {
    background: none;
    background-color: #f7f7f7;
  }

  .header.careers .header-intro-text {
    max-width: 32rem !important;
  }
}

.career-heading {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.6px;
  color: #262626;
  margin-bottom: 1.6rem;
}

.career-paragraph {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: #262626;
  margin-bottom: 1.6rem;
}

.career-hero {
  width: 100%;
  min-width: 37rem;
  max-width: 64rem;
}

@media only screen and (max-width: 780px) {
  .header.careers .header-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 5rem;
    padding-right: 0;
  }

  .header.careers .header-intro-text {
    margin-bottom: 3.5rem;
  }

  .header.careers .industries-hero-wrapper {
    margin-left: auto;
  }

  .header.careers .career-hero {
    width: 100%;
    margin-bottom: 0;
    max-width: 40rem;
    min-width: 37rem;
  }
}

@media only screen and (max-width: 650px) {
  .career-hero {
    max-width: 39rem !important;
    min-width: 30rem !important;
  }

  .header.careers .header-intro {
    padding-left: 0;
  }

  .header.careers .header-intro-text {
    padding: 7rem 2rem 2rem 1.5rem;
    margin-bottom: 0rem;
    margin-right: 0rem;
  }
}

@media only screen and (max-width: 470px) {
  header.careers {
    max-height: 87rem !important;
  }

  .career-intro {
    line-height: 36px;
  }
}
.area-nav-careers {
  min-height: 8rem;
  align-content: center;
  display: flex;
}

.area-nav-careers .area-nav-item {
  white-space: nowrap;
}

.mission-paragraph {
  font-family: "Inter";
  font-style: normal;
  line-height: 50px;
  font-weight: 300;
  font-size: 26px;
  color: #ffffff;
}

.career-mission-content {
  background-color: #ff6024;
  padding: 12rem 13rem 12rem 13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

section.nav-practices,
section.nav-scholarships {
  background: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 !important;
  flex-direction: row;
}

.practices-section-photo {
  min-height: 40rem;
  display: block;
  width: 50%;
  background-image: url(../../Images/V4/images/career/student-practices.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  background-position-y: center;
}

.scholarships-section-photo {
  min-height: 40rem;
  display: block;
  width: 50%;
  background-image: url(../../Images/V4/images/career/student-scholarships.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  background-position-y: top;
}

.practices-section-content,
.scholarships-section-content {
  padding: 0 9rem;
  width: 50%;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 991px) {
  .practices-section-content,
  .scholarships-section-content {
    padding: 0 5rem;
  }
}

@media only screen and (max-width: 740px) {
  section.nav-practices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  section.nav-scholarships {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  section.nav-practices .practices-section-photo,
  section.nav-scholarships .scholarships-section-photo {
    width: 100%;
    height: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 0 !important;
    height: 0 !important;
    padding-top: 40%;
    /*            background-image: url(../../Images/V4/images/banner/why-us-img-sm.jpg);
*/
    min-height: 20rem !important;
  }

  .practices-section-content,
  .scholarships-section-content {
    width: 100%;
    padding: 3rem 1.5rem 5rem 1.5rem;
  }

  .career-paragraph {
    margin-bottom: 0;
  }

  .mobile-details {
    display: block !important;
  }
  .desktop-details {
    display: none;
  }
}

section.nav-positions {
  padding: 12rem 20rem 12rem 20rem;
  display: flex;
  gap: 10rem;
}

.positions-text {
  max-width: 30rem;
}

.all-open-positions {
  width: 100%;
}

.single-position {
  background-color: #f7f7f7;
  width: 100%;
  margin-bottom: 1rem;
  padding: 3.5rem 2rem 3.5rem 3.5rem;
}

.tags {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.single-tag {
  padding: 1rem 1.5rem 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  width: max-content;
  align-items: center;
  display: flex;
}

.tag-content {
  padding-left: 1rem;
}

.single-position-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.positions-after {
  margin-top: 2rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: #262626;
}

.view-details {
  max-width: 18rem;
}

@media only screen and (max-width: 1400px) {
  section.nav-positions {
    padding: 12rem 15rem 12rem 15rem;
    display: flex;
    gap: 7rem;
  }
}

@media only screen and (max-width: 991px) {
  section.nav-positions {
    padding: 7rem 7rem 7rem 7rem;
    display: flex;
    gap: 3rem;
  }
}
@media only screen and (max-width: 740px) {
  section.nav-positions {
    padding: 5rem 2rem 7rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .single-position-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5rem;
  }

  .view-details {
    max-width: unset;
    width: 100%;
  }

  .single-position {
    padding: 3rem 2rem 2rem 2rem;
  }

  .view-details-wrapper {
    width: 100%;
  }
}

.our-mission-spacing {
  margin-top: 0rem;
  margin-bottom: 11rem;
}

.growth-wrapper {
  margin-top: 0;
}

.our-growth-img-holder {
  width: 50%;
  background: #f34d1e;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../Images/V4/images/career/our-growth.jpg);
}

@media only screen and (max-width: 1400px) {
  .career-mission-content {
    padding: 8rem 8rem 8rem 8rem;
  }
}

@media only screen and (max-width: 1050px) {
  .our-growth-img-holder {
    height: 37rem;
    background-position: center 35%;
    width: 100%;
  }

  .career-mission-content {
    width: 100%;
  }
}

@media only screen and (max-width: 740px) {
  .career-mission-content {
    padding: 4.5rem 3rem 4.5rem 3rem;
  }
  .mission-paragraph {
    line-height: 42px;
  }
}

.practices-header {
  max-height: 41rem;
  min-height: 40rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../Images/V4/images/student-practices/practices-header.jpg);
  padding-bottom: 0;
}

.practices-body {
  padding: 0 20rem 1.5rem 20rem;
}

.practices-content h3 {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 59px;
  color: #ffffff;
}

.practices-content h6 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: #ffffff;
  max-width: 72rem;
}

.practices-section {
  gap: 11rem;
  padding: 2rem 20rem 2rem 20rem;
  background: #ffffff;
}

.practices-details {
  max-width: 78rem;
}

.small-header {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.practices-title {
  margin-bottom: 1.5rem;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.6px;
  color: #262626;
}

.practices-paragraph {
  margin-bottom: 5rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #262626;
}

.practices-paragraph-wrapper {
  margin-bottom: 5rem;
}

.practices-paragraph-wrapper .practices-paragraph {
  margin-bottom: 0 !important;
}

.practices-paragraph-list {
  margin-top: 2rem;
  margin-left: 2rem;
  list-style-type: disc;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #262626;
}

.practices-paragraph-location {
  margin-top: 4rem;
}

.small-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.benefits-title,
.last-paragraph {
  margin-bottom: 3rem;
}
.form-wrapper {
  gap: 2rem;
  margin-bottom: 2rem;
}

.application-input {
  height: 5rem;
  border: 1px solid #bebebe;
  font-size: 1.6rem;
}

.application-label {
  font-family: "Inter";
  font-style: normal;
  letter-spacing: -0.32px;
  color: #262626;
  padding-left: 0.5rem;
}

.section-divider {
  border-bottom: 1px solid #dfdfdf;
  padding: 0;
  margin-left: 20rem;
  margin-right: 20rem;
}

.practices-section:first-of-type {
  padding-top: 6rem !important;
}
.practices-section:last-of-type {
  padding-top: 3rem;
  padding-bottom: 14rem;
}
.info-section,
.info-section > * {
  width: 31rem;
}

.mob-divider {
  display: none;
}
.application-header {
  margin-bottom: 0;
}
.application-paragraph {
  margin-top: 1.6rem;
  margin-bottom: 0;
}
.application-paragraph-sm {
  margin-top: 0.7rem;
  margin-bottom: 0;
}

.checkbox-label {
  font-size: 1.6rem;
}

@media only screen and (max-width: 1550px) {
  section.area-section.practices-section,
  .practices-body {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .section-divider {
    margin-left: 10rem;
    margin-right: 10rem;
  }
}

@media only screen and (max-width: 1350px) {
  section.area-section.practices-section,
  .practices-body {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .section-divider {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}

@media only screen and (max-width: 1220px) {
  section.area-section.practices-section {
    gap: 3rem;
  }
  .practices-details {
    max-width: unset;
  }
  .application-paragraph {
    margin-bottom: 0;
  }
  .application-paragraph,
  .application-paragraph-sm {
    margin-top: 0;
  }
  .help-section {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .practices-main {
    display: none;
  }
  .apply-btn {
    width: 100%;
  }
  .mob-divider {
    display: block;
  }
  #header-details {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .name-section {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .form-group:last-of-type {
    margin-bottom: 0;
  }
  .section-divider {
    display: none;
  }
  .application-section {
    background: #f7f7f7;
  }
  section.area-section.practices-section {
    padding: 3.5rem 1.5rem 5rem 1.5rem;
  }

  .practices-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .practices-content h3 {
    font-size: 40px;
    line-height: 47px;
  }

  .application-section {
    padding-bottom: 0 !important;
  }
  .application-section:not(:first-of-type) {
    padding-top: 3.5rem !important;
  }
  .input-section {
    gap: 5rem !important;
  }
  .btn-section {
    align-items: unset !important;
    flex-direction: column !important;
  }
  .btn-section .checkbox-wrapper {
    justify-content: left !important;
  }
  .btn-section button {
    width: 100%;
    margin-bottom: 10rem;
    margin-top: 3rem;
  }
  .info-section,
  .info-section > * {
    width: unset;
  }
}

.custom-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-input:focus-visible,
.custom-input::before:hover {
  border: none;
  outline: none;
}

.custom-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  display: none;
}

.custom-input-label {
  display: inline-block;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  border: 1px solid #bebebe;
  border-radius: 5px;
  font-family: "Inter";
  font-weight: 300;
  font-size: 16px;
  padding: 0.5rem 2rem 0.5rem 2rem;
  cursor: pointer;
  color: #262626;
  margin-right: 2rem;
}

/*.custom-input {
    color: transparent;
}*/
.custom-input:hover::before {
  border-color: black;
  border: 1px solid #bebebe;
  outline: none;
}

.custom-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.scholarship-header {
  background-image: url(../../Images/V4/images/student-scholarships/scholarships-header.jpg);
}

.job-header {
  background-image: url(../../Images/V4/images/banner/career-img.png);
}

@media screen and (max-width: 600px) {
  .no-overflow {
    overflow: hidden !important;
  }
}

.footer .footer-iso {
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.footer-details-mobile {
  display: none;
  margin-left: -0.5rem;
}

.footer-details-mobile .footer-iso {
  display: block;
}

/* Co-Innovation Page CSS */
.co-innovation-page .navbar .navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.co-innovation-logo {
  display: flex;
  align-items: center;
}

.co-innovation-logo .co-innovation-img {
  width: 138px !important;
  height: 43px !important;
  margin-left: 9px;
  border-left: 1px solid #000;
  padding-left: 9px;
}

.header.co-innovation {
  max-height: 640px;
  min-height: 640px;
  padding: 0;
}

.gray-gradient {
  background: rgb(244, 244, 244);
  background: -moz-linear-gradient(
    90deg,
    rgba(244, 244, 244, 1) 0%,
    rgba(252, 252, 252, 1) 54%,
    rgba(244, 244, 244, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(244, 244, 244, 1) 0%,
    rgba(252, 252, 252, 1) 54%,
    rgba(244, 244, 244, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(244, 244, 244, 1) 0%,
    rgba(252, 252, 252, 1) 54%,
    rgba(244, 244, 244, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#f4f4f4",GradientType=1);
}

.co-innovation .header-intro {
  align-items: center;
  padding: 0;
  width: 100%;
  gap: 3rem;
}

.co-innovation-hero-wrapper {
  width: 50%;
}

.co-innovation .header-intro-text {
  width: 50%;
  max-width: 75rem;
  padding-left: 20rem;
}

.co-innovation .header-intro-text .heading-lg {
  font-size: 4rem !important;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 2rem;
}

.co-innovation .header-intro-paragraph {
  font-size: 2rem;
  margin-bottom: 0;
}

.co-innovation .line {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  overflow: visible !important;
}

.co-innovation .line::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: -2px;
  right: 0;
  background-image: url("../../Images/V4/images/header-line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 8px;
}

@media only screen and (max-width: 1550px) {
  .co-innovation .header-intro-text {
    padding-left: 10rem;
  }
}

@media only screen and (max-width: 1350px) {
  .co-innovation .header-intro-text {
    padding-left: 5rem;
  }

  .co-innovation-page .section {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media only screen and (max-width: 650px) {
  .co-innovation .header-intro-text {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .co-innovation-page .section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .our-commitment .heading-md,
  .how-program-works .heading-md {
    margin-bottom: 8rem !important;
  }
}

.co-innovation-hero-wrapper img {
  object-fit: cover;
  object-position: 39%;
  width: 100%;
  height: 640px;
}

.area-nav-co-innovation {
  background-color: red;
}

.co-innovation-page .section {
  padding: 12rem 10rem;
}

.co-innovation-page .section-content {
  max-width: 160rem;
  margin: 0 auto;
}

.co-innovation-page .heading-md {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.how-program-works .heading-md {
  margin-bottom: 12rem;
}

.how-program-works {
  padding-bottom: 20rem !important;
}

.how-program-works-grid {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.how-program-works-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 25%;
}

.how-program-works-item .num {
  font-size: 5rem;
  font-weight: 200;
  line-height: 0.8;
  min-width: 5.5rem;
}

.how-program-works-item .content {
  padding-left: 2rem;
  border-left: 3px solid #ff6024;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.how-program-works-item .content h4 {
  font-weight: 600;
  font-size: 20px;
}

.how-program-works-item .content p {
  font-weight: 300;
  font-size: 16px;
}

.how-program-works-item .content p strong {
  font-weight: 500;
}

.co-innovation-page .our-mission {
  min-height: 64rem;
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}

.co-innovation-page .our-mission-img {
  width: 50%;
  min-height: 64rem;
  max-height: 64rem;
}

.co-innovation-page .our-mission-img img {
  width: 100%;
  height: 64rem;
  object-fit: cover;
  max-height: 64rem;
}

.co-innovation-page .our-mission-content {
  width: 50%;
  padding: 4rem 6rem;
  background-color: #ff6024;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-innovation-page .our-mission-content .content-wrapper {
  position: relative;
  max-width: 44rem;
}

.co-innovation-page .our-mission-content .content-wrapper p {
  max-width: 44rem;
  font-size: 4rem;
  line-height: 4.8rem;
  margin-bottom: 0;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  color: #fff;
}

.co-innovation-page .our-mission-content .content-wrapper img {
  position: absolute;
  bottom: -10rem;
  right: -4vw;
}

.co-innovation-page p {
  margin-bottom: 0;
}

.co-innovation-who-we-are {
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  align-items: center;
}

.co-innovation-who-we-are .video-wrapper {
  max-width: 88.5rem;
  margin: 0 auto;
}

.co-innovation-who-we-are video {
  max-width: 88.5rem;
  max-height: 50rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 2rem;
}

.co-innovation-page .subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
}

.co-innovation-page .subtitle a {
  color: #ff6024;
}

.co-innovation-page .subtitle a:hover {
  text-decoration: underline;
}

.co-innovation-who-we-are .subtitle {
  max-width: 86rem;
  margin: 0 auto;
}

.our-clients {
  background-color: #fafafa;
}

.what-we-offer .heading-md,
.co-innovation-page .contact .heading-md,
.our-clients .heading-md {
  display: block;
  text-align: center;
}

.our-clients .section-content {
  max-width: 96rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.our-clients .testimonials-wrapper {
  display: flex;
  gap: 4rem;
}

.our-clients .testimonials-wrapper .testimonial {
  width: 50%;
  background-color: #fff;
  border-radius: 4rem;
  border: 1px solid #808080;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.our-clients .testimonials-wrapper .testimonial .title {
  font-size: 2rem;
  font-weight: 500;
  color: #222;
  font-family: "Inter", sans-serif;
  margin-bottom: 2.4rem;
  line-height: 3.2rem;
}

.our-clients .testimonials-wrapper .testimonial p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #222;
  line-height: 2.8rem;
}

.our-clients .testimonials-wrapper .testimonial img {
  width: 2.5rem;
  min-width: 2.5rem;
  height: auto;
}

.our-clients .clutch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.our-clients .clutch img {
  min-width: 20rem;
}

.what-we-offer .line,
.co-innovation-page .contact .line,
.our-clients .line {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  overflow: visible !important;
}

.what-we-offer .line::before,
.co-innovation-page .contact .line::before,
.our-clients .line::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  background-image: url("../../Images/V4/images/line-sm.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 8px;
}
.our-commitment {
  padding-bottom: 15rem !important;
}
.our-commitment .how-program-works-grid {
  flex-wrap: wrap;
}

.our-commitment .how-program-works-item {
  width: calc(33.3333% - 2.8rem);
  margin-bottom: 2.4rem;
}

.co-innovation-page .contact {
  flex-direction: column;
}

.co-innovation-page .contact .contact-text {
  width: 100%;
  margin-top: 5.5rem;
  margin-bottom: 2rem;
}

.co-innovation-page .contact-wrapper {
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 8rem;
  position: relative;
}

.co-innovation-page .contact-wrapper .s-title {
  font-weight: 500;
  font-size: 2rem;
  color: #222;
  font-family: "Inter", sans-serif;
  margin-bottom: 1.6rem;
}

.co-innovation-page .contact-wrapper .paragraph {
  color: #222;
}

.co-innovation-page .contact-wrapper .arrow-img {
  position: absolute;
  bottom: 3rem;
  right: -6vw;
  z-index: 0;
}

.co-innovation-page .contact-wrapper .contact-form {
  position: relative;
  z-index: 1;
}

.co-innovation-page .footer {
  background: #fff !important;
}

.what-we-offer.section {
  padding-top: 8rem;
  padding-bottom: 20rem;
}

.what-we-offer .tabs-wrapper {
  max-width: 160rem;
  margin: 0 auto;
  margin-top: 5.5rem;
}

.what-we-offer .nav-tabs {
  border: none;
  flex-wrap: nowrap;
  border-bottom: 1px solid #f2f2f2;
}

.what-we-offer .nav-tabs .nav-item,
.what-we-offer .nav-tabs .nav-item a {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-align: center;
}

.what-we-offer .nav-tabs .nav-item .nav-link {
  border-bottom: 4px solid transparent;
  color: #262626;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.2s;
}

.what-we-offer .nav-tabs .nav-item .nav-link:hover {
  background-color: #fbfbfb;
}

.what-we-offer .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 4px solid #ff6024;
  background-color: #fbfbfb;
}

.what-we-offer .content-wrapper {
  padding-top: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 96rem;
  margin: 0 auto;
  gap: 5.5rem;
}

.what-we-offer .tab-text-content {
  width: 50%;
  max-width: 44rem;
}

.what-we-offer .tab-text-content ul {
  margin-top: 1rem;
  padding-left: 2rem;
}

.what-we-offer .tab-text-content li {
  list-style: disc;
  font-size: 1.8rem;
  font-weight: 300;
}

.what-we-offer .tab-img {
  width: 50%;
  max-width: 44rem;
}

.what-we-offer .tab-img img {
  width: 100%;
  max-width: 44rem;
  height: auto;
}

.what-we-offer .tab-text-content h4 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.what-we-offer .tab-text-content p {
  font-size: 1.8rem;
  font-weight: 300;
}

.what-we-offer .accordion-wrapper {
  display: none;
  margin-top: 5rem;
}

.what-we-offer .accordion-wrapper .card {
  padding: 0;
  border: none;
  outline: none !important;
}

.what-we-offer .accordion-wrapper .card .btn-link {
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #262626;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #f2f2f2;
  height: 8rem;
  text-decoration: none !important;
  transition: 0.2s;
}

.what-we-offer .accordion-wrapper .card .btn-link[aria-expanded="true"] {
  background-color: #fbfbfb;
  border-color: transparent !important;
}

.what-we-offer .accordion-wrapper .card .btn-link:hover {
  background-color: #fbfbfb;
}

.what-we-offer .accordion-wrapper .card .btn-link:first-child {
  border-top: 1px solid #f2f2f2;
}

.what-we-offer .accordion-wrapper .card .btn-link img {
  transition: 0.2s;
}

.what-we-offer .accordion-wrapper .card .btn-link.collapsed img {
  transform: rotate(180deg);
}

.what-we-offer .accordion-wrapper .card-body {
  border-top: 3px solid #ff6024;
}

.what-we-offer .accordion-wrapper .card-body .tab-img {
  max-width: 34rem;
  display: flex;
  justify-content: center;
}

.what-we-offer .accordion-wrapper .card-body h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 40px 0 32px;
}
.what-we-offer .accordion-wrapper .card-body .content-wrapper {
  padding-top: 0 !important;
}

@media screen and (max-width: 800px) {
  .header.co-innovation {
    max-height: 100% !important;
    padding-top: 8rem;
  }
  .co-innovation .header-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .co-innovation .header-intro .header-intro-text,
  .co-innovation-hero-wrapper {
    width: 100%;
  }

  .co-innovation .header-intro .header-intro-text {
    max-width: 55rem;
  }

  .co-innovation .header-intro .header-intro-text .heading,
  .co-innovation .line {
    font-size: 30px !important;
  }

  .co-innovation-hero-wrapper img {
    height: auto;
    min-height: 39rem;
  }
}

@media screen and (max-width: 1250px) {
  .how-program-works-grid {
    flex-wrap: wrap;
  }

  .how-program-works-item {
    width: calc(50% - 2rem);
  }

  .co-innovation-page .contact-wrapper .arrow-img {
    bottom: -2rem;
    right: 2vw;
  }
}

@media screen and (max-width: 900px) {
  .our-clients .section-content .testimonials-wrapper {
    flex-direction: column;
  }
  .our-clients .section-content .testimonials-wrapper .testimonial {
    width: 100% !important;
  }

  .our-commitment .how-program-works-item {
    width: calc(50% - 2rem);
  }

  .what-we-offer .nav-tabs .nav-item .nav-link {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 800px) {
  .header.co-innovation {
    max-height: 100% !important;
    padding-top: 8rem;
  }
  .co-innovation .header-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .co-innovation .header-intro .header-intro-text,
  .co-innovation-hero-wrapper {
    width: 100%;
  }

  .co-innovation .header-intro .header-intro-text {
    max-width: 55rem;
  }

  .co-innovation-hero-wrapper img {
    height: auto;
    min-height: 39rem;
  }

  .our-mission {
    flex-direction: column;
  }
  .our-mission .our-mission-img {
    width: 100%;
    max-height: 39rem;
    min-height: 39rem;
  }

  .our-mission .our-mission-img img {
    height: 39rem;
  }

  .our-mission .our-mission-content {
    width: 100%;
    min-height: 52rem;
  }

  .co-innovation-page .our-mission-content .content-wrapper img {
    bottom: -13vw;
    right: -7vw;
  }

  .co-innovation-page .our-mission-content {
    padding: 4rem 5rem 4rem 3rem;
  }
}

@media screen and (max-width: 767px) {
  .co-innovation-page .contact-form .row .col-12.col-md-6 {
    margin-bottom: 2rem;
  }
  .co-innovation-page .contact-form .row {
    margin-bottom: 0 !important;
  }

  .what-we-offer .content-wrapper {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .what-we-offer .tab-img {
    width: 100%;
    max-width: 44rem;
  }
  .what-we-offer .tab-text-content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .what-we-offer.section {
    padding-bottom: 8rem;
  }

  .what-we-offer .tabs-wrapper {
    display: none;
  }
  .what-we-offer .accordion-wrapper {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .how-program-works-item {
    width: 100%;
  }

  .our-commitment .how-program-works-item {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .co-innovation-page .our-clients .heading-md .line::before {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .co-innovation-page .contact-wrapper .arrow-img {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .co-innovation-page .co-innovation-logo img {
    width: 12rem !important;
  }
  .co-innovation-logo .co-innovation-logo-img {
    width: 12.6rem !important;
  }
  .how-program-works-item .num {
    font-size: 4rem;
    min-width: 4rem;
  }
}

.p-20 {
  padding: 20px;
}
