@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Open+Sans:wght@300;400;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap");

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html.full-height {
  height: 100%;
}

body,
html {
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}

body {
  height: 100%;
}

:root {
  --font-family-secondary: "Rajdhani", sans-serif;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
}

h1,
h2 {
  font-size: 4.8rem;
  line-height: 1.2;
  margin: 0 0 1.4rem;
}

h3 {
  font-size: 3.6rem;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
}

p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 1.4rem;
}

p.small {
  font-size: 1.6rem;
  line-height: 1.8;
}

.overflow {
  overflow-x: hidden;
  overflow-y: hidden;
}

strong {
  font-weight: 600;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.h-100 {
  height: 100%;
}

.btn {
  color: var(--white);
  background: var(--light-gray);
  border-radius: 4rem;
  padding: 1.1rem 2.75rem;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 400;
  border: none;
  outline: 0;
  display: inline-block;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
}

.btn-primary:hover {
  color: var(--white);
  background: #F24E4E;
}

.btn-green {
  color: var(--white);
  background: #4aca70;
  -webkit-box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.16);
  -webkit-mask-image: none;
  font-weight: 600;
}

.btn-green:hover {
  color: var(--white);
  background: #0ECA70;
}

.btn-dark {
  background-color: var(--dark-gray);
  color: var(--white);
}

.btn-dark:hover {
  color: var(--white);
  background: var(--dark-gray);
}

.btn-portfolio {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-portfolio:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  font-size: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
}

.btn-outline {
  border: 2px solid;
  background-color: transparent;
  padding: 0.9rem 2.75rem;
}

.btn-outline.btn-primary {
  border-color: var(--primary);
}

.btn-outline.btn-primary.btn-animate>span {
  color: var(--primary);
  transition: color 0.5s;
}

.btn-outline.btn-primary:hover>span {
  color: var(--white);
}

.btn-animate {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  z-index: 2;
}

.btn-animate>span {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.btn-animate::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 100%;
  margin: -15px 0 0 1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F24E4E;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(1, 2, 1);
  transform: scale3d(1, 2, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}

.btn-animate:hover::before {
  -webkit-transform: scale3d(9, 9, 1);
  transform: scale3d(9, 9, 1);
}

.btn-animate.btn-dark::before {
  background: var(--black);
}

.btn-animate.btn-portfolio::before {
  background: rgba(255, 255, 255, 0.2);
}

.btn-animate.btn-green::before {
  background: #08b964;
}

.btn-animate-1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.4rem;
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  display: inline-block;
  transition: all 0.3s ease-out;
  font-weight: 600;
  margin-top: 1rem;
}

.btn-animate-1::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: #fff;
  display: block;
  position: absolute;
  opacity: 0.3;
  border-radius: 50%;
  top: -44%;
  transition: all 0.3s ease-out;
  transform: translateY(44%);
  left: 0;
}

.btn-animate-1::after {
  content: "";
  background: url(assets/images/plus.svg) no-repeat;
  background-size: contain;
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  margin-left: 0.8rem;
}

.btn-animate-1:hover {
  color: var(--white);
  padding-left: 3rem;
  letter-spacing: 0.6px;
}

.btn-animate-1:hover::before {
  opacity: 0.4;
}

.btn-animate-1.btn-gray {
  color: var(--gray) !important;
}

.btn-animate-1.btn-gray::before {
  background: #ebebeb;
  z-index: -1;
  opacity: 1;
}

.btn-animate-1.btn-gray::after {
  background: url(assets/images/plus-gray.svg) no-repeat;
  background-size: contain;
}

.btn-animate-1.btn-gray:hover::before {
  background: #dedede;
  opacity: 1;
}

.btn-large {
  padding: 1.5rem 4.5rem;
  font-size: 2rem;
}

.text-red {
  color: var(--primary) !important;
}

.bg-dark-red {
  background-color: #e12d53 !important;
}

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

.mb-16 {
  margin-bottom: 16rem !important;
}

.mt-16 {
  margin-top: 16rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.ml-2 {
  margin-left: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.link {
  color: var(--light-gray);
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  overflow: hidden;
}

.link::after {
  content: ">";
  font-family: "Marck Script", cursive;
  font-size: 2.8rem;
  line-height: 1;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.link:hover {
  color: var(--primary);
}

.relative {
  position: relative;
}

.container-max {
  max-width: 144rem;
}

.wrapper {
  width: 100%;
  background-color: #fff;
}

.section-head {
  margin: 0 0 8rem;
}

.top-page-banner {
  padding: 12rem 0 6rem;
}

.top-page-banner .title-section {
  padding: 6rem 0;
}

.top-page-banner .page-title-wrap {
  padding: 0;
  position: relative;
  text-align: center;
}

.top-page-banner .page-title-wrap h1 {
  font-size: 5.4rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.top-page-banner .page-title-wrap p {
  color: var(--gray);
  margin: 0 auto 3rem;
  max-width: 72rem;
  font-weight: 400;
}

.top-page-banner .page-title-wrap::after {
  content: "";
  width: 9.5rem;
  height: 0.45rem;
  display: block;
  margin: 1rem auto;
  background-color: var(--primary);
  border-radius: 0.45rem;
}

.video-wrap {
  margin: 0 0 16rem;
}

.video-wrap .video {
  margin: 0 auto;
  max-width: 96rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-wrap .video video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-wrap .video:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.table {
  width: 100%;
  color: #212529;
}

.table th,
.table td {
  padding: 0.95rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody td {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 24px;
  letter-spacing: -0.004em;
  color: rgba(0, 0, 0, 0.84);
}

.table tbody td p {
  font-size: 1.4rem !important;
  line-height: 24px !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border-bottom-width: 2px;
  border: 1px solid #dee2e6;
}

.table-responsive {
  margin: 0 0 4rem;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive .table-bordered {
  border: 0;
}

.faq-title-content h2 {
  font-family: var(--font-family-primary);
  font-size: 2.5rem;
  margin-top: 6.5rem;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: rgba(0, 0, 0, 0.84);
}

.faq h2 {
  font-family: var(--font-family-primary);
  font-size: 2.5rem;
  margin-top: 6rem;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  color: rgba(0, 0, 0, 0.84);
}

.faq .accordion {
  width: 100%;
  height: auto;
  padding-bottom: 2rem;
}

.faq .accordion .accordion-item {
  width: 100%;
  -webkit-border-bottom: 1px solid #e9e9e9;
  -moz-border-bottom: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.faq .accordion .accordion-item:last-child {
  -webkit-border-bottom: 0;
  -moz-border-bottom: 0;
  border-bottom: 0;
}

.faq .accordion .accordion-item .accordion-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 6.5rem;
  padding: 1.5rem 6rem 1.5rem 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.faq .accordion .accordion-item .accordion-button .accordion-heading {
  flex: 1;
}

.faq .accordion .accordion-item .accordion-button .accordion-heading h3 {
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0;
  letter-spacing: -0.1px;
  color: #222222;
}

.faq .accordion .accordion-item .accordion-button .accordion-marker {
  width: 6rem;
  height: 100%;
  float: left;
  font-size: 2rem;
  position: absolute;
  right: 0;
}

.faq .accordion .accordion-item .accordion-button .accordion-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  background-color: var(--gray);
  height: 0.2rem;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}

.faq .accordion .accordion-item .accordion-button .accordion-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.2rem;
  background-color: var(--gray);
  width: 0.2rem;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}

.faq .accordion .accordion-item .accordion-inner {
  display: none;
  padding: 0 0 1rem;
}

.faq .accordion .accordion-item .accordion-inner p {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 29px;
  margin: 0 6rem 1rem 0 !important;
  letter-spacing: -0.1px;
  color: #222222;
  text-align: left !important;
}

.faq .accordion .accordion-item .accordion-inner p a {
  text-decoration: underline;
  color: var(--light-gray);
}

.faq .accordion .accordion-item .accordion-inner p a:hover {
  color: var(--primary);
}

.faq .accordion .accordion-item .accordion-inner p span {
  font-family: var(--font-family-primary) !important;
  font-weight: 300;
  font-size: 1.8rem !important;
  line-height: 29px;
  letter-spacing: -0.1px;
  color: var(--gray) !important;
}

.faq .accordion .accordion-item .accordion-inner ul li,
.faq .accordion .accordion-item .accordion-inner ol li {
  color: var(--gray);
  font-size: 1.6rem;
  line-height: 29px;
  font-weight: 400;
  color: #222222;
}

.faq .accordion .accordion-item.active .accordion-marker::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq .accordion .accordion-item.active .accordion-marker::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.no-scroll {
  overflow: hidden;
}

.border-0 {
  border: 0 !important;
}

.tag-btn {
  font-family: "Open Sans", sans-serif;
  color: #717171 !important;
  font-size: 1.5rem;
  background-color: #f1f1f1 !important;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  margin-right: 0.5rem;
  text-decoration: none !important;
  line-height: 1.6;
  font-weight: 400;
}

.tag-btn:hover {
  background-color: #f1f1f1 !important;
  color: #717171 !important;
}

.menu-item-hide-f {
  display: none !important;
}

.project-in-mind a {
  color: #FFFFFF;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.24rem;
  line-height: 2.4rem;
  letter-spacing: 0.01rem;
  display: inline-block;
  padding: 1.44rem 1.92rem 0.96rem 2.4rem;
  border: 0;
  border-radius: 5.12rem;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #ff1816;
  font-weight: 600;
}

.project-in-mind a.hover-flip,
.project-in-mind a.btn-flip {
  overflow: hidden;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.project-in-mind a.hover-flip span,
.project-in-mind a.btn-flip span {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.project-in-mind a.hover-flip::before,
.project-in-mind a.btn-flip::before {
  content: attr(data-hover);
  position: absolute;
  transform: translate3d(0, 1.4rem, 0);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.project-in-mind a.hover-flip:hover,
.project-in-mind a.btn-flip:hover {
  color: #fff;
}

.project-in-mind a.hover-flip:hover::before,
.project-in-mind a.btn-flip:hover::before {
  transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  opacity: 1;
}

.project-in-mind a.hover-flip:hover span,
.project-in-mind a.btn-flip:hover span {
  opacity: 0;
  transform: translate3d(0, -1.4rem, 0);
  -moz-transform: translate3d(0, -1.4rem, 0);
  -webkit-transform: translate3d(0, -1.4rem, 0);
}

.hover-flip {
  position: relative;
}

.hover-flip::before {
  content: attr(data-hover);
  position: absolute;
  transform: translate3d(0, 2.8rem, 0);
  color: #222222;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.hover-flip span {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.hover-flip:hover::before {
  transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  opacity: 1;
}

.hover-flip:hover span {
  opacity: 0;
  transform: translate3d(0, -2.8rem, 0);
  -moz-transform: translate3d(0, -2.8rem, 0);
  -webkit-transform: translate3d(0, -2.8rem, 0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #c7c7c7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top img {
  max-width: 18px;
  width: 100%;
}

#cookie-law-info-bar {
  max-width: calc(100% - 300px);
  width: 100%;
  left: 150px;
  border-radius: 0.5rem;
}

#cookie_action_close_header {
  border-radius: 3rem;
  padding: 0.8rem 1.6rem;
  background: #ff1816 !important;
}

#cookie_action_close_header_reject {
  border-radius: 3rem;
  padding: 0.8rem 1.6rem;
  background: #222222 !important;
}

.form-popup {
  position: fixed;
  width: 6rem;
  height: 6rem;
  bottom: 2.4rem;
  right: 2.4rem;
  border-radius: 50%;
  background-color: #ec1313;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-popup:hover {
  background-color: #d80a0a;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
}

.form-popup img {
  max-width: 3.52rem;
  width: 100%;
  opacity: 0.8;
}

.form-popup .title {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 200px;
  background: #fff;
  padding: 12px;
  border-radius: 0.3rem;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  line-height: 1;
}

.form-popup .title::before {
  content: "";
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.form-popup .title::after {
  content: "";
  border: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.15);
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(2px);
}

.form-popup .title .small {
  font-size: 14px;
  margin-top: 7px;
  display: block;
  font-weight: 100;
}

.form-popup .title:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.form-popup .title::after {
  border-left: 8px solid rgba(0, 0, 0, 0.17);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  display: none;
}

.mouse-cursor.cursor-inner {
  margin-left: -8px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  z-index: 10000001;
  background-color: #fff;
  mix-blend-mode: difference;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mouse-cursor.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
}

.mouse-cursor.cursor-inner.view {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
}

.chat-popup {
  position: fixed;
  width: 3.75rem;
  height: 3.75rem;
  bottom: 1.875rem;
  right: 1.875rem;
  border-radius: 50%;
  display: flex;
  z-index: 100;
  background-color: #222;
  overflow: hidden;
  cursor: auto !important;
}

.chat-popup .chat-toggle {
  display: block;
  flex-grow: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-popup .chat-toggle img {
  max-width: 2.2rem;
}

.chat-popup .chat-screen {
  width: 36.496rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  transform: translate(50%, 100%) scale(0);
  opacity: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  z-index: -2;
}

.chat-popup .chat-screen .chat-header {
  background-color: #002eff;
  background-image: -o-linear-gradient(45deg, #0061ff, #002eff);
  background-image: linear-gradient(45deg, #0061ff, #002eff);
  padding: 2.4rem 2.4rem 6.4rem;
}

.chat-popup .chat-screen .chat-header img {
  max-width: 4.8rem;
}

.chat-popup .chat-screen .chat-header .title {
  margin-top: 1.6rem;
  color: #fff;
  font-weight: 500;
  font-size: 2.24rem;
  letter-spacing: -0.07rem;
}

.chat-popup .chat-screen .chat-header .subtitle {
  color: #fff;
  font-weight: 100;
  font-size: 1.28rem;
  margin-top: 0.8rem;
}

.chat-popup .chat-screen .chat-content {
  padding: 2.4rem 1.6rem 3.2rem;
}

.chat-popup .chat-screen .chat-content .contact-form {
  margin-top: -4.8rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group {
  margin: 0 0 3.2rem;
  background: #fff;
  border-radius: 1.28rem;
  padding: 0 1.6rem;
  box-shadow: 0 0 1.8rem 0 rgba(0, 0, 0, 0.08);
  margin: 0 0 1.6rem;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .form-control {
  padding: 0 1.6rem;
  font-size: 14px;
  border-bottom: 0;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .form-control:focus~.label-wrap::after {
  content: none;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .form-control:focus~.label-wrap .label {
  opacity: 0;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .label-wrap {
  padding: 0 1.6rem;
  font-size: 14px;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .label-wrap.up .label {
  opacity: 0 !important;
}

.chat-popup .chat-screen .chat-content .contact-form .form-group .label-wrap .label {
  left: 1.6rem;
  font-size: 14px;
}

.chat-popup .chat-screen .chat-content .contact-form .form-btn {
  position: static;
  transform: none;
  text-align: right;
}

.chat-popup .chat-screen .chat-content .contact-form .form-btn .btn {
  padding: 0.8rem 1.92rem 0.64rem 2.4rem;
  font-size: 1.76rem;
}

.chat-popup .chat-screen .close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(0, 0, 0, 0.26) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.48rem;
}

.chat-popup .chat-screen .close a {
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
}

.chat-popup.open {
  overflow: visible;
}

.chat-popup.open .chat-toggle {
  background-color: transparent;
}

.chat-popup.open .chat-screen {
  transform: translate(0, 0) scale(1);
  opacity: 1;
  z-index: 1000;
}

/* common responsive */
.header {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding: 3.2rem 5.52rem;
  z-index: 2;
  background: #fff;
}

.header.header-fixed {
  background: transparent;
}

.header.header-fixed .logo .light {
  display: block;
}

.header.header-fixed .logo .dark {
  display: none;
}

.header.header-fixed .nav .menu a {
  color: #fff;
}

.header.header-fixed.scrolled .logo .light {
  display: none;
}

.header.header-fixed.scrolled .logo .dark {
  display: block;
}

.header.header-fixed.scrolled .nav .menu a {
  color: #222;
}

.header.hovered .logo .light {
  display: none;
}

.header.hovered .logo .dark {
  display: block;
}

.header.hovered .nav .menu a {
  color: #222;
}

.header.menu-open {
  position: fixed;
  z-index: 9999;
}

.header.menu-open .logo {
  display: none;
}

.header.menu-open .logo-menu {
  opacity: 1;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;
  max-width: 19.2rem;
}

.header .logo {
  display: flex;
  align-items: center;
  max-width: 27.2rem;
}

.header .logo .light {
  display: none;
}

.header .logo-menu {
  display: none;
}

.header #menu-toggle {
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  z-index: 9999;
  display: none;
}

.header #menu-toggle * {
  transition: 0.25s ease-in;
}

.header #menu-toggle span {
  display: block;
  background: #000000;
  border-radius: 2px;
}

.header #menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}

.header #menu-toggle #hamburger span {
  width: 36px;
  height: 4px;
  position: relative;
  margin: 6px 0;
}

.header #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.25s;
}

.header #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.375s;
}

.header #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}

.header #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}

.header #menu-toggle #cross span {
  background-color: #222;
}

.header #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 4px;
  position: absolute;
  top: 0%;
  left: 16px;
  transition-delay: 0s;
}

.header #menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 4px;
  position: absolute;
  left: 0%;
  top: 16px;
  transition-delay: 0.25s;
}

.header #menu-toggle.open #hamburger span {
  width: 0%;
}

.header #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}

.header #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}

.header #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}

.header #menu-toggle.open #cross span:nth-child(1) {
  height: 100%;
  transition-delay: 0.5s;
}

.header #menu-toggle.open #cross span:nth-child(2) {
  width: 100%;
  transition-delay: 0.25s;
}

.header .nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  margin-left: 2.16rem;
}

.header .nav .menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-grow: 1;
}

.header .nav .menu>li {
  font-size: 1.8rem;
  line-height: 7rem;
  display: inline-block;
}

.header .nav .menu>li.right-menu {
  margin-left: auto;
}

.header .nav .menu>li a {
  padding: 0 1.6rem;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-family: "Open Sans";
  font-stretch: normal;
  font-style: normal;
  line-height: 2.78;
  letter-spacing: normal;
  text-align: center;
}

.header .nav .menu>li a.hover-flip::before {
  transform: translate3d(0, 2.08rem, 0);
}

.header .nav .menu>li a.hover-flip:hover span {
  transform: translate3d(0, -2.08rem, 0);
}

.header .nav .menu>li a.hover-flip:hover::before {
  transform: translateZ(0);
}

.header .nav .menu>li.menu-btn a {
  color: #fff;
  line-height: 1.75;
  border-radius: 4rem;
  padding: 0.16rem 1.88rem 0;
}

.header .nav .menu>li:last-child a {
  padding-right: 0;
}

.header .nav .menu>li .sub-menu-wrap {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 4.8rem 5.52rem 3.2rem;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu {
  max-width: 1520px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.header .nav .menu>li .sub-menu-wrap .menu-title {
  flex: 0 0 260px;
  margin-left: 6.4rem;
  margin-right: 5.6rem;
}

.header .nav .menu>li .sub-menu-wrap .menu-title p {
  font-size: 3.22rem;
  line-height: 1.36;
  letter-spacing: -0.144rem;
  font-weight: 300;
  margin-top: 3.22rem;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown {
  display: flex;
  width: calc(100% - 280px);
  margin-left: auto;
  justify-content: space-around;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li {
  flex: 0 0 auto;
  padding: 3.2rem 1.92rem;
  display: flex;
  flex-direction: column;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:first-child {
  margin-left: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:first-child::before {
  content: none;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:last-child {
  margin-left: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:last-child::before {
  content: none;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li .heading {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  position: relative;
  line-height: 1.95;
  margin: 0 0 1.76rem;
  letter-spacing: 0.032rem;
  text-transform: uppercase;
  padding-left: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #ebebeb;
  padding-left: 1.6rem;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li {
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:first-child {
  margin-left: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:first-child::before {
  content: none;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:last-child {
  margin-left: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:last-child::before {
  content: none;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li a {
  font-weight: normal;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  line-height: 1.89;
  color: #666;
  transition: all 0s linear;
  text-transform: none;
  letter-spacing: 0;
}

.header .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li a:hover {
  color: #000;
}

.header .nav .menu>li:hover .sub-menu-wrap {
  opacity: 1;
  visibility: visible;
  top: 0;
  padding-top: 11.2rem;
  padding-bottom: 1.6rem;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.header .nav .menu:first-child li:first-child {
  margin-left: 11.2rem;
  position: relative;
  padding-left: 0.56rem;
}

.header .nav .menu:first-child li:first-child::before {
  content: "";
  width: 11.2rem;
  display: block;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 100%;
  border-radius: 2px;
}

.header .nav .menu:last-child li:last-child {
  margin-left: 4rem;
  position: relative;
}

.header .nav .menu:last-child li:last-child::before {
  content: "";
  width: 4rem;
  display: block;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 100%;
  border-radius: 2px;
}

.header .nav .menu.new {
  justify-content: end;
}

.header .nav .menu.new>li.menu-contact .hover-flip {
  color: #fff;
  background: #222222;
  padding: 0.6rem 4rem 0.6rem 2rem;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.32px;
  line-height: 28px;
  text-align: left;
  position: relative;
  border-radius: 0;
}

.header .nav .menu.new>li.menu-contact .hover-flip::before {
  color: #fff;
}

.header .nav .menu.new>li.menu-contact .hover-flip::after {
  content: "";
  background-image: url(https://tamediacdn.techaheadcorp.com/wp-content/uploads/2023/10/17054621/Layer.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 14px;
  position: absolute;
  height: 14px;
  right: 13px;
  top: 13px;
}

.header .nav .menu.new:first-child li:first-child {
  margin-left: auto;
  padding-left: 0rem;
}

.header .nav .menu.new:first-child li:first-child::before {
  content: none;
}

.header .nav .menu.new:last-child li:last-child {
  margin-left: auto;
}

.header .nav .menu.new:last-child li:last-child::before {
  content: none;
}

.header.scrolled {
  position: fixed;
  z-index: 100;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: header 0.5s ease;
  padding: 0rem 5.52rem;
}

.header.scrolled .logo {
  max-width: 18rem;
}

.header.scrolled .logo-menu {
  display: none;
}

.header.scrolled.menu-open {
  z-index: 9999;
  background: transparent;
  box-shadow: none;
  padding: 4.8rem 5.52rem;
}

.header.scrolled.menu-open .logo-menu img {
  width: 100%;
  margin: 0 auto;
}

.header.scrolled #menu-toggle {
  display: none;
}

.header.scrolled .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:first-child::before {
  content: none;
}

.header.scrolled .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:first-child::before {
  content: none;
}

.header.scrolled .nav .menu.new>li.menu-contact .hover-flip {
  color: #fff;
  background-color: #222;
}

.header.scrolled .nav .menu.new>li.menu-contact .hover-flip::before {
  color: #fff;
}

.header.logo-toggle .logo .logo-dark {
  display: none;
}

.header.logo-toggle .logo .logo-light {
  display: block;
}

.header.logo-toggle #menu-toggle span {
  background: #fff;
}

.header.logo-toggle .nav .menu>li a {
  color: #fff;
}

.header.logo-toggle .nav .menu:first-child li:first-child::before {
  background: #fff;
}

.header.logo-toggle .nav .menu:last-child li:last-child::before {
  background: #fff;
}

.header.logo-toggle .nav .menu.new>li.menu-contact .hover-flip {
  color: #222;
  background-color: #fff;
}

.header.logo-toggle .nav .menu.new>li.menu-contact .hover-flip::before {
  color: #222;
}

.header.logo-toggle.scrolled .logo .logo-dark {
  display: block;
}

.header.logo-toggle.scrolled .logo .logo-light {
  display: none;
}

.header.logo-toggle.scrolled #menu-toggle span {
  background: #222;
}

.header.logo-toggle.scrolled .nav .menu>li a {
  color: #222;
}

.header.logo-toggle.scrolled .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li:first-child::before {
  content: none;
}

.header.logo-toggle.scrolled .nav .menu>li .sub-menu-wrap .sub-menu-dropdown>li ul li:first-child::before {
  content: none;
}

.header.logo-toggle.scrolled .nav .menu:first-child li:first-child::before {
  background: #ccc;
}

.header.logo-toggle.scrolled .nav .menu:last-child li:last-child::before {
  background: #ccc;
}

.header.logo-toggle.hovered .logo .logo-light {
  display: none;
}

.header.logo-toggle.hovered .logo .logo-dark {
  display: block;
}

.header.logo-toggle.hovered .nav .menu>li a {
  color: #222;
}

.header.logo-toggle.hovered .nav .menu:first-child>li:first-child::before {
  background: #ccc;
}

.header.logo-toggle.hovered .nav .menu:first-child>li .sub-menu-dropdown>li :first-child {
  margin-left: 0;
}

.header.logo-toggle.hovered .nav .menu:first-child>li .sub-menu-dropdown>li :first-child::before {
  content: none;
}

.header.logo-toggle.hovered .nav .menu:last-child>li:last-child::before {
  background: #ccc;
}

.full-menu {
  display: none;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #222222;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, height 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -o-transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, height 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -webkit-transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, height 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.full-menu .full-menu-inner {
  width: 100%;
  height: 100%;
  padding-top: 14.6rem;
  padding-bottom: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -o-transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -webkit-transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94);
  opacity: 0;
}

.full-menu .full-menu-inner .top {
  position: relative;
  height: calc(100% - 3.2rem);
  margin-bottom: 3.2rem;
}

.full-menu .full-menu-inner .top .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 41.6rem;
}

.full-menu .full-menu-inner .top .menu li {
  font-size: 6.75rem;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  text-transform: capitalize;
}

.full-menu .full-menu-inner .top .menu li a {
  display: inline-block;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.full-menu .full-menu-inner .top .menu li a.opacity {
  opacity: 0.2;
}

.full-menu .full-menu-inner .top .menu li+li {
  margin-left: 0 !important;
}

.full-menu .full-menu-inner .top .menu li:hover .fullmenu-dropdown {
  display: block;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown {
  position: absolute;
  top: 0;
  left: 41.6rem;
  width: calc(100% - 41.6rem);
  height: 100%;
  overflow-y: auto;
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown::-webkit-scrollbar {
  display: none;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li {
  max-width: 33.3333333333%;
  width: 100%;
  margin: 0 0 5.2rem;
  padding: 3.2rem 1.92rem 0;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li h4 {
  font-size: 2.88rem;
  color: #666;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  position: relative;
  line-height: 1.22;
  margin: 0 0 3.2rem;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li h4::before {
  content: "";
  width: 6.72rem;
  height: 6.72rem;
  display: block;
  background-color: #333333;
  border-radius: 50%;
  top: -2.88rem;
  left: -2rem;
  position: absolute;
  z-index: -1;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li h4 span {
  color: #fff;
  font-weight: 700;
  display: block;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li h4 span::before {
  content: none;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.89;
  padding-left: 1.6rem;
  position: relative;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li::before {
  content: "";
  width: 0.96rem;
  height: 0.96rem;
  background: #999;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.96rem;
}

.full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li a {
  font-weight: 700;
  color: #999;
}

.full-menu .full-menu-inner .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.full-menu .full-menu-inner .bottom .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
}

.full-menu .full-menu-inner .bottom .social li a {
  display: inline-block;
  text-align: center;
  transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}

.full-menu .full-menu-inner .bottom .social li a img {
  width: 3.6rem;
}

.full-menu .full-menu-inner .bottom .social li+li {
  margin-left: 2.88rem;
}

.full-menu.active {
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, height 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -o-transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, height 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  -webkit-transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, height 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  visibility: visible;
  opacity: 1;
  height: 100%;
}

.full-menu.active .full-menu-inner {
  opacity: 1;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;
  -o-transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;
  -webkit-transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 700ms;
}

.header-top.scrolled {
  display: none;
}

/*Header Animation Start*/
@-webkit-keyframes header {
  from {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes header {
  from {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*Header Animation End*/
/* header responsive */
.header .sub-menu-link .hover-flip::before {
  color: #222222;
}

.header .nav .menu>li.menu-contact .hover-flip {
  color: #ff0000;
}

.header .nav .menu>li.menu-contact .hover-flip::before {
  color: #ff0000;
}

.site-footer.footer {
  background-color: #222222;
  position: relative;
}

.site-footer.footer .container {
  max-width: 1440px;
}

.site-footer.footer .footer-content {
  display: flex;
  padding: 10.7rem 0 5.2rem;
  margin: 0 0 3rem;
}

.site-footer.footer .footer-content .left {
  flex: 0 0 74.48%;
  display: flex;
  justify-content: space-between;
  padding-right: 1.2rem;
}

.site-footer.footer .footer-content .left .content-details {
  width: calc(33.3333333333% - 1.6rem);
}

.site-footer.footer .footer-content .left .content-details .title {
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  font-weight: bold;
  margin: 0 0 2.64rem;
  text-transform: uppercase;
  color: #999999;
}

.site-footer.footer .footer-content .left .content-details .content {
  margin: 0 0 1.4rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.4;
  letter-spacing: normal;
  color: #999;
}

.site-footer.footer .footer-content .left .content-details .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer.footer .footer-content .left .content-details .content a {
  color: #999999;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.4;
  letter-spacing: normal;
}

.site-footer.footer .footer-content .right {
  flex: 0 0 25.52%;
  padding-left: 0.75rem;
}

.site-footer.footer .footer-content .right .img-top,
.site-footer.footer .footer-content .right .img-middle,
.site-footer.footer .footer-content .right .img-bottom,
.site-footer.footer .footer-content .right-gptw-logo {
  max-width: 272px;
  width: 100%;
}

.site-footer.footer .footer-content .right .img-middle,
.site-footer.footer .footer-content .right .img-bottom {
  margin-top: 46px;
}

.site-footer.footer .footer-content .right-gptw-logo img {
  margin-left: auto;
  margin-top: -10.7rem;
  display: block;
  width: 120px;
}

.site-footer.footer .links-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer.footer .links-copyright .links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer.footer .links-copyright .links ul li {
  margin-right: 1.6rem;
}

.site-footer.footer .links-copyright .links ul li img {
  max-width: 2.88rem;
}

.site-footer.footer .links-copyright .copyright {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 0;
  color: #999999;
}

.site-footer.footer .links-copyright .copyright ul {
  list-style: none;
  margin: 0;
  margin-right: 1.6rem;
  padding: 0;
}

.site-footer.footer .links-copyright .copyright ul li {
  display: inline-block;
  border-left: 1px solid #999;
  padding-left: 10px;
  margin-left: 10px;
  line-height: 14px;
}

.site-footer.footer .links-copyright .copyright ul li a {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: -0.032rem;
  color: #999999;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer .footer-menu {
  padding: 2.88rem 0;
  background-color: #2b2b2b;
  display: none;
}

.site-footer .footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.site-footer .footer-menu ul li {
  padding: 0 1.44rem;
  font-family: "Bebas Neue", cursive;
  font-size: 3.7rem;
  line-height: 1;
}

.site-footer .footer-menu ul li a {
  color: #fff;
  padding: 0.4rem 1rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.site-footer .footer-bottom {
  background-color: #222;
  padding: 0 0 3.68rem;
}

.site-footer .footer-bottom .social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 4.8rem 0;
  background-color: #333;
}

.site-footer .footer-bottom .social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.site-footer .footer-bottom .social ul li {
  margin: 0 1.44rem;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.site-footer .footer-bottom .social ul li:hover {
  opacity: 0.5;
}

.site-footer .footer-bottom .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1600px;
}

.site-footer .footer-bottom .container .location {
  width: 26.36%;
  margin-top: 6rem;
}

.site-footer .footer-bottom .container .location .image {
  margin: 0 0 2.4rem;
  width: 22.4rem;
}

.site-footer .footer-bottom .container .location .image a {
  display: inline-block;
}

.site-footer .footer-bottom .container .location p {
  font-size: 1.44rem;
  color: #999;
  line-height: 1.67;
  margin: 0 0 2.4rem;
  font-weight: 400;
}

.site-footer .footer-bottom .container .location p:last-child {
  margin: 0;
}

.site-footer .footer-bottom .container .links {
  width: 65.3%;
  display: flex;
  justify-content: space-between;
  margin-top: 7.6rem;
}

.site-footer .footer-bottom .container .links ul {
  width: 25%;
  padding: 0;
  list-style: none;
  margin: 0;
}

.site-footer .footer-bottom .container .links ul li {
  font-size: 1.44rem;
  line-height: 1.67;
  color: #999;
}

.site-footer .footer-bottom .container .links ul li:first-child a {
  font-weight: 700;
  margin-bottom: 0.64rem;
}

.site-footer .footer-bottom .container .links ul li:first-child a:hover {
  color: #999;
}

.site-footer .footer-bottom .container .links ul li a {
  text-decoration: none;
  color: #999;
  display: inline-block;
}

.site-footer .footer-bottom .container .links ul li a:hover {
  color: var(--white);
}

.site-footer .footer-bottom .container .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.4rem;
  border-top: 1px solid #444;
  padding-top: 2.4rem;
}

.site-footer .footer-bottom .container .bottom .social-small {
  display: flex;
}

.site-footer .footer-bottom .container .bottom .social-small ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
}

.site-footer .footer-bottom .container .bottom .social-small ul li {
  margin: 0 0.64rem;
  transition: all 0.3s ease-in;
  opacity: 0.5;
  width: 2.88rem;
}

.site-footer .footer-bottom .container .bottom .social-small ul li:first-child {
  margin-left: 0;
}

.site-footer .footer-bottom .container .bottom .social-small ul li:last-child {
  margin-right: 0;
}

.site-footer .footer-bottom .container .bottom .social-small ul li:hover {
  opacity: 1;
}

.site-footer .footer-bottom .container .bottom .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer .footer-bottom .container .bottom .copyright .image {
  max-width: 3.2rem;
  width: 100%;
}

.site-footer .footer-bottom .container .bottom .copyright p {
  font-size: 1.44rem;
  color: #999;
  line-height: 1.67;
  margin: 0 0 2.4rem;
  font-weight: 400;
  margin: 0;
}

.site-footer .footer-bottom .container .bottom-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.site-footer .footer-bottom .container .bottom-links .left {
  width: 50%;
  margin-top: 3.9rem;
}

.site-footer .footer-bottom .container .bottom-links .left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-bottom .container .bottom-links .left ul li {
  padding: 0 0.81rem;
  font-size: 1.35rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bottom .container .bottom-links .left ul li:first-child {
  font-weight: 700;
}

.site-footer .footer-bottom .container .bottom-links .left ul li:first-child a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bottom .container .bottom-links .left ul li+li {
  margin-left: 0.32rem;
}

.site-footer .footer-bottom .container .bottom-links .left ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2rem;
  font-size: 1.35rem;
  margin: 0 0 1.6rem;
  display: inline-block;
  font-weight: 400;
}

.site-footer .footer-bottom .container .bottom-links .left ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-bottom .container .bottom-links .left ul li:first-child a {
  font-weight: 700;
}

.site-footer .footer-bottom .container .bottom-links .right {
  margin-top: 3.9rem;
  width: 50%;
}

.site-footer .footer-bottom .container .bottom-links .right p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 2rem;
  margin: 0 0 1.6rem;
  text-align: right;
  padding: 0.1rem 0;
}

.site-footer .footer-bottom .container .bottom-links .right p strong:first-child {
  margin-right: 1.94rem;
}

.site-footer .footer-bottom .container .bottom-links .right p br {
  display: none;
}

.site-footer .footer-bottom .container .bottom-links .right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.site-footer .footer-bottom .container .bottom-links .right ul li {
  padding: 0 0.81rem;
  font-size: 1.35rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bottom .container .bottom-links .right ul li:first-child {
  font-weight: 700;
}

.site-footer .footer-bottom .container .bottom-links .right ul li:first-child a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bottom .container .bottom-links .right ul li+li {
  margin-left: 0.32rem;
}

.site-footer .footer-bottom .container .bottom-links .right ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2rem;
  font-size: 1.35rem;
  margin: 0 0 1.6rem;
  display: inline-block;
  font-weight: 400;
}

.site-footer .footer-bottom .container .bottom-links .right ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-bottom .container .bottom-links .right ul li:first-child a {
  font-weight: 700;
}

.site-footer .home-form {
  max-width: 71.25rem;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

.site-footer .home-form .contact-form {
  padding: 0;
  background: 0 0;
  display: flex;
  margin: 0 0 2rem;
  flex-direction: column;
}

.site-footer .home-form .contact-form .form-group {
  position: relative;
  display: block;
  min-height: 46px;
  border: 1px solid #222;
  padding-top: 10px;
  margin: 0 !important;
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
  width: 100%;
}

.site-footer .home-form .contact-form .form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.site-footer .home-form .contact-form .form-group .form-control {
  color: #222;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
}

.site-footer .home-form .contact-form .form-group .label-wrap {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: text;
  position: absolute;
  bottom: 0;
  left: 0;
}

.site-footer .home-form .contact-form .form-group .label-wrap .label {
  color: #222;
  font-size: 14px;
  padding-left: 20px;
  position: absolute;
  left: 0;
  bottom: calc(50% - 0.45rem);
  line-height: 1;
  pointer-events: none;
  transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  will-change: all, opacity, font-size;
  font-weight: 500;
}

.site-footer .home-form .contact-form .form-group .label-wrap::after {
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 2px;
  background-color: #999;
  position: absolute;
  bottom: 0;
  left: 0;
  will-change: width;
  transition: width 285ms ease-out;
  -o-transition: width 285ms ease-out;
  -webkit-transition: width 285ms ease-out;
}

.site-footer .home-form .contact-form .form-group .label-wrap.up .label {
  padding-left: 10px;
  font-size: 11px;
  bottom: calc(100% - 16px);
}

.site-footer .home-form .contact-form .btn {
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex: 1 0 auto;
  background-color: #222;
}

.site-footer .footer-middle {
  background-color: #111111;
  padding: 40px 0 46px;
}

.site-footer .footer-middle .dmca-link-footer {
  margin-bottom: -50px;
  display: flex;
}

.site-footer .footer-middle .dmca-link-footer img {
  width: auto;
}

.site-footer .footer-middle .center-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 30px;
  padding: 0;
  list-style: none;
}

.site-footer .footer-middle .center-link a {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-middle .social-links-row {
  margin-top: 54px;
}

.site-footer .footer-middle .social-links-row .social-link {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

@media (max-width: 1199px) {
  .site-footer .footer-middle {
    padding: 30px 0 36px;
  }

  .site-footer .footer-middle .dmca-link-footer {
    margin-bottom: 20px;
    justify-content: center;
  }
}

@media (max-width: 767px) {

  .site-footer.footer .footer-content .right .img-top,
  .site-footer.footer .footer-content .right .img-middle,
  .site-footer.footer .footer-content .right .img-bottom,
  .site-footer.footer .footer-content .right .right-gptw-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.slider {
  height: calc(100vh - 9rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.slider .content {
  max-width: 70rem;
  width: 100%;
  margin-left: 12rem;
  height: 100%;
}

.slider .content .text {
  margin-top: 7rem;
}

.slider .content .text h3 {
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--light-gray);
}

.slider .content .text h1,
.slider .content .text h2 {
  font-family: var(--font-family-primary);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  font-size: 5.8rem;
  font-weight: 700;
}

.slider .content .text p {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 2.5rem;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.3;
  color: var(--gray);
}

.slider .image {
  width: 55rem;
  bottom: 22vh;
  right: 13rem;
  max-height: 70vh;
  max-width: 100%;
  position: relative;
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
}

.slider .image::before {
  content: "";
  display: block;
  padding-bottom: 85%;
}

.slider .image img,
.slider .image .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.slider .image .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.slider .image.lottie-image::before {
  padding-bottom: 100%;
}

.slider .image-1 {
  width: 80rem;
  max-height: 70vh;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.slider .image-1::before {
  content: "";
  display: block;
  padding-bottom: 82%;
}

.slider .image-1 img,
.slider .image-1 .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

/* slider responsive */
.scroll-downs {
  margin: 1rem 0 2rem;
}

.mousey {
  width: 2px;
  padding: 7px 12px;
  height: 28px;
  border: 2px solid #000;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto;
}

.scroller {
  width: 2px;
  height: 6px;
  border-radius: 25%;
  background-color: #000;
  animation-name: scroll;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0.5;
  }
}

.about-slider.slider {
  height: 100%;
  padding: 19rem 0;
}

.about-slider.slider .content .text h2,
.about-slider.slider .content .text h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 5.8rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.about-slider.slider .content .text h2::after,
.about-slider.slider .content .text h1::after {
  content: none;
}

.about-slider.slider .content .text p {
  color: var(--gray);
}

.about-slider.slider .image {
  bottom: 11rem;
}

.about-slider.slider .image .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.full-width-img {
  position: relative;
  padding-bottom: 43.95%;
  margin: 9rem 0 16rem;
}

.full-width-img img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.section-links {
  margin-top: 3.5rem;
}

.section-links ul {
  list-style: none;
  padding: 0;
}

.section-links ul li {
  display: inline-block;
}

.section-links ul li a {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  color: var(--gray);
  font-size: 1.85rem;
  width: 12rem;
  display: block;
  padding: 0.7rem 0 0.5rem;
  text-align: center;
  border: 1px solid #ccc;
  border-left: 0;
  font-weight: 500;
}

.section-links ul li a:hover {
  background: #eaeaea;
  color: var(--gray);
}

.section-links ul li:first-child a {
  border-left: 1px solid #ccc;
  border-bottom-left-radius: 0.3rem;
  border-top-left-radius: 0.3rem;
}

.section-links ul li:last-child a {
  border-bottom-right-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.building-apps,
.thinkahead {
  margin: 0 0 8rem;
}

.building-apps .header-content,
.thinkahead .header-content {
  max-width: 107.5rem;
  margin: 0 auto;
  text-align: center;
}

.building-apps .header-content p,
.thinkahead .header-content p {
  margin: 0 0 2.4rem;
}

.about-global.global {
  background-color: var(--white);
}

.about-global.global ul {
  padding: 0;
}

.about-global.global ul>li {
  text-align: center;
}

.about-global.global ul>li>span::after {
  content: "";
  width: 6rem;
  height: 0.3rem;
  background: #ccc;
  position: absolute;
  bottom: 0;
  top: auto !important;
  right: auto !important;
  left: 0;
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.about-global.global ul>li span {
  font-size: 7.4rem;
  font-weight: 500;
}

.about-global.global ul>li span::after {
  color: var(--black);
  top: -2rem;
  right: -0.5rem;
}

.about-global.global ul>li span p {
  margin: 0 0 1.8rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

.about-global.global ul>li::after {
  content: none;
}

.thinkahead {
  padding: 20rem 0 0;
  margin: 0;
}

.thinkahead .header-content {
  max-width: 85rem;
}

.thinkahead .image {
  margin: 7rem 0 0;
}

.focus {
  padding: 22rem 0 0;
  overflow: hidden;
}

.focus .header-content {
  max-width: 98.5rem;
  margin: 0 auto;
  text-align: center;
}

.focus .focus-logos {
  padding: 3rem 0 0;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}

.focus .focus-logos ul {
  list-style: none;
  width: 80%;
  float: left;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0;
  background-color: var(--white);
  margin: 0 0 5rem;
  display: flex;
  justify-content: center;
}

.focus .focus-logos ul li {
  width: 15.5%;
  float: left;
  position: relative;
  margin: 2rem 0;
}

.focus .focus-logos ul li::after {
  content: "";
  display: block;
  padding-bottom: 48.25%;
}

.focus .focus-logos ul li img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.7);
  -moz-transform: translate(-50%, -50%) scale(0.7);
  -webkit-transform: translate(-50%, -50%) scale(0.7);
}

.awards,
.our-work {
  padding: 16rem 0 0;
}

.awards .header-content,
.our-work .header-content {
  max-width: 99rem;
  margin: 0 auto 5.4rem;
  text-align: center;
}

.awards .awards-box,
.our-work .awards-box {
  border: 1px solid #dbdbdb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 170px;
  position: relative;
}

.awards .awards-box img,
.our-work .awards-box img {
  max-width: 80%;
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(0.85);
  -moz-transform: translate(-50%, -50%) scale(0.85);
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  z-index: 1;
}

.awards ul,
.our-work ul {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
}

.awards ul li,
.our-work ul li {
  width: calc(20% - 2.7rem);
  display: inline-block;
  margin: 0 1.5rem 1rem;
}

.awards ul li:first-child,
.our-work ul li:first-child {
  margin-left: 0;
}

.awards ul li:last-child,
.our-work ul li:last-child {
  margin-right: 0;
}

.awards .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::before,
.our-work .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::before {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 0;
}

.awards .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::after,
.our-work .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::after {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 0;
}

.awards .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::before,
.our-work .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::before {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 0;
}

.awards .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::after,
.our-work .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::after {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 0;
}

.awards .awards-text,
.our-work .awards-text {
  padding: 1.5rem 0 1rem;
}

.awards .awards-text p,
.our-work .awards-text p {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.about-awards {
  padding: 20rem 0 0;
}

.about-awards .header-content {
  flex: 0 0 40.5rem;
  margin: 10rem 0 5rem;
  padding-right: 8rem;
}

.about-awards .header-content p {
  margin: 0 0 2.2rem;
}

.about-awards .awards-name {
  position: relative;
}

.about-awards .awards-name::after {
  content: "";
  width: 100%;
  height: calc(100% - 4rem);
  background: #fafafa;
  position: absolute;
  z-index: -1;
  top: 4rem;
  left: -4rem;
}

.about-awards .awards-box {
  border: 1px solid #dbdbdb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 170px;
  position: relative;
  background: var(--white);
}

.about-awards .awards-box img {
  max-width: 80%;
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(0.75);
  -moz-transform: translate(-50%, -50%) scale(0.75);
  -webkit-transform: translate(-50%, -50%) scale(0.75);
  z-index: 1;
}

.about-awards ul {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
}

.about-awards ul li {
  width: calc(20% - 2.7rem);
  display: inline-block;
  margin: 0 1.5rem 1rem;
}

.about-awards ul li:first-child {
  margin-left: 0;
}

.about-awards ul li:last-child {
  margin-right: 0;
}

.about-awards .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::before {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 0;
}

.about-awards .col-lg-3:nth-child(-n+4):nth-child(odd) .awards-box::after {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 0;
}

.about-awards .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::before {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 0;
}

.about-awards .col-lg-3:nth-child(n+5):nth-child(even) .awards-box::after {
  content: "";
  width: 85%;
  height: 70%;
  background-color: #fff;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 0;
}

.about-awards .awards-text {
  padding: 1.5rem 0 1rem;
}

.about-awards .awards-text p {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 2.2rem;
}

.our-work {
  padding: 0 0 16rem;
}

.our-work .awards-box {
  height: 145px;
  margin-bottom: 2.5rem;
}

.partners-home {
  padding: 25rem 0 0;
}

.partners-home .text {
  max-width: 42rem;
  text-align: center;
  margin: 0 auto 3rem;
}

.partners-home .image {
  position: relative;
  margin-left: 5.5rem;
  border: 1px solid #dbdbdb;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  max-width: 42rem;
  position: relative;
}

.partners-home .image::before {
  content: "";
  display: block;
  padding-bottom: 33%;
}

.partners-home .image img {
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(0.75);
  -moz-transform: translate(-50%, -50%) scale(0.75);
  -webkit-transform: translate(-50%, -50%) scale(0.75);
}

.partners-home .partners-logo {
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  max-width: 97.2rem;
  margin: 0 auto;
}

.partners-home .partners-logo>li {
  margin: 1rem;
  width: calc(20% - 2rem);
  border-radius: 1rem;
  border: 1px solid #dbdbdb;
  max-width: 100%;
  position: relative;
}

.partners-home .partners-logo>li::before {
  content: "";
  display: block;
  padding-bottom: 55%;
}

.partners-home .partners-logo>li:nth-child(4) {
  margin-right: 10%;
}

.partners-home .partners-logo>li:nth-child(5) {
  margin-left: 10%;
}

.partners-home .partners-logo>li img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.partners-home .bottom-text {
  text-align: center;
  max-width: 90rem;
  margin: 3rem auto 0;
}

.partners-home .bottom-text p {
  margin-bottom: 3rem;
}

.global-presence {
  padding: 22rem 0 26rem;
}

.global-presence .text h2 {
  margin: 0 0 0.5rem;
}

.global-presence .text h4 {
  font-size: 3.6rem;
  font-weight: 300;
  margin: 0 0 2rem;
}

.global-presence .text p {
  font-size: 2.4rem;
}

.global-presence .connect-box {
  padding-left: 4.5rem;
  padding-right: 8rem;
  position: relative;
}

.global-presence .connect-box p {
  font-size: 1.97rem;
  margin-top: 3rem;
}

.global-presence .connect-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 2.5rem);
  top: 4.8rem;
  background-color: #fafafa;
  z-index: -1;
  left: 0;
}

.global-presence .connect-right-box {
  position: relative;
}

.global-presence .connect-right-box::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 32rem;
  background-color: #cccccc;
  margin-top: 3rem;
}

.global-presence .connect-right-box::after {
  content: "";
  position: absolute;
  background-color: #fafafa;
  width: 86%;
  height: 72%;
  top: 0;
  top: 3rem;
  z-index: -1;
  left: 12rem;
}

.global-presence .connect-right-box .box-content {
  margin: -8rem 0 0 3.5rem;
}

.global-presence .connect-right-box img {
  margin: 0 0 3rem;
}

.global-presence .connect-right-box p {
  font-size: 2.1rem;
  margin: 0 0 2.5rem;
}

.global-presence .connect-right-box .btn {
  margin-top: 1.2rem;
}

.client-testimonials {
  margin: 0 0 16rem;
}

.client-testimonials .header-content {
  max-width: 86.15rem;
  margin: 0 auto 7.4rem;
  text-align: center;
}

.client-testimonials .testimonials {
  text-align: center;
}

.client-testimonials .testimonials .testimonial-pic {
  width: 12.6rem;
  margin: 0 auto 1.8rem;
}

.client-testimonials .testimonials .testimonial-pic .rounded-img {
  position: relative;
  padding-bottom: 100%;
}

.client-testimonials .testimonials .testimonial-pic .rounded-img::before {
  content: "";
  background: url(assets/images/left-quote.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  left: -5rem;
  bottom: 1.2rem;
}

.client-testimonials .testimonials .testimonial-pic .rounded-img::after {
  content: "";
  background: url(assets/images/right-quote.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  right: -5rem;
  bottom: 1.2rem;
}

.client-testimonials .testimonials .testimonial-pic .rounded-img img {
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
}

.client-testimonials .testimonials .client-detail p {
  color: var(--dark-gray);
}

.client-testimonials .testimonials .client-detail p.client-text {
  line-height: 1.9;
  font-size: 2.4rem;
  position: relative;
}

.client-testimonials .testimonials .client-detail p.client-text::after {
  content: "";
  width: 11rem;
  position: absolute;
  display: block;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  margin-top: 3rem;
}

.client-testimonials .lSSlideOuter .lSPager.lSpg>li {
  padding: 0 2px;
}

.client-testimonials .lSSlideOuter .lSPager.lSpg>li a {
  background-color: #ebebeb;
  border-radius: 0;
  height: 0.4rem;
  width: 9rem;
}

.client-testimonials .lSSlideOuter .lSPager.lSpg>li.active a {
  background-color: var(--primary);
}

.about-fortune.fortune {
  margin: 10rem 0 0;
}

.about-fortune.fortune .clients-logo {
  background: var(--white);
}

.about-team .leaders-wrap {
  margin: 0;
}

.about-team .leaders-wrap .leaders .content h4 {
  font-weight: 600;
}

.about-team .leaders-wrap .leaders .content h4 span {
  font-weight: 400;
}

.about-team .team-main-wrap {
  margin: 0;
  padding: 0;
}

.about-team .team-main-wrap .section-head.text-center {
  margin: 0 auto 3rem;
}

.about-team .about-leaders ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 82%;
  justify-content: center;
}

.about-team .about-leaders ul li {
  width: calc(20% - 3rem);
  margin: 1.5rem 1.5rem 3rem;
  display: inline-block;
}

.about-team .about-leaders ul li .overlay {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-team .about-leaders ul li .overlay .profile-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
}

.about-team .about-leaders ul li .overlay .profile-link img {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  width: 6rem;
  transition: all 0.5s ease;
}

.about-team .about-leaders ul li .overlay:hover .profile-link {
  opacity: 1;
}

.about-team .about-leaders ul li .overlay:hover .profile-link img {
  transform: scale(1);
}

.about-team .about-leaders ul li h4 {
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1.5rem 0 0;
}

.about-team .about-leaders ul li p {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
}

.team-slider.slider {
  height: 100%;
  margin: 7rem 0 5rem;
  padding: 10rem 0 6rem;
}

.team-slider.slider .image {
  bottom: 0;
  right: 0;
  max-height: none;
  width: 90%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  max-width: 100%;
  position: relative;
}

.team-slider.slider .image::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.team-slider.slider .image .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.75);
  -moz-transform: translate(-50%, -50%) scale(1.75);
  -webkit-transform: translate(-50%, -50%) scale(1.75);
  top: 60% !important;
}

.team-slider.slider .content {
  margin-left: 0;
  max-width: 100%;
}

.team-slider.slider .content .text {
  margin-top: 15rem;
}

.team-slider.slider .content .text h2,
.team-slider.slider .content .text h1 {
  font-family: var(--font-family-primary);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 3rem;
}

.team-slider.slider .content .text h2::after,
.team-slider.slider .content .text h1::after {
  content: none;
}

.team-slider.slider .content .text p {
  color: var(--light-gray);
}

.team-main-wrap .section-head.text-center {
  max-width: 120rem;
  margin: 0 auto;
}

.about-wrap {
  margin: 10rem 0 0;
}

.team-main-wrap {
  position: relative;
  margin: 0 0 6rem;
  padding: 0 0 6rem;
}

.leaders-wrap {
  margin: 0 0 10rem;
  padding: 8rem 0 0;
}

.leaders-wrap .leaders {
  margin: 2rem 4rem;
}

.leaders-wrap .leaders .thumbnail {
  float: left;
  width: 12.5rem;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.leaders-wrap .leaders .thumbnail img {
  width: auto;
}

.leaders-wrap .leaders .content {
  margin: 0 0 0 14.5rem;
}

.leaders-wrap .leaders .content h4 {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 3rem;
  margin: 0 0 0.6rem;
}

.leaders-wrap .leaders .content h4::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  top: 0.4rem;
  left: 0;
  position: absolute;
  background: #fe6666;
}

.leaders-wrap .leaders .content h4::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  top: 1rem;
  left: 0.7rem;
  position: absolute;
  outline: 2px solid var(--white);
  outline-offset: -2px;
  background: var(--primary);
}

.leaders-wrap .leaders .content p {
  font-size: 1.6rem;
}

.teams {
  width: calc(16.6666666667% - 3rem);
  text-align: center;
  margin: 1.5rem;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
}

.teams .thumbnail {
  width: 100%;
  overflow: hidden;
  display: inline-block;
}

.teams .thumbnail img {
  filter: gray;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.teams p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin: 0.4rem 0 0.8rem;
}

.all-team {
  width: 85%;
  margin: 0 auto;
}

.all-team .section-head {
  margin: 7rem auto 2rem !important;
}

.all-team .section-head h2 {
  font-size: 3.6rem;
  margin: 0;
}

.middle-banner {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  margin: 0 0 16rem;
}

.middle-banner .text {
  top: 50%;
  right: 15rem;
  position: absolute;
  transform: translateY(-50%);
  max-width: 33rem;
}

.middle-banner .text h4 {
  font-family: var(--font-family-primary);
  color: var(--white);
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.1rem;
  margin: 0 0 1rem;
}

.middle-banner .text .link {
  color: var(--white);
}

.different {
  margin: 14rem 0 28rem;
}

.different ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: counter;
}

.different ol>li {
  float: left;
  counter-increment: counter;
  position: relative;
}

.different ol>li::before {
  content: "0" counter(counter);
  font-family: var(--font-family-secondary);
  font-size: 4.8rem;
  line-height: 1;
  top: -2rem;
  left: -1rem;
  position: absolute;
}

.different ol>li .text {
  font-size: 2.4rem;
  font-weight: 300;
  padding: 2.6rem 3.2rem;
  background: #efefef;
  margin: 0 2rem 0 3rem;
  border-radius: 1rem;
}

.why {
  margin: 0 0 14rem;
  position: relative;
}

.why .lottie-wrapper {
  width: 100%;
  margin-top: -6rem;
  max-width: 100%;
  position: relative;
}

.why .lottie-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.why .lottie-wrapper>* {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.25);
  -moz-transform: translate(-50%, -50%) scale(1.25);
  -webkit-transform: translate(-50%, -50%) scale(1.25);
}

.why .from {
  margin: 0 0 4rem;
  background: var(--primary);
  padding: 3rem 10rem 3rem 5rem;
  max-width: 62rem;
  border-radius: 1rem;
}

.why .from h3 {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.45;
}

.why .text {
  margin: -20rem 10rem 0 6rem;
}

.what {
  margin: 0 0 10rem;
}

.service-box .thumb {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.service-box .thumb::before {
  content: "";
  display: block;
  padding-bottom: 44.44%;
}

.service-box .thumb img {
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

.service-box:hover .thumb img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.05);
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -webkit-transform: translate(-50%, -50%) scale(1.05);
}

.service-box .title {
  padding: 2rem 3rem;
  border: solid 1px #e5e5e5;
  background-color: var(--white);
}

.service-box .title h4 {
  margin: 0;
  color: var(--black);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  font-family: var(--font-family-primary);
}

.service-box .title h4 a {
  color: var(--black);
  transition: 0.3s ease all;
}

.service-box .title h4 a:hover {
  box-shadow: inset 0 -1px var(--black);
}

.journey {
  margin: 0 0 10rem;
}

.business {
  margin: 0 0 10rem;
}

.business .text {
  margin: 0 10rem 0 10rem;
}

.business .image {
  margin: 0 9rem;
}

.chatboats {
  margin: 0 0 10rem;
}

.chatboats .text {
  margin: 0 4rem 0 6rem;
}

.chatboats .image {
  margin: 0 9rem;
}

.global {
  background-color: #fafafa;
}

.global .section-head {
  padding: 6.15rem 0 0;
  margin: 0 0 4.95rem;
}

.global ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0 0 4.8rem;
}

.global ul>li {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  position: relative;
}

.global ul>li::after {
  content: "";
  width: 6rem;
  height: 0.3rem;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.global ul>li span {
  margin: 0 0 1rem;
  color: var(--black);
  font-size: 7.4rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: inline-block;
  font-family: var(--font-family-secondary);
}

.global ul>li span::after {
  content: "+";
  color: #cccccc;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-family-primary);
  top: -1.5rem;
  right: 0;
  position: absolute;
  transform: translateX(60%);
  -moz-transform: translateX(60%);
  -webkit-transform: translateX(60%);
}

.global ul>li p {
  margin: 0 0 1.8rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}

.fortune {
  margin: 14rem 0 20rem;
}

.fortune h3 {
  margin: 0 0 0 2.5rem;
}

.fortune p {
  font-size: 2rem;
  margin: 0 50% 2.6rem 2.5rem;
}

.fortune .btn-gray {
  margin-right: 2rem;
}

.fortune .clients-logo {
  position: relative;
  padding: 4rem 2rem;
  background: #efefef;
  margin: 0 2.5rem 2rem;
  border-radius: 1rem;
}

.fortune .clients-logo .patch {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #efefef;
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.fortune .clients-logo .patch::before,
.fortune .clients-logo .patch::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: #efefef;
  position: absolute;
  border-radius: 0.4rem;
}

.fortune .clients-logo .patch.left {
  left: -2.6rem;
}

.fortune .clients-logo .patch.left::before {
  right: 0rem;
}

.fortune .clients-logo .patch.top {
  top: -2.6rem;
}

.fortune .clients-logo .patch.bottom {
  bottom: -2.6rem;
}

.fortune .clients-logo .patch.right {
  right: -2.6rem;
}

.fortune .clients-logo .patch.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.fortune .clients-logo .patch.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.fortune .clients-logo .patch.left.bottom::before {
  bottom: 2.6rem;
}

.fortune .clients-logo .patch.left.bottom::after {
  left: 2.6rem;
}

.fortune .clients-logo .patch.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.fortune .clients-logo .patch.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.fortune .clients-logo ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fortune .clients-logo ul>li {
  width: 16.6666666667%;
  margin: 2rem 0;
  text-align: center;
}

.fortune .clients-logo ul>li img {
  width: auto;
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

.portfolio-home {
  height: 100vh;
  overflow: hidden;
  background: #fafafa;
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  position: relative;
}

.portfolio-home .portfolio-lists {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.portfolio-home .portfolio-lists>li {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.portfolio-home .portfolio-lists .portfolio-left {
  padding: 0 6rem 0 5rem;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.portfolio-home .portfolio-lists .portfolio-left .portfolio-left-inner {
  margin-top: 7rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-home .portfolio-lists .portfolio-left .top-text {
  margin: 5rem 0 9rem;
  position: relative;
  transform: translateX(-100px);
}

.portfolio-home .portfolio-lists .portfolio-left .top-text::before {
  content: "";
  width: 22rem;
  height: 22rem;
  display: block;
  border: 2px solid #707070;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}

.portfolio-home .portfolio-lists .portfolio-left .top-text h3 {
  font-weight: 500;
  line-height: 1.25;
  background: #fafafa;
  margin: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo {
  margin: 0 0 2.4rem;
  max-width: 7.6rem;
  position: relative;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #f2739f;
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch::before,
.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: #f2739f;
  position: absolute;
  border-radius: 0.4rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left {
  left: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left::before {
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.top {
  top: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.bottom {
  bottom: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.right {
  right: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left.bottom::before {
  bottom: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left.bottom::after {
  left: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #06008f;
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa::before,
.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: #06008f;
  position: absolute;
  border-radius: 0.4rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left {
  left: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left::before {
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.top {
  top: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.bottom {
  bottom: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.right {
  right: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left.bottom::before {
  bottom: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left.bottom::after {
  left: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.axa.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #0f8dd5;
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host::before,
.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: #0f8dd5;
  position: absolute;
  border-radius: 0.4rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left {
  left: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left::before {
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.top {
  top: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.bottom {
  bottom: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.right {
  right: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left.bottom::before {
  bottom: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left.bottom::after {
  left: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.rental-host.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #ef5a24;
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play::before,
.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: #ef5a24;
  position: absolute;
  border-radius: 0.4rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left {
  left: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left::before {
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.top {
  top: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.bottom {
  bottom: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.right {
  right: -2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left.bottom::before {
  bottom: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left.bottom::after {
  left: 2.6rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch.pickle-play.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.portfolio-home .portfolio-lists .portfolio-left .client-info h3 {
  margin: 0 0 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.portfolio-home .portfolio-lists .portfolio-left .client-info p {
  font-size: 2rem;
  margin-bottom: 2.4rem;
}

.portfolio-home .portfolio-lists .portfolio-left .technology {
  margin: 0;
  padding: 0;
  list-style: none;
  top: 80px;
  position: relative;
}

.portfolio-home .portfolio-lists .portfolio-left .technology li+li {
  margin-left: 2.5rem;
}

.portfolio-home .portfolio-lists .portfolio-left .technology li p {
  display: block;
}

.portfolio-home .portfolio-lists .portfolio-left .technology li .icon {
  width: 10rem;
  border-radius: 0.4rem;
  max-width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  margin: 0 auto 1rem;
}

.portfolio-home .portfolio-lists .portfolio-left .technology li .icon::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.portfolio-home .portfolio-lists .portfolio-left .technology li .icon img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(0.75);
  -moz-transform: translate(-50%, -50%) scale(0.75);
  -webkit-transform: translate(-50%, -50%) scale(0.75);
}

.portfolio-home .portfolio-lists .portfolio-left .technology li p {
  color: #332f30;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.36px;
  text-align: center;
  margin-bottom: 0;
}

.portfolio-home .portfolio-lists .portfolio-left .store-link {
  margin: 2rem 0 5rem;
  padding: 0;
  list-style: none;
  top: 80px;
  position: relative;
}

.portfolio-home .portfolio-lists .portfolio-left .store-link li {
  max-width: 14rem;
}

.portfolio-home .portfolio-lists .portfolio-left .store-link li+li {
  margin: 0 0 0 1.6rem;
}

.portfolio-home .portfolio-lists .portfolio-right {
  left: 0%;
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg {
  position: relative;
  padding-bottom: 100vh;
  overflow: hidden;
  background-color: #ebebeb;
}

.portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg img {
  top: 50%;
  left: 100%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
}

.portfolio-home .skip {
  position: absolute;
  top: 9rem;
  left: 47%;
  overflow: hidden;
  height: 24px;
}

.portfolio-home .skip a {
  color: #332f30;
  text-transform: uppercase;
}

.portfolio-home .skip a.down {
  display: none;
}

.portfolio-home .slide-count {
  top: calc(100% - 7rem);
  left: calc(50% - 8rem);
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-home .slide-count .slide-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 22px;
  background-color: var(--light-gray);
  display: inline-block;
  margin: 0 0.2rem;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.portfolio-home .slide-count .slide-dot.active {
  background-color: var(--primary);
  width: 2rem;
}

.blog-home {
  margin: 20rem 0;
}

.blog-home h3 {
  margin: 0;
}

.blog-home p {
  margin: 0 65% 3.6rem 0;
}

.blog-home .carousel-wrapper {
  margin: 0 0 3rem;
  padding: 4rem 0 6rem 12rem;
  position: relative;
}

.blog-home .carousel-wrapper::after {
  content: "";
  position: absolute;
  left: 25rem;
  top: 0;
  width: 200%;
  height: 100%;
  display: block;
  z-index: -1;
  border-radius: 10px;
  background: #f4f4f4;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .thumbnail {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .thumbnail::before {
  content: "";
  display: block;
  padding-bottom: 58%;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .thumbnail img {
  object-fit: cover;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .blog-title {
  margin: 0;
  color: #333333;
  background-color: var(--white);
  font-size: 2rem;
  line-height: 1.5;
  border: 1px solid #cccccc;
  border-top: none;
  padding: 2rem 3rem;
  border-radius: 0 0 1rem 1rem;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .blog-title a {
  color: #333333;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item .blog-title a:hover {
  box-shadow: inset 0 -1px #333333;
}

.blog-home .carousel-wrapper .blog-carousel .blog-item:hover .thumbnail img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.05);
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -webkit-transform: translate(-50%, -50%) scale(1.05);
}

.blog-home .carousel-wrapper .prev {
  top: 50%;
  left: 0;
  position: absolute;
  margin-top: -2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  display: inline-block;
  background-image: url(assets/images/prev.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 9;
}

/* home responsive */
.contact-top-banner .page-title-wrap a {
  color: var(--black);
  font-weight: 600;
}

.contact-top-banner .page-title-wrap a:hover {
  box-shadow: inset 0 -1px var(--black);
}

.contact-form {
  margin: -8rem 0 10rem;
  padding: 3rem 6rem;
  /* For Firefox */
  /* Webkit browsers like Safari and Chrome */
}

.contact-form .form-group {
  margin: 0 0 4rem;
}

.contact-form .form-control-wrap .form-control+.not-valid {
  display: none;
}

.contact-form .form-control-wrap .form-control.not-valid {
  border-bottom-color: var(--primary);
}

.contact-form .label-wrap.up .label {
  opacity: 1;
  bottom: 100%;
  font-size: 1.4rem;
}

.contact-form .response-output {
  display: none !important;
}

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

.contact-form input[type=number]::-webkit-inner-spin-button,
.contact-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-group {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0 0 3.5rem;
}

.form-group select.form-control {
  background-image: url(assets/images/down-caret.svg);
  background-repeat: no-repeat;
  background-position: right 10px top 16px;
  background-size: 17px;
}

.form-group .form-control {
  color: #333;
  width: 100%;
  height: 44px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  border-bottom: 1px solid #cccccc;
  font-weight: 500;
}

.form-group .form-control:focus {
  outline: none;
}

.form-group .form-control::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.form-group .form-control::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.form-group .form-control:not(:placeholder-shown)~.label-wrap .label {
  opacity: 0;
  bottom: calc(50% - 1rem);
}

.form-group .form-control:focus::-webkit-input-placeholder {
  opacity: 0.8;
  transition-delay: 0.2s;
}

.form-group .form-control:focus::-moz-placeholder {
  opacity: 1;
  transition-delay: 0.2s;
}

.form-group .form-control:focus~.label-wrap .label {
  opacity: 1;
  bottom: 100%;
  font-size: 1.4rem;
}

.form-group .form-control:focus~.label-wrap:after {
  width: 100%;
}

.form-group .label-wrap {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-family: "Rajdhani", sans-serif;
  pointer-events: none;
  cursor: text;
  position: absolute;
  bottom: 0;
  left: 0;
}

.form-group .label-wrap:after {
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 2px;
  background-color: #999;
  position: absolute;
  bottom: 0;
  left: 0;
  will-change: width;
  transition: width 0.285s ease-out;
}

.form-group .label-wrap .label {
  color: #333;
  position: absolute;
  left: 0;
  bottom: calc(50% - 0.9rem);
  line-height: 1;
  font-size: 2rem;
  pointer-events: none;
  transition: bottom 0.2s cubic-bezier(0.9, -0.15, 0.1, 1.15), opacity 0.2s ease-out, font-size 0.2s ease-out;
  will-change: bottom, opacity, font-size;
  font-weight: 500;
}

.form-group.custom-file {
  position: relative;
}

.form-group.custom-file input[type=file] {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.form-group.custom-file:after {
  content: "SELECT";
  color: var(--light-gray);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  background: #e6e6e6;
  border-radius: 6px;
  text-transform: uppercase;
  padding: 8px 11px;
  position: absolute;
  top: 8px;
  right: 16px;
}

span.not-valid {
  color: #f00;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  display: block !important;
  top: 100%;
  left: 0;
  position: absolute;
  opacity: 1 !important;
  z-index: 1 !important;
}

span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  display: block !important;
  top: 100%;
  left: 0;
  position: absolute;
  opacity: 1 !important;
  z-index: 1 !important;
}

.contact.case-stydy a {
  color: var(--white);
}

.contact.case-stydy h2.title {
  text-align: center;
  position: relative;
}

.contact.case-stydy ul,
.contact.case-stydy ol {
  list-style: none;
  padding: 0;
}

.contact.case-stydy ul li,
.contact.case-stydy ol li {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
}

.contact.case-stydy .service-box {
  min-height: 35rem;
}

.contact.case-stydy .service-box .title {
  padding: 2rem;
}

.contact.case-stydy .service-box .title h2 {
  font-size: 3.4rem;
  margin-bottom: 5.5rem;
}

.contact.case-stydy .service-box .title .case-detail h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.contact.case-stydy .service-box .title .case-detail .link {
  font-size: 1.4rem;
  font-weight: 400;
}

.contact.case-stydy p {
  margin: 0;
}

.contact-form .wpcf7-form-control-wrap .wpcf7-form-control+.wpcf7-not-valid-tip {
  display: none;
}

div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-not-valid {
  border-bottom-color: var(--primary);
}

.wpcf7-response-output.wpcf7-validation-errors {
  display: none;
}

.contact-form .wpcf7-response-output {
  display: none;
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
  color: var(--primary);
  border: 0;
  display: block !important;
  background: #f3f3f3;
  border-radius: 0.3rem;
  padding: 1rem;
}

div.wpcf7 .ajax-loader {
  background-image: url("https://tamediacdn.techaheadcorp.com/wp-content/uploads/2021/01/27114102/loader.gif");
  background-position: center center;
  background-size: 300%;
  background-repeat: no-repeat;
  display: block;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: all 0.3s ease;
}

div.wpcf7 .ajax-loader.is-active {
  opacity: 1;
}

.portfolio-slider.slider {
  height: 100%;
  margin: 7rem 0 5rem;
  padding: 11rem 0 4rem;
}

.portfolio-slider.slider .content {
  margin-left: 0;
}

.portfolio-slider.slider .content .text h2,
.portfolio-slider.slider .content .text h1 {
  font-family: var(--font-family-primary);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 3rem;
}

.portfolio-slider.slider .content .text h2::after,
.portfolio-slider.slider .content .text h1::after {
  content: none;
}

.portfolio-slider.slider .content .text p {
  color: var(--light-gray);
}

.portfolio-slider.slider .image {
  right: 0;
  position: relative;
  width: 90%;
  display: block;
  margin: 0 auto;
  bottom: 0;
  max-height: none;
}

.portfolio-slider.slider .image.landscape-img.lottie-image::before {
  padding-bottom: 72%;
}

.case-stydy {
  margin: 0 0 16rem;
}

.case-stydy .row [class*=" col-"],
.case-stydy .row [class^=col-] {
  margin-bottom: 3rem;
}

.case-stydy .service-box {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 47rem;
  height: 100%;
}

.case-stydy .service-box.bg-blue {
  background-color: #8888eb;
}

.case-stydy .service-box.bg-teal {
  background-color: #61ccd0;
}

.case-stydy .service-box.bg-red {
  background-color: #f26e78;
}

.case-stydy .service-box img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  object-fit: cover;
  z-index: -2;
  transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
}

.case-stydy .service-box .title {
  position: relative;
  color: var(--white);
  padding: 5rem;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.case-stydy .service-box .title::before {
  content: "";
  position: absolute;
  background-color: var(--black);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
}

.case-stydy .service-box .title h2 {
  font-weight: 500;
  margin-bottom: 6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 4rem;
}

.case-stydy .service-box .title .case-detail {
  margin-top: auto;
}

.case-stydy .service-box .title .case-detail p {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-stydy .service-box .title .case-detail h3 {
  font-weight: 500;
  margin: 0;
}

.case-stydy .service-box .title .case-detail .link {
  color: var(--white);
  font-size: 1.6rem;
}

.case-stydy .service-box:hover img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.case-stydy .service-box:hover .title::before {
  opacity: 0.3;
}

.career.team-slider {
  padding: 12rem 0 10rem;
}

.career.team-slider .image {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.career.team-slider .image::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}

.career.team-slider .image .lottie-wrapper {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.3);
  -moz-transform: translate(-50%, -50%) scale(1.3);
  -webkit-transform: translate(-50%, -50%) scale(1.3);
}

.career.team-slider .content .text {
  margin-top: 4rem;
}

.career.team-slider .content .text h2,
.career.team-slider .content .text h1 {
  margin-bottom: 4.5rem;
}

.home-services .section-head.text-center {
  max-width: 120rem;
  margin: 0 auto 6rem;
}

.home-services .services-box {
  margin: 1.5rem 0;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  position: relative;
}

.home-services .services-box::before {
  content: "";
  display: block;
  padding-bottom: 58%;
}

.home-services .services-box img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
  transition: all 0.3s ease;
}

.home-services .services-box .service-description {
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 25%;
  padding: 4rem 6rem 2rem 3rem;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.home-services .services-box .service-description h3 {
  font-family: var(--font-family-primary);
  font-size: 2.3rem;
  margin: 0;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  bottom: 2rem;
  transition: all 0.3s ease;
}

.home-services .services-box .service-description p {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

.home-services .services-box:hover .service-description {
  background-color: rgba(0, 0, 0, 0.5);
}

.home-services .services-box:hover h3 {
  font-size: 2.4rem;
}

.home-services .services-box:hover img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
}

.portfolio-masonry .masonry-item {
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #deeefa;
  max-width: 100%;
  position: relative;
}

.portfolio-masonry .masonry-item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.portfolio-masonry .masonry-item:nth-child(odd) {
  background-color: #fff7cd;
}

.portfolio-masonry .masonry-item img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-masonry .masonry-item:hover img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.04);
  -moz-transform: translate(-50%, -50%) scale(1.04);
  -webkit-transform: translate(-50%, -50%) scale(1.04);
}

#submit-resume {
  padding: 16rem 0 8rem;
}

.home-clients {
  margin: 0 0 16rem;
}

.home-clients .section-head {
  margin: 0 auto 6rem;
}

.home-clients img {
  margin: 0 0 2rem;
}

.job-section {
  margin: 7rem 0 16rem;
  padding: 11rem 0 0;
  -webkit-box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
}

.job-section p {
  font-size: 1.9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.job-section .breadcrumbs-container img {
  max-width: 1.5rem;
}

.job-section .breadcrumbs {
  list-style: none;
  display: flex;
  padding: 8px 0;
  margin: 0;
  margin-left: 1rem;
}

.job-section .breadcrumbs li {
  color: var(--primary);
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.job-section .breadcrumbs li a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
}

.job-section .breadcrumbs li a:hover {
  transition-delay: 50ms;
  transition: 50ms;
  color: var(--primary);
  text-decoration: underline;
}

.job-section .breadcrumbs li+li::before {
  padding: 0 0.2rem 0 0.6rem;
  color: #000;
  content: "/ ";
}

.job-section .header-content {
  margin: 0 0 4rem;
}

.job-section .header-content h2 {
  font-family: var(--font-family-primary);
  font-size: 3.6rem;
  font-weight: 600;
}

.job-section .header-content P {
  margin: 0 0 2rem;
}

.job-section .description-title {
  font-family: var(--font-family-primary);
  font-size: 2.7rem;
  margin: 3.5rem 0 1rem;
  font-weight: 600;
}

.job-section ul li {
  font-size: 1.9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.job-section .bottom-link {
  margin: 6rem 0 0;
}

.job-form.modal .modal-wrapper .modal-header .modal-heading {
  font-family: var(--font-family-primary);
  font-size: 2.7rem;
  font-weight: 600;
}

.job-form .contact-form {
  padding: 2rem;
  margin: 0;
}

.case-study-banner {
  padding-bottom: 37.5%;
  position: relative;
  overflow: hidden;
  margin: 0 0 10rem;
}

.case-study-banner img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.case-study-banner .caption {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 117rem;
  left: 0;
  right: 0;
  bottom: 15%;
  position: absolute;
  z-index: 1;
  text-align: center;
}

.case-study-banner .caption .banner-logo {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 1rem;
  position: relative;
}

.case-study-banner .caption .banner-logo::after {
  content: "";
  display: block;
  padding-bottom: 37.5%;
}

.case-study-banner .caption .banner-logo img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
}

.case-study-banner .caption h2,
.case-study-banner .caption h1 {
  color: #fff;
  font-weight: 600;
  max-width: 105rem;
  font-size: 5.4rem;
  font-family: var(--font-family-secondary);
  margin: 0 auto;
}

.case-study-mobile {
  margin: 0 0 16rem;
}

.case-study-mobile .image {
  max-width: 90%;
  margin: 0 auto;
}

.case-study-mobile .image.image-border img {
  border-radius: 2.2rem;
  border: 3px solid #000;
}

.case-study-awards {
  margin: 0 0 16rem;
}

.case-study-awards .awards-inner {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.case-study-awards .small-title {
  text-align: center;
  transform: translateY(-50%);
}

.case-study-awards .small-title h4 {
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  padding: 0 2rem;
  margin: 0;
  display: inline-block;
  color: var(--gray);
  background: var(--white);
}

.case-study-awards .awards-logo {
  padding: 0;
  margin: 4rem 0;
  list-style: none;
}

.case-study-awards .awards-logo li {
  margin: 0 6rem 2rem;
}

.case-study-awards .awards-logo li img {
  width: auto;
}

.column-5 {
  margin: 0 0 16rem;
}

.column-5 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.column-5 ul li {
  max-width: 19.7rem;
  margin: 0 2.4rem;
}

.column-5 ul li:first-child {
  margin-left: 0;
}

.column-5 ul li:last-child {
  margin-right: 0;
}

.case-heading {
  margin: 0 0 16rem;
}

.case-heading .header-content {
  text-align: center;
  margin: 0 auto 10rem;
  max-width: 78rem;
}

.case-heading .content {
  margin: 20rem 15rem 0 -9rem;
  padding: 6rem 5rem;
  background-color: #ebebeb;
}

.case-heading .content h2 {
  font-size: 3.6rem;
  font-family: "Rajdhani", sans-serif;
}

.technology-stack {
  margin: 0 0 16rem;
}

.technology-stack h2 {
  margin: 0 0 5rem;
}

.technology-stack .icons-with-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-stack .icons-with-text ul li {
  width: 25rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
}

.technology-stack .icons-with-text ul li p {
  font-size: 1.5rem;
  color: var(--gray);
  font-weight: 400;
  margin: 0;
}

.technology-stack .icons-with-text ul li .icon {
  width: 8.6rem;
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  border: 1px solid var(--gray);
  color: var(--white);
}

.technology-stack .icons-with-text ul li .icon::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.technology-stack .icons-with-text ul li .icon img {
  max-width: 65%;
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: contain;
}

.technology-stack .icons-with-text ul li::before {
  content: "";
  width: 9rem;
  top: 4.3rem;
  left: -4.5rem;
  height: 1px;
  overflow: hidden;
  position: absolute;
  background: url(assets/images/line.svg) no-repeat;
  background-size: 100%;
}

.technology-stack .icons-with-text ul li:nth-child(4n+1):before {
  display: none;
}

.the-result {
  margin: 0 0 16rem;
  position: relative;
}

.the-result .image img {
  max-width: none;
}

.the-result .content {
  margin: 4rem 0 0 -3rem;
  padding: 4rem 6rem;
  background-color: #fff8cd;
  position: relative;
  z-index: 1;
}

.case-summary-details {
  margin: 0 0 16rem;
}

.case-summary-details .summary-content {
  margin: 11rem 0 0 7.8rem;
  max-width: 54rem;
}

.case-summary-details .summary-content h4 {
  font-size: 3.6rem;
  color: #cccccc;
  font-family: "Open Sans", sans-serif;
}

.case-summary-details .image {
  margin-left: 22.6rem;
  position: relative;
}

.case-summary-details .image::before {
  content: "";
  position: absolute;
  background: #f7f6ff;
  display: block;
  width: 110rem;
  height: 110rem;
  top: -20rem;
  left: 13rem;
  z-index: -1;
  border-radius: 50%;
}

.case-summary-details .flex-md-row-reverse {
  margin-top: 0rem;
}

.case-summary-details .flex-md-row-reverse .image {
  margin: -19rem 22.6rem 0 0 !important;
}

.case-summary-details .flex-md-row-reverse .image::before {
  content: "";
  position: absolute;
  background: #f7f6ff;
  display: block;
  width: 110rem;
  height: 110rem;
  top: -20rem;
  left: auto;
  right: 13rem;
  z-index: -1;
  border-radius: 50%;
}

.case-summary-details .flex-md-row-reverse .summary-content {
  margin: 8rem 0 0;
}

.case-summary-details .flex-md-row-reverse+.row {
  margin-top: -5rem;
}

.case-summary-details .flex-md-row-reverse+.row .summary-content {
  margin: 23rem 0 0 7.8rem;
}

.case-summary-details.case-summary-landscape {
  margin: 22rem 0;
}

.case-summary-details.case-summary-landscape .image {
  margin-right: 11.6rem;
  margin-left: 0;
}

.case-summary-details.case-summary-landscape .image::before {
  content: none;
}

.case-summary-details.case-summary-landscape .summary-content {
  margin: 2rem 0 0;
}

.case-summary-details.case-summary-landscape .row+.row {
  margin-top: 20rem;
}

.case-summary-details.case-summary-landscape .flex-md-row-reverse .image {
  margin: 0 11.6rem 0 0 !important;
}

.case-summary-details.case-summary-landscape .flex-md-row-reverse+.row .summary-content {
  margin: 0;
}

.case-summary-details.case-summary-teblet .image {
  margin-left: 19rem;
}

.case-summary-details.case-summary-teblet .row+.row {
  margin-top: 15rem;
}

.case-summary-details.case-summary-teblet .row .summary-content {
  margin-top: 10rem;
}

.case-summary-details.case-summary-teblet .flex-md-row-reverse .image {
  margin: 0 19rem 0 0 !important;
}

.case-testimonial {
  margin: 0 0 16rem;
}

.case-testimonial .header-content {
  max-width: 94rem;
  width: 100%;
}

.case-testimonial h3 {
  margin: 7rem 0 2rem 6rem;
  font-weight: 600;
  font-size: 4.5rem;
  position: relative;
  line-height: 1.2;
}

.case-testimonial p {
  color: var(--gray);
  margin-left: 6rem;
  font-size: 1.8rem;
}

.case-full-img {
  margin: 0 0 16rem;
}

.case-global ul>li span::after {
  content: none;
}

.app-links {
  margin: 0 0 16rem;
  position: relative;
}

.app-links::after {
  content: "";
  position: absolute;
  max-width: 72rem;
  width: 100%;
  height: 2px;
  background-color: #ebebeb;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.app-links a {
  background-color: var(--white);
}

.app-links a:first-child img {
  margin-left: 2rem;
}

.app-links a:last-child img {
  margin-right: 2rem;
}

.app-links a img {
  max-width: 14rem;
  margin: 0 1rem;
}

.we-did {
  margin: 0 0 16rem;
}

.we-did .header-content {
  margin: 0 0 11rem;
}

.we-did .header-content p {
  max-width: 91rem;
}

.we-did .image {
  max-width: 27rem;
  margin: 0 3rem;
}

.we-did .image-tablet {
  max-width: 45rem;
  width: 100%;
  margin: 0 6rem;
}

.we-did .image-tablet:first-child {
  margin-left: 0;
}

.we-did .image-tablet:last-child {
  margin-right: 0;
}

.case-global {
  margin: 0 0 10rem;
}

.case-global.cdr .section-head {
  margin: 0;
}

.case-bottom-heading {
  margin: 0 0 16rem;
}

.case-bottom-heading .header-content {
  text-align: center;
  margin: 0 auto 8rem;
  max-width: 112rem;
}

.case-bottom-heading .case-bottom-img {
  position: relative;
  max-width: 83.3rem;
  width: 100%;
  margin: 0 auto;
}

.case-bottom-heading .case-bottom-img::after {
  content: "";
  display: block;
  padding-bottom: 79%;
}

.case-bottom-heading .case-bottom-img img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.case-study-wireframe {
  margin: 0 0 16rem;
}

.case-study-wireframe ul {
  list-style: none;
  padding: 0;
}

.case-study-wireframe ul li {
  flex-basis: 62.5rem;
  flex-shrink: 0;
  margin: 0 1.15rem;
}

.full-width-text {
  margin: 0 0 9rem;
}

.full-width-text h4 {
  font-size: 3.8rem;
  text-align: center;
  font-weight: 100;
}

.landing-page-new.slider .content {
  max-width: 60rem;
  margin-left: 14rem;
}

.landing-page-new.slider .content .text {
  margin-top: 12rem;
}

.landing-page-new.slider .content .text h1 {
  font-size: 4.5rem;
  line-height: 1.3;
  font-weight: 400;
}

.landing-page-new.slider .content .text h1::after {
  content: none;
}

.landing-page-new.slider .image {
  max-height: 75vh;
  bottom: 4rem;
}

.landing-page-new.slider .image::before {
  padding-bottom: 130%;
}

.landing-page-new.our-work {
  padding: 0 0 16rem;
}

.landing-page-new.our-work ul {
  margin: 0 5rem;
}

.landing-page-new.our-work .awards-box {
  border: 0;
}

.landing-page-new.our-work .header-content {
  max-width: 85rem;
}

.landing-page-new.global {
  background-color: var(--white);
  margin-top: -13rem;
}

.landing-page-new.global ul {
  padding: 0 0 5rem;
}

.landing-page-new.global ul li>span {
  font-family: var(--font-family-primary);
}

.landing-page-new.global ul li>span>span {
  font-family: var(--font-family-secondary);
  font-weight: 500;
}

.landing-page-new.global ul li>span>span::after {
  content: "+";
  color: var(--black);
  top: -2rem;
  right: -0.5rem;
}

.landing-page-new.global ul li>span::after {
  content: "";
  width: 6rem;
  height: 0.4rem;
  background: #ccc;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  -moz-transform: none;
  -webkit-transform: none;
}

.landing-page-new.global ul li::after {
  content: none;
}

.landing-page-new.fortune {
  margin: 2rem 0 10rem;
}

.landing-page-new.fortune .clients-logo {
  background: var(--white);
}

.success-stories {
  margin: 0 0 5rem;
}

.success-stories .text {
  margin: 0 0 6.8rem;
}

.success-stories .row>.col:first-child .box,
.success-stories .row>[class*=col-]:first-child .box {
  margin-right: 0;
}

.success-stories .row>.col:last-child .box,
.success-stories .row>[class*=col-]:last-child .box {
  margin-left: 0;
}

.success-stories .box {
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.1);
  padding: 3.6rem 4.5rem;
  max-width: 38rem;
  min-height: 44rem;
  margin: 0 auto;
  border-radius: 1.8rem;
  display: flex;
  flex-direction: column;
}

.success-stories .box h2 {
  font-family: var(--font-family-primary);
  font-size: 2.8rem;
  color: var(--dark-gray);
  text-align: center;
  margin: 0 0 2.4rem;
  font-weight: 300;
}

.success-stories .box p {
  font-size: 2rem;
  text-align: center;
  color: var(--dark-gray);
}

.success-stories .box img {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  display: block;
  margin: 4rem auto 1rem;
}

.success-stories .box .name {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-top: 2rem;
  margin-bottom: 0;
}

.success-stories .box .title {
  color: var(--dark-gray);
  font-size: 1.9rem;
}

.success-stories .box.large-box {
  max-width: 42rem;
  min-height: 54rem;
}

.success-stories .box .flex-fill {
  max-width: 28rem;
  margin: 0 auto;
}

.director {
  margin: 0 0 14rem;
}

.director .text {
  max-width: 52rem;
  margin-left: 2rem;
}

.director .text p {
  font-size: 2.4rem;
  color: var(--dark-gray);
}

.director .text .name {
  line-height: 1.4;
  font-size: 2.2rem;
}

.director .text .name strong {
  display: block;
}

.app-development-slider.slider {
  height: 100%;
}

.app-development-slider.slider .content .text {
  margin-top: 14rem;
}

.app-development-logo ul {
  list-style: none;
  padding-left: 7rem;
  margin-bottom: 4rem;
}

.app-development-logo ul li {
  width: 20%;
  margin: 0;
  text-align: center;
}

.app-development-logo ul li img {
  width: auto;
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

.app-development-form {
  margin-right: 17rem;
  margin-top: 20rem;
}

.app-development-form .contact-form {
  margin: 0;
  max-width: 45.3rem;
  padding: 6.1rem 4.1rem 4.1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  position: relative;
}

.app-development-form .contact-form .patch {
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--primary);
  display: block;
  position: absolute;
  border-radius: 0.3rem;
}

.app-development-form .contact-form .patch::before,
.app-development-form .contact-form .patch::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background-color: var(--primary);
  position: absolute;
  border-radius: 0.4rem;
}

.app-development-form .contact-form .patch.left {
  left: -2.6rem;
}

.app-development-form .contact-form .patch.left::before {
  right: 0rem;
}

.app-development-form .contact-form .patch.top {
  top: -2.6rem;
}

.app-development-form .contact-form .patch.bottom {
  bottom: -2.6rem;
}

.app-development-form .contact-form .patch.right {
  right: -2.6rem;
}

.app-development-form .contact-form .patch.right.top::before {
  right: 2.6rem;
  bottom: 0;
}

.app-development-form .contact-form .patch.right.top::after {
  bottom: -3.6rem;
  left: 0rem;
}

.app-development-form .contact-form .patch.left.bottom::before {
  bottom: 2.6rem;
}

.app-development-form .contact-form .patch.left.bottom::after {
  left: 2.6rem;
}

.app-development-form .contact-form .patch.left.top::before {
  left: 2.6rem;
  bottom: 0;
}

.app-development-form .contact-form .patch.left.top::after {
  bottom: -3.6rem;
  right: 0rem;
}

.app-development-chartboats.chatboats {
  margin: 0 0 16rem;
}

.app-development-chartboats.chatboats .image {
  margin: 0 5rem;
}

.app-development-chartboats.chatboats .text {
  margin: 8rem 8rem 0 10rem;
}

.landing-page-portfolio ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.landing-page-portfolio ul li {
  max-width: 96rem;
  margin: 0 0 5rem;
}

.landing-page-portfolio ul li:nth-child(2n) {
  margin-left: auto;
}

.landing-page-banner {
  position: relative;
  margin: 0 0 10rem;
  padding: 5rem 0;
  background-color: var(--black);
}

.landing-page-banner>img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.4;
}

.landing-page-banner .banner-logo {
  max-width: 18rem;
  width: 100%;
  margin: 3rem 0 2rem;
  position: relative;
}

.landing-page-banner .banner-logo img {
  width: 100%;
}

.landing-page-banner h2,
.landing-page-banner h1 {
  color: #fff;
  font-weight: 600;
  max-width: 105rem;
  font-size: 5.2rem;
  font-family: "Rajdhani", sans-serif;
  margin: 0 auto 1.8rem;
}

.landing-page-banner p {
  color: #fff;
}

.landing-page-banner .contact-form {
  margin: 7rem 0 0;
}

.landing-page-banner .contact-form .form-group {
  margin: 0 0 3rem;
}

.landing-page-banner .form-group {
  color: var(--white);
}

.landing-page-banner .form-group .form-control {
  color: var(--white);
  height: 38px;
  font-size: 1.8rem;
}

.landing-page-banner .form-group .form-control::-webkit-input-placeholder {
  color: var(--white);
}

.landing-page-banner .form-group .form-control::-moz-placeholder {
  color: var(--white);
}

.landing-page-banner .form-group .form-control:focus~.label-wrap .label {
  bottom: 90%;
  font-size: 1.2rem;
}

.landing-page-banner .form-group .label-wrap .label {
  color: var(--white);
  font-size: 1.8rem;
}

.landing-page-banner .form-group .label-wrap::after {
  background-color: var(--white);
}

.landing-page-container {
  margin: 0 0 10rem;
}

.landing-page-container.bg-gray {
  background-color: #F8F8F8;
  padding: 6rem 0;
  position: relative;
  z-index: 0;
}

.landing-page-container.bg-gray .btn-animate-1 {
  z-index: 1;
}

.landing-page-container.bg-gray .btn-animate-1::before {
  background: #d4d4d4;
}

.landing-page-container.bg-gray .btn-animate-1:hover::before {
  background: #c7c7c7;
}

.landing-page-container.fortune {
  margin: 10rem 0 16rem;
}

.landing-page-container .lottie-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-left: -1.5rem;
}

.landing-page-container .lottie-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.landing-page-container .lottie-wrapper>* {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 105%;
  height: 105%;
  transform: translate(-50%, -50%) scale(1.25);
  -moz-transform: translate(-50%, -50%) scale(1.25);
  -webkit-transform: translate(-50%, -50%) scale(1.25);
}

/* app-development responsive */
.thank-you {
  padding: 16rem 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.thank-you .lottie-wrapper {
  max-width: 24rem;
  margin: 0 auto;
}

.thank-you h1 {
  font-weight: 600;
  font-size: 9rem;
}

.thank-you h1::after {
  content: "";
  width: 9.5rem;
  height: 0.45rem;
  display: block;
  margin: 1rem auto;
  background-color: var(--primary);
  border-radius: 0.45rem;
}

.thank-you p {
  color: var(--gray);
  margin: 0 auto 3rem;
  font-weight: 400;
}

.blog-headline {
  margin: 7rem 0;
  -webkit-box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
}

.blog-headline .content .text {
  margin-top: 16rem;
}

.blog-headline .content .text h2,
.blog-headline .content .text h1 {
  font-family: var(--font-family-primary);
  font-size: 7.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.blog-headline .content .text p {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 2.5rem;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.3;
  color: var(--light-gray);
}

.blog {
  margin: 7rem 0;
  padding: 11rem 0 0;
  -webkit-box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
}

.blog .blog-carousel-wrap {
  background: var(--white);
  padding: 0;
}

.blog .blog-carousel-wrap .blog-carousel-main {
  overflow: hidden;
  position: relative;
  height: auto !important;
}

.blog .blog-carousel-wrap .blog-carousel-main .item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.blog .blog-carousel-wrap .blog-carousel-main .item::after {
  content: "";
  display: block;
  padding-bottom: 45%;
}

.blog .blog-carousel-wrap .blog-carousel-main .item img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption {
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 2.2rem 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text {
  max-width: 82rem;
  margin: 0 auto;
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text h2 {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text a {
  color: var(--white);
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text p {
  font-size: 1.6rem;
  color: var(--white);
}

.blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text p a {
  font-weight: 500;
}

.blog .blog-carousel-wrap .lSSlideOuter .lSPager.lSpg {
  margin-top: -3.2rem !important;
  margin-bottom: 2rem;
}

.blog .blog-carousel-wrap .lSSlideOuter .lSPager.lSpg>li {
  padding: 0 2px;
}

.blog .blog-carousel-wrap .lSSlideOuter .lSPager.lSpg>li a {
  background-color: rgba(235, 235, 235, 0.42);
  border-radius: 0;
  height: 0.3rem;
  width: 4rem;
}

.blog .blog-carousel-wrap .lSSlideOuter .lSPager.lSpg>li.active a {
  background-color: var(--white);
}

.blog-title {
  margin: 0 0 4rem;
  position: relative;
}

.blog-title h2 {
  margin: 0;
  font-size: 3rem;
  padding: 0 2.6rem;
  letter-spacing: -0.14rem;
  display: inline-block;
  background: var(--white);
  color: var(--dark-gray);
  font-family: "Open Sans", sans-serif;
}

.blog-title::after {
  content: "";
  top: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  border-top: 1px solid #ccc;
}

.blog-post {
  margin: 7rem 0 2rem;
}

.blog-post .row .col-sm-6 {
  margin-bottom: 3rem;
}

.blog-post .blog-listing {
  transition: all 0.3s;
  height: 100%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-post .blog-listing .image {
  position: relative;
  padding-bottom: 56.56%;
  overflow: hidden;
}

.blog-post .blog-listing .image img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.blog-post .blog-listing .listing-content {
  padding: 2rem;
  padding-left: 0;
  border-top: 0;
  flex-grow: 1;
}

.blog-post .blog-listing .listing-content .title {
  font-family: var(--font-family-primary);
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.blog-post .blog-listing .listing-content .text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray);
}

.blog-post .blog-listing .blog-author {
  display: flex;
  align-items: center;
}

.blog-post .blog-listing .blog-author .user-image {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  overflow: hidden;
}

.blog-post .blog-listing .blog-author .user-image img {
  width: 100%;
}

.blog-post .blog-listing .blog-author .name {
  margin-left: 1rem;
}

.blog-post .blog-listing .blog-author .name h4 {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.2rem;
}

.blog-post .blog-listing .blog-author .name p {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 600;
  margin: 0;
}

.blog-post .blog-listing .blog-social-icon {
  margin-left: auto;
}

.blog-post .blog-listing .blog-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-post .blog-listing .blog-social-icon ul li {
  display: inline-block;
}

.blog-post .blog-listing .blog-social-icon ul li a {
  display: block;
}

.blog-post .blog-listing .blog-social-icon ul li a img {
  width: 2.4rem;
  height: 2.4rem;
}

.blog-post .blog-listing:hover {
  transform: translateY(-1rem);
  -moz-transform: translateY(-1rem);
  -webkit-transform: translateY(-1rem);
}

.two-column-blogs-top {
  padding: 11rem 0 0;
  -webkit-box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
}

.trending-blogs {
  margin: 0 0 10rem;
}

.blog-listing-large {
  margin: 0 0 4rem;
}

.blog-listing-large .blog-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin: 0 0 1.6rem;
}

.blog-listing-large img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.6s;
}

.blog-listing-large .blog-excerpt h4 {
  line-height: 1.4;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.blog-listing-large .blog-excerpt h4 a {
  color: var(--black);
}

.blog-listing-large .blog-excerpt p {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray);
}

.blog-listing-large:hover .blog-thumbnail img {
  transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.most-viewed {
  margin: 0 0 10rem;
}

.most-viewed .blog-listing-small {
  margin: 0 0 5rem;
  overflow: hidden;
}

.most-viewed .blog-listing-small .blog-thumbnail {
  width: 9rem;
  float: left;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 0 0;
}

.most-viewed .blog-listing-small .blog-thumbnail::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.most-viewed .blog-listing-small .blog-thumbnail img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
  transition: all 0.4s ease;
}

.most-viewed .blog-listing-small .blog-excerpt h4 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}

.most-viewed .blog-listing-small .blog-excerpt h4 a {
  color: var(--dark-gray);
}

.most-viewed .blog-listing-small .blog-excerpt p {
  font-size: 1.4rem;
}

.most-viewed .blog-listing-small:hover .blog-thumbnail img {
  transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.pagination {
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.pagination .page-numbers {
  background-color: #f1f1f1;
  padding: 5px 13px;
  color: #717171;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  border-radius: 0.3rem;
}

.pagination .page-numbers.current {
  background-color: var(--primary) !important;
  color: var(--white);
}

.pagination .page-numbers:hover {
  background-color: var(--primary);
  color: var(--white);
}

.blog-subscribe {
  background-color: #4a5ee5;
  padding: 3rem;
  color: #fff;
  position: relative;
}

.blog-subscribe .title {
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: -0.02rem;
  margin: 0 0 1rem;
}

.blog-subscribe .text {
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.15rem;
  margin: 0 0 2.5rem;
}

.blog-subscribe .blog-search {
  display: flex;
  justify-content: center;
  padding: 0;
  max-width: 480px;
}

.blog-subscribe .blog-search .search-form {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  border: 0;
}

.blog-subscribe .blog-search .search-form input[type=email] {
  height: 50px;
  padding-left: 15px;
  padding-right: 118px;
  line-height: 50px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.03rem;
  width: 100%;
  border: 0;
  font-family: "Open Sans", sans-serif;
  border-radius: 0.5rem;
}

.blog-subscribe .blog-search .search-form input[type=email]:focus-visible {
  outline: 0;
}

.blog-subscribe .blog-search .search-form .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.blog-subscribe .blog-search .search-form .search-btn label {
  color: #fff;
  padding-left: 0;
  cursor: pointer;
  line-height: 1;
  font-size: 1.6rem;
  padding: 1rem 1rem 1.2rem;
  margin: 0;
  font-weight: 600;
}

.blog-subscribe .blog-search .search-form .search-btn #searchsubmit {
  display: none;
}

.blog-subscribe .blog-search .search-form .bottom-line {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #a5a5a5;
  transition: all 0.4s ease;
}

.blog-subscribe .blog-search .search-form .search-text:focus+.bottom-line {
  width: 100%;
}

.blog-subscribe .close-subs {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #222;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  display: none;
}

.blog-modal .blog-subscribe {
  min-width: 600px;
}

.emaillist {
  position: relative;
  max-width: 480px;
}

.emaillist .es-field-wrap label {
  display: flex;
  justify-content: center;
  padding: 0;
}

.emaillist .es-field-wrap label input[type=email] {
  height: 50px;
  padding-left: 15px;
  padding-right: 118px;
  line-height: 50px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.03rem;
  width: 100%;
  border: 0;
  font-family: "Open Sans", sans-serif;
  border-radius: 0.5rem;
  outline: 0;
}

.emaillist .es-field-wrap label input[type=email]:focus-visible {
  outline: 0;
}

.emaillist input[type=submit] {
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 1.6rem;
  padding: 1rem 1rem 1.2rem;
  margin: 0;
  font-weight: 600;
  background-color: #f7403a;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 0;
  border-radius: 0.5rem;
  position: absolute;
  right: 6px;
  top: 6px;
}

.es_subscription_message {
  max-width: 540px;
  display: block;
}

.es_subscription_message.success {
  color: lime;
}

.es_subscription_message.error {
  color: #ff7a7a;
}

.blog-single {
  margin: 7rem 0 0;
  padding: 11rem 0 0;
  -webkit-box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 19px 13px -21px rgba(0, 0, 0, 0.15);
}

.blog-single .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.blog-single .embed-container iframe,
.blog-single .embed-container object,
.blog-single .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-single .header-content {
  margin: 0 0 2rem;
}

.blog-single .header-content h2,
.blog-single .header-content h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 4rem;
  line-height: 1.33;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.blog-single .header-content h3,
.blog-single .header-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  color: var(--gray);
}

.blog-single .blog-author {
  display: flex;
  align-items: center;
}

.blog-single .blog-author .image {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cccccc;
}

.blog-single .blog-author .image img {
  width: 100%;
}

.blog-single .blog-author .name {
  margin-left: 1rem;
}

.blog-single .blog-author .name h4 {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.blog-single .blog-author .name p {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 600;
  margin: 0;
}

.blog-single .blog-social-icon {
  margin-left: auto;
}

.blog-single .blog-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: static;
  line-height: 0 !important;
}

.blog-single .blog-social-icon ul li {
  display: inline-block;
}

.blog-single .blog-social-icon ul li a {
  display: block;
  padding: 0;
}

.blog-single .blog-social-icon ul li a img {
  width: 2.4rem;
  height: 2.4rem;
}

.blog-single .blog-content {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 32px;
  letter-spacing: -0.004em;
  color: rgba(0, 0, 0, 0.9);
  margin: 2.5rem 0 2rem;
}

.blog-single .blog-content img {
  width: auto;
  display: block;
  margin: 30px auto;
}

.blog-single .blog-content img.aligncenter {
  width: auto;
  display: block;
  margin: 0 auto 4rem;
}

.blog-single .blog-content img.size-thumbnail {
  max-width: 17rem;
  display: block;
  margin: 12rem auto !important;
}

.blog-single .blog-content h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  margin-top: 3.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.6px;
  color: #000;
}

.blog-single .blog-content h2 strong,
.blog-single .blog-content h2 b {
  font-weight: bold;
}

.blog-single .blog-content h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 3.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.6px;
  color: #000;
}

.blog-single .blog-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  letter-spacing: -0.6px;
  color: rgba(0, 0, 0, 0.84);
}

.blog-single .blog-content h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.84);
}

.blog-single .blog-content p {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 32px;
  margin: 0 0 2.4rem;
  letter-spacing: -0.004em;
  color: rgba(0, 0, 0, 0.9);
}

.blog-single .blog-content a {
  text-decoration: underline;
  color: #007bff !important;
}

.blog-single .blog-content ul,
.blog-single .blog-content ol {
  margin: 2rem 0;
}

.blog-single .blog-content ul li,
.blog-single .blog-content ol li {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 32px;
  margin: 0 0 1rem;
  letter-spacing: -0.004em;
  color: rgba(0, 0, 0, 0.9);
}

.blog-single .blog-content blockquote {
  font-family: "Merriweather", serif;
  margin: 0 0 4rem;
  color: #666;
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 3rem 4rem;
}

.blog-single .blog-content blockquote p {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 32px;
  margin: 0;
  letter-spacing: -0.004em;
  color: rgba(0, 0, 0, 0.84);
  word-break: break-word;
}

.blog-single .blog-content blockquote p a {
  color: var(--primary);
  text-decoration: none;
  display: block;
}

.blog-single .blog-content blockquote p a+br {
  display: none;
}

.blog-single .blog-content .blog-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.blog-single .blog-content .blog-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-single .blog-content .blog-video.scaled-video {
  margin: 16% auto;
  transform: scale(1.4);
}

.blog-single .blog-content .blog-getInTouch {
  border: 1px solid #cccccc;
  border-radius: 0.4rem;
  padding: 2rem;
  margin: 0 0 5rem;
}

.blog-single .blog-content .blog-getInTouch .content {
  width: calc(100% - 22rem);
}

.blog-single .blog-content .blog-getInTouch .content .title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.blog-single .blog-content .blog-getInTouch .content .text {
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.8;
}

.blog-single .blog-content .blog-getInTouch .link-btn {
  margin-left: auto;
}

.blog-single .blog-content .blog-getInTouch .link-btn .btn {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
}

.blog-single .blog-content .blog-quick-links {
  background-color: #ebebeb;
}

.blog-single .blog-content .blog-quick-links h4 {
  background-color: #ff1816;
  color: #fff;
  padding: 0.5rem;
  padding-left: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.blog-single .blog-content .blog-quick-links a {
  text-decoration: none;
}

.blog-single .blog-content .blog-quick-links a:hover {
  color: rgba(0, 0, 0, 0.84);
  text-decoration: underline;
}

.blog-single .blog-content .blog-quick-links ol,
.blog-single .blog-content .blog-quick-links ul {
  padding: 0.5rem;
  padding-left: 4rem;
}

.blog-single .blog-follow {
  margin: 5rem 0;
}

.blog-single .blog-follow .tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-single .blog-follow .tags ul li {
  display: inline-block;
}

.blog-single .blog-follow .tags ul li .tag-btn {
  color: #717171;
  font-size: 1.5rem;
  background-color: #f1f1f1;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  display: block;
  margin-right: 0.5rem;
}

.blog-single .blog-post {
  padding: 10rem 0;
  background: var(--white);
  margin: 0;
}

.blog-single .blog-post .blog-listing .listing-content {
  padding: 1.5rem 0;
  border: 0;
}

.blog-single .blog-post .blog-listing .listing-content .title {
  font-family: "Merriweather", serif;
  font-size: 1.8rem;
  color: var(--dark-gray);
  font-weight: 500;
  line-height: 1.75;
}

.blog-single .blog-post .blog-listing .blog-author .name h4 {
  color: var(--dark-gray);
}

.blog-single .author-detail {
  border-top: 1px solid #cccccc;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.blog-single .author-detail .image {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cccccc;
}

.blog-single .author-detail .image img {
  width: 100%;
}

.blog-single .author-detail .link {
  margin-top: 1rem;
  display: inline-block;
  color: var(--light-gray);
  font-size: 14px;
}

.blog-single .author-detail .link:hover {
  color: var(--primary);
}

.blog-single .author-detail .link .btn {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.blog-single .author-detail .details {
  width: calc(100% - 8rem);
  padding: 0 1.5rem;
}

.blog-single .author-detail .details .written-by {
  font-family: var(--font-family-primary);
  color: var(--gray);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-single .author-detail .details .name {
  font-family: var(--font-family-primary);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.blog-single .author-detail .details .content {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
  margin: 0;
}

.blog-single .sidebar {
  position: fixed;
  display: none;
  top: 12rem;
  height: calc(100vh - 12rem);
  overflow-y: auto;
  padding-right: 6px;
}

.blog-single .sidebar::-webkit-scrollbar {
  width: 3px;
}

.blog-single .sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #8c92ab;
  border-radius: 10px;
}

.blog-single .sidebar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.blog-single .sidebar h3 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
}

.blog-single .sidebar ul {
  list-style: none;
  padding: 0;
}

.blog-single .sidebar ul li a {
  color: var(--light-gray);
  font-size: 1.3rem;
  line-height: 2;
  display: block;
}

.blog-single .sidebar ul li a:hover {
  color: var(--primary);
}

.blog-single .sidebar .social-links {
  border-top: 1px solid #d6d6d6;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.blog-single .blog-post-wrap {
  position: relative;
  background: var(--white);
}

.press.blog-content {
  margin-bottom: 12rem;
}

.blog-banner .image {
  position: fixed;
  max-width: 258px;
  width: 100%;
  margin: 0 auto;
  display: none;
  top: 12rem;
  transform: translateX(3rem);
  -moz-transform: translateX(3rem);
  -webkit-transform: translateX(3rem);
}

.blog-banner .image a {
  display: block;
}

.insight .blog-content {
  margin: 0 -1.5rem 16rem;
}

.insight .blog-content .banner-image {
  margin: 5rem 0 3rem;
  width: 100%;
}

.insight .blog-content .iot-slider {
  padding: 5rem 0 0;
  background: var(--white);
}

.insight .author-detail .details .written-by {
  font-weight: 500;
}

.insight .author-detail .details .name {
  margin-top: 0;
}

.insight .author-detail .details .content {
  line-height: 1.7;
  font-family: var(--font-family-primary);
}

.service-detail-slider.slider {
  background: var(--white);
}

.service-detail-slider.slider .content {
  margin-left: 10rem;
}

.service-detail-slider.slider .content .text h2,
.service-detail-slider.slider .content .text h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 5.4rem;
  font-weight: 700;
  margin-bottom: 4.5rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.service-detail-slider.slider .content .text h2::after,
.service-detail-slider.slider .content .text h1::after {
  content: none;
}

.service-detail-slider.slider .content .text p {
  color: var(--light-gray);
}

.service-detail-slider.slider .image {
  width: 57rem;
  bottom: 0;
  right: 10rem;
  max-width: 100%;
  position: relative;
}

.service-detail-slider.slider .image::before {
  content: "";
  display: block;
  padding-bottom: 88%;
}

.service-detail-slider.slider .image img {
  object-fit: contain;
}

.service-detail-center-wrap {
  margin: 0 0 6rem;
}

.service-detail-center-wrap .header-content {
  max-width: 125rem;
  margin: 0 auto;
  text-align: center;
}

.service-detail-center-wrap .header-content p {
  margin: 0 0 2.4rem;
}

.service-detail-center-wrap .header-content ul {
  list-style: none;
  padding: 0;
}

.service-detail-center-wrap .header-content ul li {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
}

.service-detail-left-wrap {
  margin: 10rem 0 8rem;
}

.service-detail-left-wrap .header-content {
  max-width: 105rem;
}

.service-detail-left-wrap .header-content .header-content p {
  margin: 0 0 2.4rem;
}

.image-small-center {
  max-width: 75rem;
  display: block;
  margin: 0 auto;
}

.image-medium-center {
  max-width: 88rem;
  display: block;
  margin: 0 auto;
}

.service-detail-list-wrap {
  margin: 10rem 0;
}

.service-detail-list-wrap .header-content {
  max-width: 92rem;
  margin: 0 auto;
  text-align: center;
}

.service-detail-list-wrap .header-content h2 .small-font {
  font-size: 2.8rem;
  display: block;
  margin-top: 0.5rem;
}

.service-detail-list-wrap .header-content h2 .small-font a {
  color: var(--black);
}

.service-detail-list-wrap .header-content img {
  max-width: 9rem;
  margin-bottom: 5rem;
}

.service.contact.case-stydy {
  margin: 16rem 0;
}

.service.contact.case-stydy .service-box img {
  z-index: 0;
}

.service.contact.case-stydy .service-box .title {
  z-index: 1;
}

.service.contact.case-stydy.top {
  margin: 0 0 10rem;
}

.service.contact.case-stydy .trending-blogs {
  margin: 0;
}

.service.contact.case-stydy .blog-listing-large {
  margin: 0;
}

.service.contact.case-stydy .blog-listing-large .blog-excerpt h4 {
  font-size: 2.1rem;
}

.service-wrap {
  position: relative;
  padding: 0 1.5rem;
  display: block;
}

.service-wrap .sidebar {
  position: fixed;
  display: none;
  top: 50%;
  transform: translateY(-50%);
}

.service-wrap .sidebar h3 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
}

.service-wrap .sidebar ul {
  list-style: none;
  padding: 0;
}

.service-wrap .sidebar ul li a {
  color: var(--light-gray);
  font-size: 1.3rem;
  line-height: 2;
  display: block;
}

.service-wrap .sidebar ul li a:hover {
  color: var(--primary);
}

.service-wrap .sidebar ul li a.active {
  color: var(--primary);
}

.service-wrap .sidebar ul li a.active::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-color: var(--primary);
}

.service-wrap .sidebar .social-links {
  border-top: 1px solid #d6d6d6;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.blog-service {
  padding: 20rem 0;
}

.blog-service .carousel-wrapper::after {
  z-index: 1;
}

.blog-service h3 {
  margin: 0;
}

.blog-service p {
  margin: 0 65% 3.6rem 0;
}

.blog-service .carousel-wrapper {
  margin: 0 0 3rem;
  padding: 4rem 0 6rem 12rem;
  position: relative;
}

.blog-service .carousel-wrapper::after {
  content: "";
  position: absolute;
  left: 25rem;
  top: 0;
  width: 200%;
  height: 100%;
  display: block;
  z-index: -1;
  border-radius: 10px;
  background: #f4f4f4;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .thumbnail {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .thumbnail::before {
  content: "";
  display: block;
  padding-bottom: 58%;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .thumbnail img {
  object-fit: cover;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .blog-title {
  margin: 0;
  color: #333333;
  background-color: var(--white);
  font-size: 2rem;
  line-height: 1.5;
  border: 1px solid #cccccc;
  border-top: none;
  padding: 2rem 3rem;
  border-radius: 0 0 1rem 1rem;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .blog-title a {
  color: #333333;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item .blog-title a:hover {
  box-shadow: inset 0 -1px #333333;
}

.blog-service .carousel-wrapper .blog-carousel .blog-item:hover .thumbnail img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.05);
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -webkit-transform: translate(-50%, -50%) scale(1.05);
}

.blog-service .carousel-wrapper .prev {
  top: 50%;
  left: 0;
  position: absolute;
  margin-top: -2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  display: inline-block;
  background-image: url(assets/images/prev.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 9;
}

.grid-item {
  height: 100%;
  padding: 3.5rem 0 2rem;
  position: relative;
}

.grid-item .icon {
  width: 8.8rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 1rem;
}

.grid-item .icon-small {
  width: 3rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 1rem;
}

.grid-item .grid-contnet {
  display: inline-block;
  width: calc(100% - 12rem);
  margin: 0 0 0 2rem;
  vertical-align: top;
}

.grid-item .grid-contnet p {
  font-size: 1.9rem;
  line-height: 1.6;
}

.service-faq {
  margin: 0 0 16rem;
}

.flutter.future-retail ul li {
  width: calc(33.3333333333% - 2rem);
  margin: 0 1.5rem;
}

.flutter.building-apps,
.flutter.thinkahead {
  margin: 0 0 12rem;
}

.flutter .grid-item .grid-contnet {
  width: 100%;
  margin: 0;
}

.industries-slider.slider .image img {
  object-fit: contain;
}

.chain-processes {
  margin: 0 auto 11rem;
  max-width: 70%;
}

.chain-processes h2 {
  text-align: center;
}

.chain-processes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 5rem;
}

.chain-processes ul li {
  width: calc(33.3333333333% - 2rem);
  margin: 0 1rem;
}

.chain-processes ul li .box {
  margin: 0 0 5rem;
}

.chain-processes ul li .box .content {
  background: url(assets/images/supply-chain.svg) no-repeat;
  background-position: left center;
  background-size: contain;
}

.chain-processes ul li .box .content h4 {
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  padding: 2rem 0;
  margin-left: 3.5rem;
}

.industries.iot-service {
  padding: 0;
  margin: 0 0 16rem;
}

.industries.building-apps,
.industries.thinkahead {
  margin: 0 0 16rem;
}

.industries.building-apps .grid-item .grid-contnet,
.industries.thinkahead .grid-item .grid-contnet {
  width: 100%;
  margin: 0;
}

.slider-wrapper {
  display: flex;
  position: relative;
  width: 78%;
  background: #ddd;
  overflow: hidden;
  padding-bottom: 40%;
  margin: 0 auto;
  border-radius: 1rem;
}

.slider-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slider-wrapper ul.slider-img {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  transition: 0.5s;
  z-index: 1;
}

.slider-wrapper ul.slider-img li {
  flex: 1 0 100%;
  position: relative;
}

.slider-wrapper ul.slider-img li .caption {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4705882353);
  transition: all 0.3s ease;
}

.slider-wrapper ul.slider-img li .caption .content {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 117rem;
  left: 0;
  right: 0;
  bottom: 10%;
  position: absolute;
  z-index: 1;
  text-align: center;
}

.slider-wrapper ul.slider-img li .caption .content .logo {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 1rem;
  position: relative;
}

.slider-wrapper ul.slider-img li .caption .content .logo::after {
  content: "";
  display: block;
  padding-bottom: 30%;
}

.slider-wrapper ul.slider-img li .caption .content .logo img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
}

.slider-wrapper ul.slider-img li .caption .content h2 {
  color: #fff;
  font-weight: 600;
  max-width: 105rem;
  font-size: 4.8rem;
  font-family: var(--font-family-secondary);
  margin: 0 auto;
}

.slider-wrapper ul.slider-img li .caption p {
  font-size: 18px;
  max-width: 38rem;
}

.slider-wrapper ul.slider-img li:hover .caption {
  opacity: 1;
}

.slider-wrapper ul.slider-img li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-wrapper ul.slider-arrow {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.slider-wrapper ul.slider-arrow li {
  cursor: pointer;
  height: 100%;
  padding: 0 3rem;
  opacity: 0.4;
  transition: 0.5s;
}

.slider-wrapper ul.slider-arrow li.arrow-left {
  position: absolute;
  z-index: 2;
  left: 0;
  opacity: 0.4;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
}

.slider-wrapper ul.slider-arrow li.arrow-right {
  position: absolute;
  right: 0;
  z-index: 2;
  opacity: 0.4;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.slider-wrapper ul.slider-arrow li img {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  width: 2rem;
}

.slider-wrapper ul.slider-arrow li:hover {
  opacity: 1;
}

.slider-dot {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15px;
  display: flex;
  transform: translateX(-50%);
}

.slider-dot li {
  width: 1rem;
  height: 1rem;
  display: block;
  background-color: var(--white);
  opacity: 0.5;
  margin: 0 0.6rem;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot li.active {
  opacity: 1;
}

.iot.smart-retail {
  margin: 0;
}

.iot.future-retail {
  margin: 0;
  padding: 16rem 0 0;
}

.iot.customer-experience {
  margin: 0;
  padding: 12rem 0 0;
}

.iot.about-awards {
  padding: 8rem 0 16rem;
}

.iot.about-slider.slider {
  padding: 19rem 0 3rem;
}

.iot.about-slider.slider .content .text h2 {
  font-size: 5.5rem;
}

.iot.about-slider.slider .image {
  bottom: 0;
}

.iot.case-stydy {
  margin: 0 0 12rem;
}

.iot .btn-animate-1 {
  padding: 0;
  margin-top: 0;
}

.iot .btn-animate-1::before {
  content: none;
}

.iot:hover {
  padding-left: 0;
}

.iot-blog {
  margin: 0 0 16rem;
}

.iot-blog .blog-inner {
  position: relative;
  padding: 4rem 0;
  margin: 5rem 0 6rem;
}

.iot-blog .blog-inner .btn-animate-1 {
  top: 5.5rem;
}

.iot-blog .blog-inner::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 90%;
  top: 0;
  right: 0;
  background: #f4f4f4;
  z-index: -1;
  border-radius: 1rem;
}

.iot-blog ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
}

.iot-blog ul li {
  width: calc(33.3333333333% - 2.7rem);
  margin: 0 2rem;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.iot-blog ul li:first-child {
  margin-left: 0;
}

.iot-blog ul li:last-child {
  margin-right: 0;
}

.iot-blog ul li .thumbnail {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}

.iot-blog ul li .thumbnail::before {
  content: "";
  display: block;
  padding-bottom: 58%;
}

.iot-blog ul li .thumbnail img {
  object-fit: cover;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

.iot-blog ul li .blog-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.iot-blog ul li .blog-title {
  margin: 0;
  color: #333333;
  background-color: var(--white);
  font-size: 2rem;
  line-height: 1.5;
  border: 1px solid #cccccc;
  border-top: none;
  padding: 2rem 3rem;
  border-radius: 0 0 1rem 1rem;
  flex-grow: 1;
}

.iot-blog ul li .blog-title a {
  color: #333333;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.iot-grid {
  padding: 16rem 0 0;
}

.iot-grid .grid-item .grid-contnet {
  margin: 0;
  width: 100%;
}

.discover-roi {
  margin: 8rem 0;
  padding: 4rem 0;
  background-color: #fafafa;
}

.discover-roi .box {
  display: flex;
  border: 1px solid #ebebeb;
  border-radius: 0.3rem;
  color: var(--black);
  align-items: stretch;
  background: var(--white);
}

.discover-roi .box .image {
  flex: 0 0 32rem;
  position: relative;
}

.discover-roi .box .image img {
  height: 100%;
  object-fit: cover;
}

.discover-roi .box .content {
  padding: 2rem 3rem;
}

.discover-roi .box .content h5 {
  font-family: var(--font-family-primary);
  text-transform: uppercase;
  color: var(--light-gray);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.discover-roi .box .content h3 {
  font-family: var(--font-family-primary);
  font-size: 2.3rem;
  font-weight: 600;
}

.discover-roi .box .content p {
  font-size: 1.6rem;
  margin: 0;
}

.discover-roi a:hover h3 {
  text-decoration: underline;
}

.iot-slider .header-content {
  text-align: center;
  padding: 0 0 5rem;
  max-width: 93rem;
  margin: 0 auto;
}

.iot-service {
  padding: 16rem 0 0;
}

.iot-service .header-content {
  text-align: center;
  padding: 0 0 5rem;
  max-width: 100rem;
  margin: 0 auto;
}

.iot-service .grid-item {
  padding: 0 0 4rem;
}

.iot-service .grid-item .grid-contnet {
  margin: 0;
  width: 100%;
}

.iot-service .grid-item .grid-contnet p {
  margin: 0;
}

.iot-service .grid-item .grid-contnet h4 {
  margin: 0;
}

.iot-service img {
  max-width: 38rem;
  padding: 0 0 4rem;
}

.iot-team {
  margin: 16rem 0 0;
  padding: 6rem;
  background-color: #ebebeb;
}

.iot-team h2 {
  margin: 0 0 18rem;
  max-width: 75rem;
}

.iot-team ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.iot-team ul li {
  width: 33.3333333333%;
  font-size: 1.8rem;
  display: inline-block;
  padding-left: 4rem;
  position: relative;
}

.iot-team ul li::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--light-gray);
  display: inline-block;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  border-radius: 0.3rem;
}

.iot-banner .image {
  width: 80rem;
  margin: 9rem auto 1rem;
  position: relative;
  max-width: 100%;
  position: relative;
}

.iot-banner .image::before {
  content: "";
  display: block;
  padding-bottom: 62%;
}

.iot-banner .image img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  object-fit: contain;
}

.smart-retail {
  margin: 0 0 16rem;
}

.smart-retail .header-content {
  text-align: center;
}

.smart-retail .header-content h1 {
  font-family: var(--font-family-primary);
  font-size: 5.7rem;
  font-weight: 700;
  letter-spacing: -1.44px;
  margin: 0.6rem 0 1.4rem;
}

.smart-retail .header-content p {
  font-family: var(--font-family-secondary);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.35;
  margin: 0 0 5rem;
}

.smart-retail .container-fluid>img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.smart-retail .image {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.smart-retail .image img {
  border-radius: 1rem;
}

.smart-retail .breadcrumbs-container img {
  max-width: 1.8rem;
}

.smart-retail .breadcrumbs {
  list-style: none;
  display: flex;
  padding: 8px 0;
  margin: 0;
  margin-left: 1rem;
}

.smart-retail .breadcrumbs li {
  color: var(--light-gray);
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}

.smart-retail .breadcrumbs li a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
}

.smart-retail .breadcrumbs li+li::before {
  padding: 0 0.2rem 0 0.6rem;
  color: var(--light-gray);
  content: "/ ";
}

.future-retail {
  margin: 0 0 12rem;
}

.future-retail .header-content {
  text-align: center;
}

.future-retail .retail-list {
  background-color: #fafafa;
}

.future-retail ul {
  list-style: none;
  padding: 0;
  margin: 4rem auto 0;
  display: flex;
}

.future-retail ul li {
  width: calc(25% - 2.15rem);
  margin: 0 1.4rem;
  display: inline-block;
}

.future-retail ul li h3 {
  color: #cccccc;
  font-size: 3.6rem;
  margin: 0;
}

.future-retail ul li h4 {
  font-size: 2.8rem;
  margin: 0 0 0.5rem;
}

.future-retail ul li p {
  font-size: 1.7rem;
  margin: 0;
  position: relative;
}

.future-retail ul li p::after {
  content: "";
  width: 5rem;
  height: 3px;
  background: #ccc;
  display: block;
  margin-top: 1rem;
}

.future-retail ul li .source {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-top: 1rem;
  display: block;
}

.future-retail ul li:first-child {
  margin-left: 0;
}

.future-retail ul li:last-child {
  margin-right: 0;
}

.future-retail ul li .retail-card {
  padding: 4rem 0 4.5rem;
  border-radius: 1rem;
}

.customer-experience {
  margin: 0 0 9rem;
}

.customer-experience .header-content {
  text-align: center;
  margin: 0 0 11rem;
}

.customer-experience .grid {
  display: flex;
  margin: 0 0 7rem;
}

.customer-experience .grid .grid-image {
  flex: 0 0 14rem;
  margin: 1rem 0 0;
}

.customer-experience .grid .grid-content {
  margin-left: 2.5rem;
}

.customer-experience .grid .grid-content h3 {
  font-size: 3rem;
  margin: 0 0 0.5rem;
}

.customer-experience .grid .grid-content p {
  font-size: 2rem;
  line-height: 1.5;
}

.customer-experience .grid .grid-content ul {
  color: #222;
}

.customer-experience .grid .grid-content ul li {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
}

.smart-retail-iot {
  margin: 0 0 16rem;
}

.smart-retail-iot .header-content {
  text-align: center;
  margin: 0 0 7.5rem;
}

.smart-retail-iot ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.smart-retail-iot ul li {
  width: 20%;
}

.smart-retail-iot ul li .icon {
  width: 8.5rem;
  display: block;
  margin: 0 auto;
  position: relative;
}

.smart-retail-iot ul li .icon .icon-square {
  max-width: 100%;
  position: relative;
}

.smart-retail-iot ul li .icon .icon-square::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.smart-retail-iot ul li .icon .icon-square img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}

.smart-retail-iot ul li .icon::after {
  content: "";
  width: 7rem;
  display: block;
  height: 1px;
  position: absolute;
  border-top: 5px dashed #999;
  overflow: hidden;
  left: calc(100% + 3.5rem);
  top: 50%;
  transform: translateY(-50%);
}

.smart-retail-iot ul li .icon::before {
  content: "";
  width: 7rem;
  display: block;
  height: 1rem;
  position: absolute;
  background: var(--white);
  overflow: hidden;
  left: calc(100% + 3.5rem);
  top: 50%;
  transform: translateY(-15%);
  z-index: 1;
}

.smart-retail-iot ul li .text {
  margin: 3.5rem 0 0;
  font-size: 1.6rem;
  text-align: center;
}

.smart-retail-iot ul li:last-child .icon::after {
  content: none;
}

.iot-bottom-section {
  margin: 0 auto 12rem;
  width: 90%;
  position: relative;
  overflow: hidden;
  padding: 6rem 6rem 3rem;
  border-radius: 1rem;
  border-bottom-left-radius: 2.3rem;
  border-bottom-right-radius: 2.3rem;
  -webkit-box-shadow: 0 10px 0px -1px rgb(208, 208, 208);
  -moz-box-shadow: 0 10px 0px -1px rgb(208, 208, 208);
  box-shadow: 0 10px 0px -1px rgb(208, 208, 208);
}

.iot-bottom-section img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iot-bottom-section h2 {
  margin: 0 0 20rem;
  max-width: 75rem;
  color: var(--white);
}

.iot-bottom-section ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.iot-bottom-section ul li {
  width: 33.3333333333%;
  font-size: 1.8rem;
  color: var(--white);
  display: inline-block;
  padding-left: 4rem;
  position: relative;
}

.iot-bottom-section ul li::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--white);
  display: inline-block;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  border-radius: 0.3rem;
}

.schedule-meeting {
  margin: 0 0 12rem;
}

.schedule-meeting .schedule-form {
  background-color: #2d3bbf;
  width: 90%;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 5.2rem 6.8rem 4rem;
}

.schedule-meeting .schedule-form .header-content {
  margin: 0 0 8rem;
}

.schedule-meeting .schedule-form .header-content h2 {
  font-size: 3.6rem;
  color: var(--white);
  margin: 0;
}

.schedule-meeting .schedule-form .header-content p {
  font-size: 1.9rem;
  color: var(--white);
}

.schedule-meeting .schedule-form .profile {
  display: flex;
  align-items: center;
  margin-left: 5.2rem;
}

.schedule-meeting .schedule-form .profile .image {
  flex: 0 0 10.8rem;
  background: var(--white);
  border-radius: 50%;
}

.schedule-meeting .schedule-form .profile .content {
  margin-left: 2.3rem;
}

.schedule-meeting .schedule-form .profile .content h3 {
  font-family: var(--font-family-primary);
  font-size: 2.3rem;
  color: var(--white);
  margin: 0;
}

.schedule-meeting .schedule-form .profile .content p {
  font-size: 1.6rem;
  color: var(--white);
}

.schedule-meeting .schedule-form .contact-form {
  margin: 0;
  padding: 3rem 6rem 0;
}

.schedule-meeting .schedule-form .contact-form input[type=submit] {
  background-color: var(--white);
  color: #2d3bbf;
  font-size: 1.4rem;
  font-weight: 600;
}

.schedule-meeting .schedule-form .form-group .form-control {
  color: var(--white);
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.schedule-meeting .schedule-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--white);
}

.schedule-meeting .schedule-form .form-group .form-control:-ms-input-placeholder {
  color: var(--white);
}

.schedule-meeting .schedule-form .form-group .form-control::placeholder {
  color: var(--white);
}

.schedule-meeting .schedule-form .form-group .label-wrap {
  font-family: var(--font-family-primary);
}

.schedule-meeting .schedule-form .form-group .label-wrap .label {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
}

.schedule-meeting .schedule-form .form-group .label-wrap::after {
  background-color: rgba(255, 255, 255, 0.51);
}

.schedule-meeting .schedule-form .wpcf7-response-output {
  color: #fff;
  font-size: 1.4rem;
}

.iot-faq {
  margin: 0 0 12rem;
}

.iot-faq .faq h2,
.iot-faq .faq-title-content h2 {
  margin-top: 0;
}

.not-found {
  padding: 16rem 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.not-found .lottie-wrapper {
  max-width: 52rem;
  width: 100%;
  margin: 0 auto;
}

.not-found h1 {
  font-weight: 600;
  font-size: 6rem;
}

.not-found h1::after {
  content: "";
  width: 9.5rem;
  height: 0.45rem;
  display: block;
  margin: 1rem auto;
  background-color: var(--primary);
  border-radius: 0.45rem;
}

.not-found p {
  color: var(--gray);
  margin: 0 auto 3rem;
  font-weight: 400;
}

.fadeInLeftSmall {
  -webkit-animation-name: fadeInLeftSmall;
  animation-name: fadeInLeftSmall;
}

@-webkit-keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRightSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightSmall {
  -webkit-animation-name: fadeInRightSmall;
  animation-name: fadeInRightSmall;
}

.bounceSmall {
  -webkit-animation-name: bounceSmall;
  animation-name: bounceSmall;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@keyframes bounceSmall {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -1px, 0);
    transform: translate3d(0, -1px, 0);
  }
}

/* animation responsive */
.hamburger {
  width: 26px;
  height: 26px;
  z-index: 999;
  line-height: 4px;
  cursor: pointer;
  position: relative;
  display: none;
}

.hamburger span {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  transition: all 0.5s;
}

.hamburger span:nth-child(2) {
  width: 18px;
}

.hamburger span:last-child {
  width: 10px;
}

.hamburger.active span {
  margin-top: 12px;
  position: absolute;
  width: 26px;
}

.hamburger.active span:first-child {
  transform: rotate(-135deg);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(135deg);
}

.hamburger.active span:last-child {
  margin-top: 30px;
  width: 0;
  display: none;
}

.modal {
  position: fixed;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}

.modal.is-visible {
  visibility: visible;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal .modal-wrapper {
  position: relative;
  z-index: 9999;
  top: 50%;
  left: 50%;
  max-width: 55rem;
  max-height: 85%;
  width: 95%;
  overflow-y: auto;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.13);
  border-radius: 0.5rem;
}

.modal .modal-wrapper.modal-transition {
  transition: all 0.3s 0.12s;
  opacity: 0;
}

.modal .modal-wrapper .modal-header,
.modal .modal-wrapper .modal-content {
  padding: 1.5rem;
}

.modal .modal-wrapper .modal-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: var(--white);
  z-index: 1;
}

.modal .modal-wrapper .modal-header .modal-heading {
  font-size: 3rem;
  margin: 0;
  width: 100%;
  text-align: center;
}

.modal .modal-wrapper .modal-header .modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--light-gray);
  font-size: 2.41rem;
}

.modal .modal-wrapper.modal-large {
  max-width: 75rem;
}

.modal .modal-wrapper.right-bottom {
  max-width: 370px;
  left: calc(99% - 370px);
  top: calc(98% - 605px);
  transform: none;
  -moz-transform: none;
  -webkit-transform: none;
}

.modal .modal-wrapper.right-bottom .modal-header {
  background-color: #222;
  padding: 1.2rem;
}

.modal .modal-wrapper.right-bottom .modal-header .title {
  margin-right: 20px;
}

.modal .modal-wrapper.right-bottom .modal-header .title .logo {
  width: 45px;
  margin-bottom: 12px;
}

.modal .modal-wrapper.right-bottom .modal-header .title .modal-heading {
  color: #fff;
  font-size: 18px;
  text-align: left;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 0.8rem;
}

.modal .modal-wrapper.right-bottom .modal-header .title p {
  color: #fff;
  font-size: 14px;
  text-align: left;
  margin: 0;
}

.modal .modal-wrapper .contact-form {
  padding: 1.28rem 0.8rem 0.8rem;
  box-shadow: none;
  margin: 0;
}

.modal .modal-wrapper .contact-form .form-group {
  margin: 0 0 2.8rem;
}

.modal .modal-wrapper .contact-form .form-group .form-control {
  height: 38px;
  font-size: 14px;
}

.modal .modal-wrapper .contact-form .form-group .form-control .label-wrap .label {
  font-size: 14px;
}

.modal .modal-wrapper .contact-form .form-group .form-control:focus~.label-wrap .label {
  bottom: 94%;
  font-size: 0.75rem;
}

.modal .modal-wrapper .contact-form .form-btn {
  position: static;
  text-align: right;
  transform: none;
  -moz-transform: none;
  -webkit-transform: none;
}

.modal .modal-wrapper .contact-form .form-btn .btn {
  text-transform: capitalize;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 1.12rem 3.2rem 1.2rem;
  line-height: 1;
  background: #ff1816;
}

.modal .modal-wrapper .contact-form p {
  margin: 0;
}

.modal.is-visible .modal-transition {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal.is-visible .right-bottom {
  transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -webkit-transform: translate(0, 0) scale(1);
}

.modal-content>*:first-child {
  margin-top: 0;
}

.modal-content>*:last-child {
  margin-bottom: 0;
}

.white-papper-banner {
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
  margin: 0 0 10rem;
}

.white-papper-banner img {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  object-fit: cover;
}

.white-papper-banner .caption {
  position: absolute;
  max-width: 144rem;
  padding: 0 15px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
}

.white-papper-banner .caption .content {
  width: 50%;
}

.white-papper-banner .caption .content h5 {
  font-family: var(--font-family-primary);
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: 0.0875rem;
}

.white-papper-banner .caption .content h1 {
  font-family: var(--font-family-primary);
  color: var(--white);
  font-size: 6rem;
  font-weight: 700;
  margin: 3rem 0;
}

.white-papper-banner .caption .content p {
  font-family: var(--font-family-primary);
  color: var(--white);
  font-weight: 500;
}

.white-papper-content {
  margin: 0 0 16rem;
}

.white-papper-content ul li {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.white-papper-content .contact-form {
  margin: 6rem 0 0;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #ebebeb;
}

.white-papper-content .form-group .form-control {
  border-bottom: 1px solid #ebebeb;
}

.white-papper-content .form-group .label-wrap::after {
  background-color: #ccc;
}

.xamarin-slider.slider .image img {
  object-fit: contain;
}

.microsoft-xamarin {
  margin: 0 0 6rem;
}

.microsoft-xamarin .header-content {
  max-width: 100rem;
  margin: 0 auto;
  text-align: center;
}

.microsoft-xamarin .header-content h5 {
  font-size: 1.9rem;
  letter-spacing: 0.8rem;
  font-weight: 600;
  color: var(--light-gray);
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.microsoft-xamarin .image {
  max-width: 44.15rem;
  width: 100%;
  margin: 8rem auto 0;
}

.xamarin-portfolio {
  margin: 0 0 12rem;
}

.xamarin-portfolio h4 {
  font-size: 1.9rem;
  letter-spacing: 0.8rem;
  font-weight: 600;
  color: var(--light-gray);
  margin: 0 0 3.5rem 6rem;
  text-transform: uppercase;
}

.xamarin-portfolio .carousel-wrapper {
  width: 90%;
  margin-left: auto;
}

.xamarin-portfolio .lSSlideOuter .lSPager.lSpg {
  display: none;
}

.xamarin-portfolio .lSAction>a {
  background-image: url(assets/images/controls.png);
  opacity: 1;
}

.xamarin-consulting-partner {
  margin: 0 0 12rem;
}

.xamarin-consulting-partner .header-content {
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
}

.xamarin-consulting-partner .header-content h5 {
  font-size: 1.9rem;
  letter-spacing: 0.8rem;
  font-weight: 600;
  color: var(--light-gray);
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.xamarin-consulting-partner .image {
  max-width: 45rem;
  width: 100%;
  margin: 8rem auto 0;
}

.xamarin-consulting-partner h4 {
  font-size: 2.5rem;
}

.xamarin-process {
  margin: 0 0 8rem;
}

.xamarin-process .grid {
  display: flex;
  margin: 0 0 6.6rem;
}

.xamarin-process .grid .grid-image {
  flex: 0 0 14rem;
  margin: 1rem 0 0;
}

.xamarin-process .grid .grid-content {
  margin-left: 2.5rem;
}

.xamarin-process .grid .grid-content h3 {
  font-size: 3rem;
  margin: 0 0 0.5rem;
}

.xamarin-process .grid .grid-content p {
  font-size: 2rem;
  line-height: 1.5;
}

.xamarin-process .grid .grid-content ul {
  color: #222;
}

.xamarin-process .grid .grid-content ul li {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
}

.amazing-results {
  margin: 0 0 16rem;
}

.amazing-results .header-content {
  max-width: 125rem;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1680px) {
  .site-footer .footer-bottom .container {
    max-width: 1440px;
  }
}

@media (max-width: 1440px) {
  html {
    font-size: 56%;
  }

  .top-page-banner .page-title-wrap p {
    max-width: 78rem;
  }

  .slider .content {
    margin-left: 7rem;
  }

  .slider .image {
    right: 8rem;
  }

  .different {
    margin: 12rem 0 20rem;
  }

  .different ol>li::before {
    left: -0.5rem;
  }

  .fortune .clients-logo {
    margin: 0 3rem;
  }

  .chatboats .text {
    margin: 0 4rem;
  }

  .chatboats .text p {
    font-size: 21px;
  }

  .business .text {
    margin: 0 5rem 0 9rem;
  }

  .business .text p {
    font-size: 21px;
  }

  .about-slider.slider .content {
    margin-left: 10rem;
  }

  .about-slider.slider .image {
    bottom: 12rem;
  }

  .case-study-banner .caption h2,
  .case-study-banner .caption h1 {
    font-size: 5.6rem;
    line-height: 1.3;
  }

  .case-bottom-heading .header-content {
    margin: 0 auto 10rem;
    max-width: 125rem;
  }

  .case-bottom-heading .case-bottom-img {
    max-width: 94.3rem;
  }

  .app-development-logo ul {
    padding-left: 4rem;
  }

  .landing-page-portfolio ul li {
    max-width: 110.2rem;
  }

  .portfolio1-slider .slider .content {
    margin-left: 7rem;
  }

  .service-detail-slider.slider .content {
    max-width: 65rem;
    margin-left: 7rem;
  }

  .service-detail-slider.slider .image {
    right: 7rem;
  }

  .smart-retail img {
    width: 95%;
  }

  .future-retail ul {
    width: 95%;
  }

  .iot-bottom-section {
    width: 95%;
  }

  .industries-slider.slider .content {
    margin-left: 5rem;
    max-width: 68rem;
  }

  .industries-slider.slider .image {
    right: 5rem;
  }

  .site-footer .footer-bottom .container {
    max-width: 1170px;
  }

  .site-footer .footer-menu ul li {
    font-size: 2.9rem;
  }
}

@media (max-width: 1199px) {
  html {
    font-size: 50%;
  }

  p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 2rem;
  }

  #cookie-law-info-bar {
    max-width: calc(100% - 200px);
    left: 100px;
  }

  .slider {
    height: 100%;
    margin: 15rem 0;
    padding: 7.18rem 0;
  }

  .slider .content {
    width: 57rem;
    margin-left: 5rem;
  }

  .slider .content .text {
    margin-top: 0;
  }

  .slider .content .text h1,
  .slider .content .text h2 {
    font-size: 5rem;
  }

  .slider .content .text p {
    font-size: 2.9rem;
  }

  .slider .image {
    width: 44rem;
    bottom: 0;
    top: 0;
    max-height: 100%;
  }

  .header .nav {
    margin-left: 1.32rem;
  }

  .header .nav .menu:first-child li a {
    padding: 0 1rem;
  }

  .header .nav .menu:first-child li:first-child {
    padding-left: 0.32rem;
    margin-left: 4.8rem;
  }

  .header .nav .menu:first-child li:first-child::before {
    width: 4.8rem;
  }

  .header .nav .menu:first-child li+li {
    margin-left: 2rem !important;
  }

  .header .nav .menu:first-child li .sub-menu-wrap .menu-title {
    flex: 0 0 180px;
    margin-left: 0;
    margin-right: 0;
  }

  .header .nav .menu:first-child li .sub-menu-wrap .sub-menu-dropdown {
    width: calc(100% - 190px);
  }

  .header .nav .menu:first-child li .sub-menu-wrap .sub-menu-dropdown>li ul li a {
    margin: 0 0 5px;
  }

  .header .logo {
    max-width: 24rem;
  }

  .different {
    margin: 12rem 0 20rem;
  }

  .different ol>li .text {
    font-size: 2.21rem;
    padding: 2.3rem 3rem;
  }

  .business .text {
    margin: 0 1rem 0 9rem;
  }

  .business .text p {
    font-size: 18px;
  }

  .chatboats .text {
    margin: 0 2rem;
  }

  .chatboats .text p {
    font-size: 18px;
  }

  .portfolio-home .portfolio-lists .portfolio-left {
    padding: 0 3rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .top-text h3 {
    max-width: 43rem;
    margin: 0 auto;
  }

  .have-a-question .text {
    max-width: 42rem;
  }

  #counter {
    flex-wrap: wrap;
  }

  .global .section-head h2 {
    margin: 0 auto;
    max-width: 72rem;
  }

  .global ul>li {
    width: 50%;
    text-align: center;
    position: relative;
    margin: 4rem 0;
    max-width: 100%;
  }

  .global ul>li p {
    font-size: 2.1rem;
  }

  .about-slider.slider {
    height: 100%;
    margin: 15rem 0;
    padding: 7.18rem 0;
  }

  .about-slider.slider .content {
    margin-left: 5rem;
  }

  .about-slider.slider .content .text h2,
  .about-slider.slider .content .text h1 {
    font-size: 5rem;
  }

  .about-slider.slider .content .text p {
    font-size: 3rem;
  }

  .about-slider.slider .image {
    bottom: 0;
  }

  .about-global.global ul>li span p {
    padding-right: 1rem;
  }

  .why .from {
    padding: 3rem 8rem 3rem 5rem;
  }

  .why .text {
    margin: -10rem 6rem 0 2rem;
  }

  .global-presence .connect-box p {
    font-size: 1.8rem;
    margin-top: 3rem;
  }

  .our-work .awards-box {
    height: 105px;
  }

  .our-work .awards-box img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.75);
    -moz-transform: translate(-50%, -50%) scale(0.75);
    -webkit-transform: translate(-50%, -50%) scale(0.75);
  }

  .awards .awards-box,
  .our-work .awards-box,
  .about-awards .awards-box {
    height: 100px;
  }

  .awards .awards-box img,
  .our-work .awards-box img,
  .about-awards .awards-box img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -webkit-transform: translate(-50%, -50%) scale(0.7);
  }

  .awards .awards-text p,
  .our-work .awards-text p,
  .about-awards .awards-text p {
    font-size: 1.4rem;
  }

  .team-slider.slider {
    margin: 15rem 0 0rem;
    padding: 7.18rem 0;
  }

  .team-slider.slider .content {
    margin-left: 3rem;
    max-width: 100%;
  }

  .team-slider.slider .content .text p {
    font-size: 3rem;
  }

  .portfolio-slider.slider {
    margin: 15rem 0 0;
    padding: 7.18rem 0;
  }

  .portfolio-slider.slider .content {
    margin-left: 3rem;
  }

  .case-stydy .service-box .title {
    padding: 4rem;
  }

  .case-stydy .service-box .title h2 {
    max-width: 58rem;
  }

  .case-summary-details .summary-content {
    margin: 3rem 0 0 7.8rem;
  }

  .case-summary-details .flex-md-row-reverse .image {
    margin: -10rem 22.6rem 0 0 !important;
  }

  .case-study-wireframe ul li {
    flex-basis: 47.5rem;
  }

  .app-development-form {
    margin-right: 10rem;
    margin-top: 10rem;
  }

  .app-development-slider.slider {
    margin: 0;
    padding: 7.18rem 0 0;
  }

  .landing-page-new.slider {
    margin: 15rem 0 10rem;
    padding: 18.18rem 0;
  }

  .landing-page-new.slider .content .text {
    margin-top: 0;
  }

  .contact.case-stydy .service-box .title {
    padding: 2rem;
  }

  .contact.case-stydy .service-box .title h2 {
    font-size: 3.1rem;
  }

  .site-footer .footer-bottom .container {
    max-width: 960px;
  }

  .service-detail-slider.slider .content {
    width: 57rem;
    margin-left: 5rem;
  }

  .service-detail-slider.slider .image {
    right: 5rem;
  }

  .blog-banner .image {
    max-width: 225px;
    transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -webkit-transform: translateX(1rem);
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 3.3rem;
  }

  .patch {
    display: none !important;
  }

  br {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .wrapper {
    padding: 0 1.5rem;
  }

  .tab-break {
    display: block;
  }

  .faq .accordion .accordion-item .accordion-button .accordion-heading h3 {
    font-size: 2rem;
  }

  .faq .accordion .accordion-item .accordion-inner p {
    font-size: 1.8rem;
  }

  .table tbody td {
    font-size: 1.6rem;
  }

  .table tbody td p {
    font-size: 1.6rem !important;
  }

  .slider {
    padding: 6rem 0;
    margin: 7rem 0 10rem;
    display: flex;
    flex-wrap: wrap;
  }

  .slider .content {
    width: 61rem;
    order: 2;
    margin: 6rem auto 0;
  }

  .slider .content .text {
    text-align: center;
    width: 100%;
  }

  .slider .content .text h2::after,
  .slider .content .text h1::after {
    margin: 1rem auto 0;
  }

  .slider .content .text h3 {
    font-size: 3.4rem;
  }

  .slider .image {
    position: relative;
    width: 60rem;
    right: auto;
    margin: 0 auto;
  }

  .different {
    margin: 8rem 0 15rem;
  }

  .different ol {
    margin: 0 -15px;
  }

  .different ol>li {
    padding: 0 1rem;
  }

  .different ol>li:first-child {
    padding-left: 15px;
  }

  .different ol>li:last-child {
    padding-right: 15px;
  }

  .different ol>li::before {
    left: auto;
    font-size: 3.8rem;
    right: 4rem;
    top: -1.6rem;
  }

  .different ol>li .text {
    font-size: 1.95rem;
    padding: 2.2rem 1.2rem;
    margin: 0;
    line-height: 1.6;
  }

  .why .lottie-wrapper {
    margin-top: -1rem;
  }

  .why .text {
    margin: 0;
    margin-top: 6rem;
  }

  .why .from {
    padding: 3rem 2rem 3rem 2rem;
    max-width: 46rem;
  }

  .business .text {
    margin: 0;
  }

  .business .image {
    margin: 0 4rem;
  }

  .chatboats .text {
    margin: 0;
  }

  .chatboats .image {
    margin: 0 4rem;
  }

  .portfolio-home {
    height: 100%;
    overflow: visible;
    background: var(--white);
    border: 0;
  }

  .portfolio-home .portfolio-lists>li {
    height: 100%;
    overflow: visible;
  }

  .portfolio-home .portfolio-lists .portfolio-left {
    padding: 0 3rem;
    height: 100%;
  }

  .portfolio-home .portfolio-lists .portfolio-left .portfolio-left-inner {
    margin-top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-left .top-text {
    margin: 5rem auto 9rem;
    transform: translateX(0px);
  }

  .portfolio-home .portfolio-lists .portfolio-left .top-text h3 {
    max-width: 44rem;
    background-color: var(--white);
  }

  .portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch {
    display: block !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .client-info p {
    max-width: 68rem;
    font-size: 20px;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology {
    top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon {
    width: 10rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.6) !important;
    -moz-transform: translate(-50%, -50%) scale(0.6) !important;
    -webkit-transform: translate(-50%, -50%) scale(0.6) !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .store-link {
    margin: 2rem 0 3rem;
    top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-right {
    margin: 0 0 8rem;
    left: -1.5rem;
    width: calc(100% + 3rem);
  }

  .portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg {
    padding-bottom: 56.25%;
  }

  .portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg img {
    left: 50%;
    opacity: 1;
    height: 100%;
    width: 100%;
  }

  .portfolio-home .skip {
    display: none;
  }

  .portfolio-home .slide-count {
    display: none;
  }

  .fortune {
    margin: 14rem 0 15rem;
  }

  .fortune h3 {
    margin: 0;
  }

  .fortune p {
    margin: 0 28% 2.6rem 0;
  }

  .fortune .btn-gray {
    margin-right: 0;
  }

  .fortune .clients-logo {
    margin: 0 0 2rem;
  }

  .fortune .clients-logo ul li img {
    transform: scale(0.7);
    -moz-transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }

  .blog-home {
    margin: 15rem 0;
  }

  .blog-home p {
    margin: 0 47% 3.6rem 0;
  }

  .global ul>li {
    margin: 3rem 0;
  }

  .global ul>li p {
    margin: 0 auto 1.8rem;
    max-width: 21rem;
    font-size: 1.8rem;
  }

  .service-box {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-box .title {
    padding: 1.5rem;
    flex: 1;
  }

  .service-box .title h4 {
    font-size: 1.8rem;
  }

  .what .col-md-4,
  .journey .col-md-4 {
    padding: 0 1rem;
  }

  .what .col-md-4:first-child,
  .journey .col-md-4:first-child {
    padding-left: 15px;
  }

  .what .col-md-4:last-child,
  .journey .col-md-4:last-child {
    padding-right: 15px;
  }

  .header {
    padding: 3.2rem 5.52rem;
    left: 0;
  }

  .header .logo {
    max-width: 24rem;
  }

  .header>div {
    min-height: 7rem;
    background-color: var(--white);
  }

  .header .nav {
    display: none;
  }

  .header .nav.open {
    transform: translateY(0);
  }

  .header .nav ul.menu {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
  }

  .header .nav ul.menu>li {
    padding: 0 4rem;
    line-height: 6rem !important;
    position: relative;
    display: block;
  }

  .header .nav ul.menu>li:nth-child(2) {
    padding: 0 10rem 0 4rem;
  }

  .header .nav ul.menu>li>.caret {
    display: inline-block;
    right: 6rem;
  }

  .header .nav ul.menu>li a {
    display: block;
    padding: 0 1rem;
  }

  .header .nav ul.menu>li+li {
    margin-left: 0 !important;
    border-top: 1px solid #ebebeb;
  }

  .header .nav ul.menu>li.hover .mega-menu {
    display: block;
  }

  .header .nav ul.menu>li.hover>.caret {
    transform: rotate(180deg);
    top: 2rem;
  }

  .header .nav .mega-menu {
    position: static;
    width: calc(100% + 6rem);
    display: none;
    height: auto;
    border: none;
    padding: 0;
    box-shadow: none;
    max-height: 20rem;
    overflow: auto;
  }

  .header .nav .mega-menu>li.mega-menu-row {
    margin: 0;
  }

  .header .nav .mega-menu>li.mega-menu-row.mega-heading {
    display: none;
  }

  .header .nav .mega-menu>li>.mega-sub-menu>li.mega-menu-column>.mega-sub-menu>li.mega-menu-item {
    border-top: 1px solid #ebebeb;
    line-height: 5rem;
  }

  .header .nav .mega-menu>li>.mega-sub-menu>li.mega-menu-column.mega-menu-columns-3-of-12 {
    width: 100%;
  }

  .header .nav .mega-menu>li>.mega-sub-menu>li.mega-menu-column.mega-menu-columns-3-of-12 li.mega-menu-item:nth-child(4n+1) {
    margin: 0;
  }

  .header .nav .mega-menu>li>.mega-sub-menu>li.mega-menu-column.mega-menu-columns-2-of-12 {
    display: none;
  }

  .header.scrolled {
    background: transparent;
    transition: none;
  }

  .header.header-fixed .nav .menu a {
    color: var(--black);
  }

  .header.header-fixed .nav .menu>li .tel .primary {
    display: inline-block !important;
  }

  .header.header-fixed .nav .menu>li .tel .white {
    display: none !important;
  }

  .header.header-fixed:not(.scrolled)>div {
    background-color: transparent;
  }

  .header #menu-toggle {
    display: block;
  }

  .header.menu-open .logo-menu {
    display: block;
    max-width: 24rem;
  }

  .header .header-inner #menu-toggle #cross span {
    background-color: #222;
  }

  .full-menu {
    display: block;
    background-color: #fff;
  }

  .full-menu .full-menu-inner .top {
    overflow-y: auto;
  }

  .full-menu .full-menu-inner .top .menu {
    max-width: 100%;
    margin-left: 3rem;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: calc(100% - 2rem);
  }

  .full-menu .full-menu-inner .top .menu li {
    position: relative;
    margin-right: 8rem;
    font-size: 5.5rem;
    line-height: 1.9;
    font-weight: 600;
  }

  .full-menu .full-menu-inner .top .menu li a {
    font-family: "Open Sans", sans-serif;
    color: #222;
    line-height: 1;
    font-weight: 100;
  }

  .full-menu .full-menu-inner .top .menu li .toggle {
    position: absolute;
    width: 8rem;
    height: 10.1344rem;
    float: left;
    font-size: 2rem;
    right: -8rem;
    top: 0;
    z-index: 1;
  }

  .full-menu .full-menu-inner .top .menu li .toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1.2rem;
    background-color: #222;
    width: 0.2rem;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
  }

  .full-menu .full-menu-inner .top .menu li .toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    background-color: #222;
    height: 0.2rem;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
  }

  .full-menu .full-menu-inner .top .menu li:hover .fullmenu-dropdown {
    display: none;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown {
    display: none;
    position: static;
    width: 100%;
    transition: unset;
    -o-transition: unset;
    -webkit-transition: unset;
    overflow: visible;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul {
    padding-left: 8rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li {
    max-width: 50% !important;
    margin: 0;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li .heading {
    font-size: 1.92rem;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul {
    padding-left: 0;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li {
    font-size: 1.92rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li a {
    font-weight: 600;
    color: #666;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li ul li:before {
    content: none;
  }

  .site-footer .project-in-mind {
    padding: 3.1rem 1.5rem;
    margin: 0 -1.5rem;
  }

  .site-footer .project-in-mind .container p {
    font-size: 4.23rem;
  }

  .site-footer .footer-menu {
    padding: 2.88rem 1.5rem;
    margin: 0 -1.5rem;
  }

  .site-footer .footer-menu ul li {
    font-size: 2.88rem;
  }

  .site-footer .footer-bottom {
    padding: 0 0 3.68rem;
    margin: 0 -1.5rem;
  }

  .site-footer .footer-bottom .container .bottom-links {
    order: 4;
    margin-top: 2.4rem;
  }

  .site-footer .footer-bottom .container .bottom-links .left {
    width: 100%;
    order: 3;
    text-align: center;
    margin-top: 1.6rem;
    display: none;
  }

  .site-footer .footer-bottom .container .bottom-links .left ul li {
    font-size: 1.8rem;
  }

  .site-footer .footer-bottom .container .bottom-links .left ul li:first-child {
    display: block;
  }

  .site-footer .footer-bottom .container .bottom-links .left ul li a {
    font-size: 1.8rem;
    margin: 0 0 0.8rem;
  }

  .site-footer .footer-bottom .container .bottom-links .left ul li:first-child {
    margin: 1.6rem 0 0.64rem;
  }

  .site-footer .footer-bottom .container .bottom-links .right {
    width: 100%;
    display: block;
    margin-top: 0;
  }

  .site-footer .footer-bottom .container .bottom-links .right p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .site-footer .footer-bottom .container .bottom-links .right ul {
    text-align: center;
  }

  .site-footer .footer-bottom .container .bottom-links .right ul li {
    font-size: 1.8rem;
  }

  .site-footer .footer-bottom .container .bottom-links .right ul li a {
    font-size: 1.8rem;
  }

  .site-footer .footer-bottom .container .all-rights {
    width: 100%;
    order: 2;
  }

  .site-footer .footer-bottom .container .all-rights p {
    font-size: 1.8rem;
    text-align: center;
  }

  .site-footer .footer-bottom .container .quick-links {
    width: 100%;
    text-align: center;
    order: 2;
    margin-top: 2.4rem;
  }

  .site-footer .footer-bottom .container .quick-links a {
    font-size: 1.8rem;
    color: #fff;
  }

  .site-footer .footer-bottom .container #quick-links-large {
    display: none;
  }

  .site-footer .footer-bottom .container #quick-links-small {
    display: block;
  }

  .site-footer .footer-bottom .container .social {
    width: 100%;
    margin-bottom: 2.4rem;
  }

  .site-footer .footer-bottom .container .social ul li {
    margin: 0 0.8rem;
  }

  .header.scrolled {
    background: #fff !important;
  }

  .header.scrolled #menu-toggle {
    display: block;
  }

  .portfolio-slider.slider {
    padding: 6rem 0;
    margin: 7rem 0 0;
  }

  .portfolio-slider.slider .content {
    max-width: 60rem;
    margin: 2rem auto 0;
  }

  .portfolio-slider.slider .content .text p {
    font-size: 3.2rem;
  }

  .portfolio-slider.slider .image {
    width: 50rem;
  }

  .case-stydy .service-box {
    min-height: 35rem;
  }

  .case-stydy .service-box .title {
    padding: 2rem;
  }

  .case-stydy .service-box .title h2 {
    max-width: 50rem;
    margin-bottom: 5.5rem;
    font-size: 3.4rem;
  }

  .case-stydy .service-box .title h3 {
    font-size: 3rem;
  }

  .about-slider.slider {
    padding: 6rem 0;
    margin: 7rem 0;
  }

  .about-slider.slider .content {
    margin: 6rem auto 0;
    width: 71rem;
    max-width: 71rem;
  }

  .about-slider.slider .content .text p {
    font-size: 3.2rem;
  }

  .about-slider.slider .content .section-links ul {
    justify-content: center;
  }

  .about-slider.slider .content .section-links ul li a {
    font-size: 2.1rem;
  }

  .about-slider.slider .image {
    width: 50rem;
  }

  .awards,
  .our-work {
    padding: 10rem 0 0;
  }

  .awards .header-content,
  .our-work .header-content {
    max-width: 75rem;
  }

  .awards ul,
  .our-work ul {
    justify-content: center;
  }

  .awards ul li,
  .our-work ul li {
    width: calc(33.3333333333% - 2rem);
    margin: 0 1rem 1rem;
  }

  .awards .awards-box,
  .our-work .awards-box {
    height: 150px;
  }

  .awards .awards-text p,
  .our-work .awards-text p {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .about-awards {
    padding: 15rem 0 0;
  }

  .about-awards .awards-box {
    height: 125px;
  }

  .about-awards .award-details {
    flex-wrap: wrap;
  }

  .about-awards .header-content {
    flex: 0 0 100%;
    margin: 0 0 5rem;
    padding-right: 0;
  }

  .about-awards .header-content p {
    max-width: 50rem;
  }

  .about-awards .awards-name::after {
    content: none;
  }

  .our-work {
    padding: 0 0 10rem;
  }

  .our-work ul li {
    width: calc(33.3333333333% - 2rem);
    margin: 0 1rem 0rem;
  }

  .our-work .awards-box {
    height: 120px;
  }

  .thinkahead {
    padding: 15rem 0 0;
  }

  .partners-home {
    padding: 15rem 0 0;
  }

  .global-presence {
    padding: 15rem 0;
  }

  .global-presence .connect-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }

  .global-presence .connect-box p {
    font-size: 2rem;
  }

  .building-apps .header-content,
  .thinkahead .header-content {
    max-width: 73rem;
  }

  .about-team .about-leaders ul {
    width: 100%;
  }

  .about-team .about-leaders ul li {
    width: calc(33.3333333333% - 3rem);
    margin: 1.5rem 1.5rem 2rem;
    display: inline-block;
  }

  .about-team .about-leaders ul li h4 {
    font-size: 1.7rem;
  }

  .animated {
    transition-property: none !important;
    transform: none !important;
    animation: none !important;
  }

  .case-study-banner {
    padding-bottom: 45.5%;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }

  .case-study-banner .caption {
    max-width: 63rem;
    bottom: 5%;
  }

  .case-study-banner .caption .banner-logo {
    width: 30rem;
  }

  .case-study-banner .caption h2,
  .case-study-banner .caption h1 {
    font-size: 4rem;
  }

  .case-heading .content {
    margin: 11rem 9rem 0 -17rem;
    padding: 3rem 4rem;
  }

  .case-summary-details .summary-content {
    margin: 3rem 0 0 3rem;
  }

  .case-summary-details .image {
    margin-left: 4.6rem;
  }

  .case-summary-details .flex-md-row-reverse .image {
    margin: -10rem 4.6rem 0 0 !important;
  }

  .case-summary-details .flex-md-row-reverse+.row .summary-content {
    margin: 23rem 0 0 3rem;
  }

  .case-summary-details.case-summary-teblet .row .summary-content {
    margin-top: 6rem;
  }

  .case-summary-details.case-summary-teblet .image {
    margin-left: 2rem;
  }

  .case-summary-details.case-summary-teblet .flex-md-row-reverse .image {
    margin: 0 2rem 0 0 !important;
  }

  .case-summary-details.case-summary-landscape .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .case-summary-details.case-summary-landscape .image {
    margin-right: 0;
  }

  .case-summary-details.case-summary-landscape .summary-content {
    margin: 0;
  }

  .case-summary-details.case-summary-landscape .flex-md-row-reverse .image {
    margin: 0 !important;
  }

  .technology-stack .icons-with-text ul li {
    width: 19rem;
  }

  .technology-stack .icons-with-text ul li::before {
    width: 6rem;
    left: -3rem;
  }

  .we-did .image {
    max-width: 23rem;
  }

  .we-did .image-tablet {
    max-width: 34rem;
    margin: 0 4rem;
  }

  .column-5 ul li {
    max-width: 15rem;
    margin: 0 1.4rem;
  }

  .case-study-awards .awards-logo li {
    margin: 0 3rem 2rem;
  }

  .case-bottom-heading .case-bottom-img {
    max-width: 67.3rem;
  }

  .case-study-wireframe ul li {
    flex-basis: 36.5rem;
  }

  .app-development-slider.slider {
    padding: 6rem 0;
    margin: 7rem 0 2rem;
  }

  .app-development-logo ul {
    padding-left: 3rem;
  }

  .app-development-slider.slider .content .text {
    margin-top: 0;
  }

  .app-development-chartboats.chatboats .image {
    margin: 0 4rem;
  }

  .app-development-chartboats.chatboats .text {
    margin: 0 5rem 0 3rem;
  }

  .app-development-form {
    margin-right: auto;
    margin-left: auto;
    margin-top: 6rem;
    order: 3;
  }

  .app-development-form .contact-form {
    padding: 3rem;
  }

  .app-development-form .contact-form .form-group .form-control {
    height: 30px;
  }

  .app-development-logo .row {
    justify-content: center;
    margin: 0 0 6rem;
  }

  .landing-page-new.slider {
    padding: 6rem 0;
    margin: 7rem 0 2rem;
  }

  .landing-page-new.slider .content {
    max-width: 61rem;
    margin: 5rem auto 0;
  }

  .landing-page-new.slider .content .text {
    margin-top: 0;
    width: 100%;
  }

  .landing-page-new.slider .content .text h1 {
    font-size: 3.8rem;
  }

  .landing-page-new.slider .image {
    max-height: 100%;
    bottom: 0;
    width: 50rem;
    right: auto;
  }

  .landing-page-new.slider .image img {
    width: auto;
  }

  .landing-page-new.our-work .awards-box {
    height: 92px;
    margin-bottom: 1.5rem;
  }

  .success-stories .box {
    padding: 1.5rem;
  }

  .success-stories .col-md-4 {
    padding: 0 1rem;
  }

  .landing-page-banner {
    padding: 4rem 0;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }

  .landing-page-banner .banner-logo {
    margin: 0rem 0 2rem;
  }

  .landing-page-banner h2,
  .landing-page-banner h1 {
    font-size: 4.4rem;
    margin: 0 0 2rem;
  }

  .landing-page-banner .contact-form {
    padding: 0rem 2rem;
    margin: 5rem 0 0;
  }

  .landing-page-container.bg-gray {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }

  .landing-page-container.fortune {
    margin: 10rem 0;
  }

  .landing-page-container.fortune h3 {
    margin: 0 auto;
    max-width: 53rem;
  }

  .blog-headline .content .text {
    margin-top: 10rem;
    max-width: 45rem;
  }

  .blog-headline .content .text h2,
  .blog-headline .content .text h1 {
    font-size: 6rem;
  }

  .trending-blogs .col-md-4 {
    padding: 0 1rem;
  }

  .trending-blogs .col-md-4:first-child {
    padding-left: 15px;
  }

  .trending-blogs .col-md-4:last-child {
    padding-right: 15px;
  }

  .blog-single {
    padding: 11rem 1.5rem 0;
  }

  .blog-single .sidebar {
    left: 5rem;
    display: none !important;
  }

  .blog-single .blog-post .blog-listing .listing-content .title {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .blog-single .blog-post .col-md-4 {
    padding: 0 1rem;
  }

  .blog-single .blog-post .col-md-4:first-child {
    padding-left: 15px;
  }

  .blog-single .blog-post .col-md-4:last-child {
    padding-right: 15px;
  }

  .blog-single .blog-content p {
    font-size: 2rem;
  }

  .blog-single .blog-content ul li,
  .blog-single .blog-content ol li {
    font-size: 2rem;
  }

  .blog-single .blog-content .blog-video.scaled-video {
    margin: 9% auto;
    transform: scale(1.2);
  }

  .blog-single .blog-author .name h4 {
    font-size: 1.8rem;
  }

  .blog-single .blog-author .name p {
    font-size: 1.4rem;
  }

  .blog-banner {
    display: none;
  }

  .team-slider.slider {
    padding: 8rem 0;
    margin: 7rem 0 0;
  }

  .team-slider.slider .content {
    margin: 6rem auto 0;
  }

  .team-slider.slider .content .text {
    margin-top: 0;
  }

  .team-slider.slider .content .text p {
    font-size: 3.2rem;
  }

  .team-slider.slider .image {
    width: 50rem;
  }

  .about-wrap {
    margin: 4rem 0 0;
  }

  .leaders-wrap .leaders {
    margin: 2rem 0rem;
  }

  .all-team {
    width: 100%;
  }

  .teams {
    width: calc(20% - 2rem);
    margin: 1rem;
  }

  .team-main-wrap .section-head.text-center {
    max-width: 73rem;
    margin: 0 auto;
  }

  .middle-banner .text {
    right: 0rem;
  }

  .contact.case-stydy {
    margin: 0 0 10rem;
  }

  .contact.case-stydy .service-box {
    min-height: 29rem;
  }

  .contact.case-stydy ul li,
  .contact.case-stydy ol li {
    font-size: 18px;
    line-height: 1.65;
  }

  .contact .col-md-6:last-child {
    display: none;
  }

  .home-services .section-head.text-center {
    max-width: 76rem;
    margin: 0 auto 6rem;
  }

  #submit-resume {
    padding: 10rem 0 0;
  }

  .home-clients .section-head {
    max-width: 80rem;
  }

  .service-detail-slider.slider .content {
    margin-left: auto;
  }

  .service-detail-slider.slider .image {
    width: 50rem;
    right: auto;
    margin: 5rem auto;
  }

  .blog-service {
    padding: 10rem 0;
  }

  .service-detail-center-wrap .header-content ul li,
  .service-detail-center-wrap .header-content ol li {
    font-size: 18px;
    line-height: 1.65;
  }

  .flutter.building-apps .header-content,
  .flutter.thinkahead .header-content {
    max-width: 100%;
  }

  .iot-blog .blog-inner {
    margin: 5rem 0 16rem;
  }

  .iot-blog ul li {
    width: calc(50% - 3rem);
  }

  .iot-blog ul li:last-child {
    display: none;
  }

  .iot.about-slider.slider .content .text h2 {
    font-size: 5rem;
  }

  .iot.smart-retail {
    margin: 0 1.5rem;
  }

  .iot-grid {
    padding: 0;
  }

  .iot-slider {
    padding: 6rem 0 0;
  }

  .iot-service {
    padding: 6rem 0 0;
  }

  .iot-service .header-content {
    padding: 0 1.5rem 5rem;
  }

  .future-retail .header-content {
    max-width: 80rem;
    margin: 0 auto;
  }

  .future-retail .retail-list {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    padding-bottom: 4rem;
  }

  .future-retail ul {
    flex-wrap: wrap;
  }

  .future-retail ul li {
    width: calc(50% - 2.15rem);
  }

  .future-retail ul li:nth-child(odd) {
    margin-left: 0;
  }

  .future-retail ul li:nth-child(even) {
    margin-right: 0;
  }

  .customer-experience .header-content {
    margin: 0 auto 12rem;
    max-width: 70rem;
  }

  .smart-retail-iot ul li .icon::before,
  .smart-retail-iot ul li .icon::after {
    width: 5rem;
    left: calc(100% + 2rem);
  }

  .iot-bottom-section {
    padding: 3rem;
  }

  .iot-bottom-section h2 {
    max-width: 58rem;
    margin: 0 0 7rem;
  }

  .schedule-meeting .schedule-form {
    width: 95%;
    padding: 4.2rem 5.8rem 3rem;
  }

  .schedule-meeting .schedule-form .profile {
    margin-left: 0;
  }

  .schedule-meeting .schedule-form .profile .image {
    flex: 0 0 7.8rem;
  }

  .schedule-meeting .schedule-form .contact-form {
    margin: 0;
    padding: 1rem 0rem 0;
  }

  .smart-retail {
    margin: 0 1.5rem 16rem;
  }

  .discover-roi .box .image {
    flex: 0 0 30rem;
  }

  .discover-roi .box .content {
    padding: 2rem;
  }

  .slider-wrapper {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    padding-bottom: 46%;
    border-radius: 0;
  }

  .slider-wrapper ul.slider-img li .caption .content {
    max-width: 80rem;
  }

  .white-papper-banner {
    padding-bottom: 53%;
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
  }

  .white-papper-banner .caption .content {
    width: 73%;
    margin-left: 3rem;
  }

  .white-papper-banner .caption .content h1 {
    font-size: 4.8rem;
    margin: 2.5rem 0;
  }

  .white-papper-banner .caption .content h5 {
    font-size: 1.6rem;
  }

  .white-papper-content ul li {
    font-size: 18px;
  }

  .microsoft-xamarin .header-content h2 {
    max-width: 68rem;
    margin: 0 auto 1.4rem;
  }

  .industries-slider.slider .content {
    margin-left: auto;
  }

  .industries-slider.slider .image {
    right: auto;
  }

  .chain-processes {
    max-width: 80%;
  }

  .industries.iot-service .header-content {
    max-width: 80rem;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0;
  }

  .header>div {
    min-height: 7rem;
    background-color: var(--white);
    padding: 0 16px;
  }

  .header .nav ul.menu>li {
    padding: 0 2rem;
  }

  .header .nav ul.menu>li:nth-child(2) {
    padding: 0 5rem 0 2rem;
  }

  .header .nav ul.menu>li>.caret {
    right: 2.5rem;
  }

  .header .logo {
    max-width: 17.25rem;
  }

  .header .logo .dark {
    display: inline-block;
  }

  .header .logo .light {
    display: none;
  }

  .header .logo img {
    max-width: 100%;
  }

  .header .btn-primary {
    margin: 1.5rem;
  }

  .header.header-fixed:not(.scrolled)>div {
    background-color: transparent;
  }

  .header.header-fixed .logo .dark {
    display: inline-block;
  }

  .header.header-fixed .logo .light {
    display: none;
  }

  .header.header-fixed .nav .menu a {
    color: var(--black);
  }

  .header #menu-toggle {
    width: 28px;
    height: 28px;
  }

  .header #menu-toggle #hamburger span {
    width: 28px;
    height: 3px;
    margin: 5px 0;
  }

  .header #menu-toggle #cross span:nth-child(1) {
    width: 3px;
    left: 12.5px;
  }

  .header #menu-toggle #cross span:nth-child(2) {
    height: 3px;
    top: 12.5px;
  }

  .header.menu-open .logo-menu {
    max-width: 17.25rem;
  }

  .full-menu .full-menu-inner .top .menu {
    justify-content: flex-start;
    margin-left: 1.6rem;
  }

  .full-menu .full-menu-inner .top .menu li {
    font-size: 3.8rem;
    margin-right: 5.25rem;
  }

  .full-menu .full-menu-inner .top .menu li .toggle {
    width: 5.25rem;
    height: 6.375rem;
    font-size: 2rem;
    right: -5.25rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul {
    padding-left: 0;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li h4 {
    font-size: 2.5rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li {
    max-width: 100% !important;
    padding-left: 0;
    margin: 0 0 1rem;
  }

  .full-menu .full-menu-inner .top .fullmenu-dropdown>ul>li a {
    font-weight: 100;
  }

  .full-menu .full-menu-inner .bottom .social {
    margin: 0 auto;
  }

  .site-footer.footer .footer-content {
    padding: 2rem 0 3rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .site-footer.footer .footer-content .left {
    flex: 0 0 100%;
    padding-right: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 2rem;
  }

  .site-footer.footer .footer-content .left .content-details {
    width: 100%;
  }

  .site-footer.footer .footer-content .left .content-details .title {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.5rem;
  }

  .site-footer.footer .footer-content .left .content-details .content {
    font-size: 14px;
    letter-spacing: -0.01rem;
    margin: 0 0 0.5rem;
    font-weight: 400;
    max-width: 24rem;
  }

  .site-footer.footer .footer-content .left .content-details .content a {
    font-size: 14px;
  }

  .site-footer.footer .footer-content .right {
    flex: 0 0 100%;
    padding-left: 0;
  }

  .site-footer.footer .footer-content .right .footer-tagline {
    font-size: 2.4rem;
    margin-top: 0;
    max-width: 19rem;
  }

  .site-footer.footer .links-copyright {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .site-footer.footer .links-copyright .copyright {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .site-footer.footer .links-copyright .copyright ul {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .site-footer.footer .footer-content .right img {
    margin: 0 auto;
    display: block;
  }

  .site-footer.footer .links-copyright .links {
    flex: 0 0 auto;
    margin: 0 0 1.5rem;
  }

  .header.scrolled {
    padding: 0;
  }

  .slider {
    padding: 0;
    height: 100%;
    margin-top: 7rem !important;
    margin-bottom: 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .slider .content {
    max-width: 100%;
    margin-left: 0;
    height: 100%;
    margin: 3rem 0 4rem;
    order: 2;
    justify-content: center;
  }

  .slider .content .text {
    padding: 0 1.5rem;
    text-align: center;
    max-width: 42rem;
  }

  .slider .content .text h3 {
    font-size: 3.2rem;
  }

  .slider .content .text h1,
  .slider .content .text h2 {
    font-size: 3.7rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .slider .content .text p {
    font-size: 2.9rem;
  }

  .slider .image {
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    border-radius: 0;
    position: relative;
    left: 0;
    top: 0;
  }

  .slider .image::before {
    padding-bottom: 83%;
  }

  .slider .image .lottie-wrapper {
    top: 50%;
    left: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    -webkit-transform: translate(-50%, -50%) scale(0.8);
  }

  .slider .lottie-image::before {
    padding-bottom: 100%;
  }

  .mousey {
    width: 2px;
    padding: 4px 9px;
  }

  .different {
    margin: 6rem 2rem;
  }

  .different .section-head {
    margin: 0 0 5rem;
  }

  .different .section-head h2 {
    font-size: 3.5rem;
    line-height: 1.4;
  }

  .different ol>li {
    padding: 0 15px;
  }

  .different ol>li .text {
    font-size: 2.2rem;
    padding: 3rem 4rem;
    margin: 0 0 4rem;
    border-radius: 0.6rem;
  }

  .different ol>li::before {
    font-size: 3.6rem;
    top: 0;
    left: auto;
    right: 4rem;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }

  .why {
    margin: 0 0 4rem;
    padding: 4rem 0;
  }

  .why .from {
    margin: 0 2rem 4rem;
    padding: 3rem 3rem 3rem 2rem;
    max-width: 100%;
    border-radius: 0.6rem;
  }

  .why .from h3 {
    font-size: 3rem;
  }

  .why .text {
    margin: 4rem 0 0;
    padding: 0 1.5rem;
  }

  .why .text h2 {
    max-width: 32rem;
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .why .text .btn {
    margin-top: 1rem;
  }

  .why .lottie-wrapper {
    width: 70%;
    margin: 0 auto;
  }

  .what {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .what .col-md-4 {
    padding: 0 15px;
  }

  .what h3 {
    max-width: 33rem;
  }

  .what .service-box {
    margin-bottom: 2rem;
    display: block;
  }

  .what .service-box .title {
    padding: 1.5rem;
  }

  .journey {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .journey .col-md-4 {
    padding: 0 15px;
  }

  .journey h3 {
    max-width: 38rem;
  }

  .journey .service-box {
    margin-bottom: 2rem;
    display: block;
  }

  .journey .service-box .title {
    padding: 1.5rem;
  }

  .business {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .business .text {
    margin: 0 0 2rem;
  }

  .business .text h3 {
    max-width: 38rem;
  }

  .chatboats {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .chatboats .text {
    margin: 0 0 3.5rem;
  }

  .chatboats .text h3 {
    max-width: 38rem;
  }

  .global {
    margin: 0 0 6rem;
    padding: 2rem 1.5rem 0;
  }

  .global .section-head {
    padding: 2rem 0 0;
    margin: 0 0 4rem;
  }

  .global .section-head h2 {
    font-size: 3.2rem;
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.4;
  }

  .global ul {
    padding: 0 0 2rem;
    flex-wrap: wrap;
  }

  .global ul>li {
    width: 85%;
    margin: 0 auto 3rem;
    border-radius: 0.6rem;
    border: 1px solid #dbdbdb;
    padding: 3rem;
  }

  .global ul>li span {
    margin: 0;
    font-size: 6rem !important;
  }

  .global ul>li p {
    max-width: 27rem;
    margin: 0 auto;
    font-size: 2rem;
  }

  .global ul>li::after {
    content: none;
  }

  .fortune {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .fortune h3 {
    margin: 0 0 2rem;
    max-width: 38rem;
  }

  .fortune p {
    margin: 0 0 2rem;
    font-size: 2.3rem;
  }

  .fortune .clients-logo {
    padding: 2rem;
  }

  .fortune .clients-logo ul>li {
    width: 33.3333333333%;
  }

  .fortune .clients-logo ul>li:nth-child(n+7) {
    display: none;
  }

  .fortune .clients-logo ul>li:nth-child(4) img {
    -webkit-transform: scale(0.65);
    -moz-transform: scale(0.65);
    transform: scale(0.65);
  }

  .fortune .link {
    margin: 0.8rem 0 0;
  }

  .portfolio-home {
    height: 100%;
    overflow: visible;
    background: var(--white);
    border: 0;
  }

  .portfolio-home .portfolio-lists>li {
    height: 100%;
    overflow: visible;
  }

  .portfolio-home .portfolio-lists .portfolio-left {
    padding: 0 3rem;
    height: 100%;
  }

  .portfolio-home .portfolio-lists .portfolio-left .portfolio-left-inner {
    margin-top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-left .top-text {
    margin: 5rem auto 9rem;
    transform: translateX(0px);
  }

  .portfolio-home .portfolio-lists .portfolio-left .top-text h3 {
    max-width: 36rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .client-info .client-logo .patch {
    display: block !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .client-info p {
    max-width: 59rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology {
    top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon {
    width: 8.5rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.75) !important;
    -moz-transform: translate(-50%, -50%) scale(0.75) !important;
    -webkit-transform: translate(-50%, -50%) scale(0.75) !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .store-link {
    margin: 2rem 0 3rem;
    top: 0;
  }

  .portfolio-home .portfolio-lists .portfolio-right {
    margin: 0 0 6rem;
    left: 0;
    width: 100%;
  }

  .portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg {
    padding-bottom: 56.25%;
  }

  .portfolio-home .portfolio-lists .portfolio-right .portfolio-right-bg img {
    left: 50%;
    opacity: 1;
    height: 100%;
    width: 100%;
  }

  .portfolio-home .skip {
    display: none;
  }

  .portfolio-home .slide-count {
    display: none;
  }

  .blog-home {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .blog-home h3 {
    margin: 0 0 2rem;
    max-width: 33rem;
  }

  .blog-home p {
    margin: 0 0 2rem;
    max-width: 34rem;
  }

  .blog-home .carousel-wrapper {
    margin: 0 0 2rem;
    padding: 3rem 0;
  }

  .blog-home .carousel-wrapper::after {
    left: 6rem;
    border-radius: 0.6rem;
  }

  .blog-home .carousel-wrapper .prev {
    display: none;
  }

  h1,
  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 3.5rem;
    margin: 0 0 2rem;
    line-height: 1.2;
  }

  h4 {
    font-size: 2.7rem;
    margin: 0 0 2rem;
  }

  p {
    font-size: 2.3rem;
  }

  p.small {
    font-size: 1.8rem;
  }

  .mb-16 {
    margin-bottom: 6rem !important;
  }

  .mt-16 {
    margin-top: 6rem !important;
  }

  .mt-10 {
    margin-top: 6rem !important;
  }

  .mobile-break {
    display: block;
  }

  .top-page-banner {
    padding: 7rem 0 0;
  }

  .top-page-banner .page-title-wrap h1 {
    font-size: 4.8rem;
  }

  .top-page-banner .page-title-wrap p {
    max-width: 38rem;
    line-height: 1.5;
    font-size: 2.1rem;
  }

  .video-wrap {
    margin: 0 0 6rem;
  }

  .table tbody td {
    font-size: 1.8rem;
  }

  .table tbody td p {
    font-size: 1.8rem !important;
  }

  .faq h2 {
    font-size: 3.2rem;
    line-height: 1.6;
  }

  .faq .accordion .accordion-item .accordion-button {
    min-height: 6rem;
    padding: 1rem 3rem 1rem 0;
  }

  .faq .accordion .accordion-item .accordion-button .accordion-heading h3 {
    font-size: 2.05rem;
  }

  .faq .accordion .accordion-item .accordion-button .accordion-marker {
    width: 3rem;
  }

  .faq .accordion .accordion-item .accordion-inner p {
    font-size: 1.9rem;
    margin: 0 3rem 1rem 0 !important;
  }

  .wrapper {
    padding: 0;
  }

  .tab-break {
    display: none;
  }

  .tab-break.mobile-break {
    display: block;
  }

  .back-to-top {
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .back-to-top img {
    max-width: 12px;
  }

  #cookie-law-info-bar {
    max-width: 100%;
    left: 0;
  }

  .cli-bar-btn_container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cli_settings_button {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0 0.6rem !important;
  }

  .mouse-cursor {
    display: none !important;
  }

  .chat-popup .chat-screen {
    width: 38.4rem;
  }

  .contact-form {
    margin: -6rem 0 6rem;
    padding: 3rem 1.5rem;
  }

  .contact.case-stydy {
    margin: 0 1.5rem 6rem;
  }

  .contact.case-stydy .service-box .title h2 {
    margin-bottom: 5.5rem;
  }

  .contact.case-stydy .col-md-6:last-child {
    display: block;
  }

  .contact.case-stydy ul li,
  .contact.case-stydy ol li {
    font-size: 2.3rem;
  }

  .scroll-downs {
    display: none;
  }

  .thank-you {
    padding: 10rem 0;
  }

  .thank-you .lottie-wrapper {
    max-width: 21rem;
  }

  .thank-you h1 {
    font-size: 6rem;
  }

  .thank-you p {
    line-height: 1.5;
    font-size: 2.1rem;
    max-width: 38rem;
  }

  .testimonial .item {
    padding: 1rem 3rem;
  }

  .testimonial .item .testimonial-box {
    padding: 5.5rem 3rem 3.8rem;
    border: 1px solid #ebebeb;
  }

  .testimonial .item .testimonial-box::after {
    content: none;
  }

  .testimonial .item .testimonial-box::before {
    content: none;
  }

  .testimonial .item .testimonial-box .client-detail strong {
    display: block;
  }

  .testimonial .item .testimonial-box .client-detail::after {
    content: none;
  }

  .testimonial .item .testimonial-top::after {
    left: -1rem;
    top: -1rem;
    width: 3rem;
  }

  .testimonial .item .testimonial-top::before {
    content: none;
  }

  .about-slider.slider {
    padding: 0;
    margin: 6rem 0;
  }

  .about-slider.slider .content {
    margin: 0;
    max-width: 100%;
  }

  .about-slider.slider .content .text h2,
  .about-slider.slider .content .text h1 {
    font-size: 4.3rem;
  }

  .about-slider.slider .content .text p {
    font-size: 2.9rem;
  }

  .about-slider .image.lottie-image {
    max-width: 100%;
    position: relative;
  }

  .about-slider .image.lottie-image::before {
    content: "";
    display: block;
    padding-bottom: 85%;
  }

  .about-slider .image.lottie-image .lottie-wrapper {
    top: 50%;
    left: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0.75);
    -moz-transform: translate(-50%, -50%) scale(0.75);
    -webkit-transform: translate(-50%, -50%) scale(0.75);
  }

  .about-awards {
    padding: 0 1.5rem;
  }

  .about-awards .header-content {
    margin: 6rem 0;
  }

  .about-awards .award-details {
    flex-wrap: wrap;
  }

  .about-awards .awards-name::after {
    content: none;
  }

  .about-global.global {
    margin: 0 0 6rem;
  }

  .full-width-img {
    padding-bottom: 45%;
    margin: 0rem 0 10rem;
  }

  .section-links ul li a {
    font-size: 1.6rem !important;
    width: 9.8rem;
  }

  .building-apps,
  .thinkahead {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .awards,
  .our-work {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .awards ul li,
  .our-work ul li {
    width: 100%;
    margin: 0;
  }

  .awards .awards-text p,
  .our-work .awards-text p {
    font-size: 2.3rem;
  }

  .awards .awards-box,
  .our-work .awards-box {
    height: 160px;
  }

  .about-awards .awards-box {
    height: 160px;
  }

  .about-awards .awards-text p {
    font-size: 1.8rem;
  }

  .partners-home {
    padding: 8rem 0 0;
    margin: 0 1.5rem;
  }

  .partners-home .partners-logo>li {
    width: calc(50% - 1rem);
  }

  .partners-home .partners-logo>li:nth-child(even) {
    margin-right: 0;
  }

  .partners-home .partners-logo>li:nth-child(odd) {
    margin-left: 0;
  }

  .partners-home .bottom-text {
    padding: 0 1.5rem;
  }

  .global-presence {
    padding: 6rem 1.5rem;
  }

  .global-presence .connect-box {
    padding-left: 0;
    padding-right: 0;
    margin-top: 4rem;
  }

  .global-presence .connect-box::after {
    content: none;
  }

  .about-fortune.fortune {
    margin: 0;
  }

  .about-fortune.fortune .clients-logo {
    background: var(--white);
  }

  .about-fortune.fortune .clients-logo ul>li:nth-child(n+7) {
    display: none;
  }

  .our-work ul li {
    width: 80%;
    margin: 0;
  }

  .our-work .awards-box {
    height: 115px;
  }

  .about-team .about-leaders ul li {
    width: calc(50% - 1rem);
    margin: 1.5rem 1rem 3rem;
    display: inline-block;
  }

  .about-team .about-leaders ul li:nth-child(even) {
    margin-right: 0;
  }

  .about-team .about-leaders ul li:nth-child(odd) {
    margin-left: 0;
  }

  .not-found {
    padding: 10rem 0;
  }

  .not-found .lottie-wrapper {
    max-width: 38rem;
  }

  .not-found h1 {
    font-size: 4rem;
  }

  .not-found p {
    line-height: 1.5;
    font-size: 2.1rem;
    max-width: 38rem;
  }

  .case-study-banner {
    padding-bottom: 68%;
    margin: 7rem 0 6rem;
    width: 100%;
  }

  .case-study-banner .caption .banner-logo {
    width: 24rem;
  }

  .case-study-banner .caption .banner-logo::after {
    content: "";
    display: block;
    padding-bottom: 45%;
  }

  .case-study-banner .caption .banner-logo img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    object-fit: contain;
  }

  .case-study-banner .caption h2,
  .case-study-banner .caption h1 {
    font-size: 3.2rem;
  }

  .case-heading {
    margin: 0 0 10rem;
  }

  .case-heading .image {
    margin-right: 2rem;
  }

  .case-heading .content {
    margin: -4rem 0 0 2rem;
    padding: 2rem 3rem;
  }

  .case-study-awards {
    margin: 9rem 0 6rem;
  }

  .case-study-awards .awards-logo {
    margin: 0 0 4rem;
  }

  .case-study-awards .awards-logo li {
    margin: 0 1rem;
  }

  .case-summary-details {
    margin: 0 0 10rem;
    padding: 0 1.5rem;
  }

  .case-summary-details .summary-content {
    margin: 0 0 3rem;
  }

  .case-summary-details .image {
    margin: 3rem 5rem 0;
  }

  .case-summary-details .image::before {
    top: -8rem;
    left: 7rem;
    width: 60rem;
    height: 60rem;
  }

  .case-summary-details .flex-md-row-reverse .summary-content {
    margin: 5rem 0 3rem;
  }

  .case-summary-details .flex-md-row-reverse .image {
    margin: 3rem 5rem 0 !important;
  }

  .case-summary-details .flex-md-row-reverse .image::before {
    top: -8rem;
    right: 8rem;
    width: 60rem;
    height: 60rem;
  }

  .case-summary-details .flex-md-row-reverse+.row {
    margin-top: 0;
  }

  .case-summary-details .flex-md-row-reverse+.row .summary-content {
    margin: 5rem 0 3rem;
  }

  .case-summary-details.case-summary-teblet .row+.row {
    margin-top: 0rem;
  }

  .case-summary-details.case-summary-teblet .image {
    margin-left: 5rem;
  }

  .case-summary-details.case-summary-teblet .flex-md-row-reverse .image {
    margin: 3rem 5rem 0 !important;
  }

  .technology-stack {
    margin: 0 0 6rem;
  }

  .technology-stack .icons-with-text ul li {
    width: 44%;
    margin-bottom: 0;
  }

  .technology-stack .icons-with-text ul li::before {
    width: 4rem;
    left: -2rem;
    background-size: 8rem;
  }

  .technology-stack .icons-with-text ul li:nth-child(2n+1):before {
    display: none;
  }

  .case-study-mobile {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .case-study-mobile .image {
    max-width: 100%;
  }

  .case-study-mobile .row {
    position: relative;
  }

  .case-study-mobile .row .col-6:nth-child(n+3) {
    display: none;
  }

  .case-study-mobile .row::after {
    content: "";
    position: absolute;
    bottom: -1px;
    background: #fff;
    box-shadow: 0 -2px 5px -3px rgba(0, 0, 0, 0.18);
    width: calc(100% + 4rem);
    height: 5rem;
    left: -2rem;
  }

  .case-study-mobile.case-study-mobile-single .row::after {
    content: none;
  }

  .column-5 {
    margin: 0 0 2rem;
  }

  .column-5 ul {
    position: relative;
  }

  .column-5 ul li {
    max-width: none;
    margin: 0 2rem;
    width: calc(50% - 3rem);
  }

  .column-5 ul li:first-child {
    margin-left: 1rem;
  }

  .column-5 ul li:nth-child(2) {
    margin-right: 1rem;
  }

  .column-5 ul li:nth-child(n+3) {
    display: none;
  }

  .column-5 ul::after {
    content: "";
    position: absolute;
    bottom: -1px;
    background: #fff;
    box-shadow: 0 -2px 5px -3px rgba(0, 0, 0, 0.18);
    width: calc(100% + 4rem);
    height: 5rem;
    left: -2rem;
  }

  .we-did {
    margin: 0 0 4rem;
    padding: 0 1.5rem;
  }

  .we-did .header-content {
    margin: 0 0 6rem;
  }

  .we-did .image {
    max-width: 12.3rem;
    margin: 0.2rem;
  }

  .we-did .image-tablet {
    max-width: calc(50% - 1rem);
    margin: 0 0.5rem;
  }

  .case-testimonial {
    margin: 0 0 10rem;
    padding: 0 1.5rem;
  }

  .case-testimonial h3 {
    margin: 0 0 1.5rem;
    font-size: 3.5rem;
  }

  .case-testimonial h3::before {
    content: none;
  }

  .case-testimonial p {
    margin-left: 0;
    font-size: 2.1rem;
  }

  .app-links {
    margin: 0 0 10rem;
  }

  .app-links a img {
    max-width: 11.5rem;
    margin: 0 0.3rem;
  }

  .case-global {
    margin: 0 0 6rem;
  }

  .case-study-wireframe {
    margin: 0 0 6rem;
  }

  .case-study-wireframe ul li {
    flex-basis: calc(100% - 15rem);
    width: calc(100% - 15rem);
    margin: 0 0.5rem;
  }

  .case-study-wireframe ul li:first-child {
    margin-left: 0;
  }

  .case-study-wireframe ul li:last-child {
    display: none;
  }

  .case-summary-details.case-summary-landscape {
    margin: 0 0 10rem;
  }

  .case-summary-details.case-summary-landscape .row+.row {
    margin-top: 5rem;
  }

  .case-summary-details.case-summary-landscape .flex-md-row-reverse .summary-content {
    margin: 0 0 3rem;
  }

  .case-bottom-heading {
    margin: 0 0 10rem;
  }

  .case-bottom-heading .case-bottom-img {
    padding: 0 3rem;
  }

  .case-bottom-heading .case-bottom-img img {
    height: 100%;
    object-fit: contain;
  }

  .full-width-text h4 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .portfolio-slider.slider {
    padding: 2rem 0;
  }

  .portfolio-slider.slider .content {
    margin: 2rem 0;
    width: 100%;
  }

  .portfolio-slider.slider .content .text {
    max-width: 100%;
  }

  .portfolio-slider.slider .content .text h2,
  .portfolio-slider.slider .content .text h1 {
    font-size: 4.3rem;
  }

  .case-stydy .service-box {
    min-height: 40rem;
  }

  .case-stydy .service-box .title {
    padding: 3rem 2rem;
  }

  .case-stydy .service-box .title h2 {
    font-size: 3.6rem;
  }

  .app-development-logo ul {
    padding-left: 0;
  }

  .app-development-slider.slider {
    margin: 0 0 6rem;
  }

  .app-development-slider.slider .content {
    order: inherit;
  }

  .app-development-form {
    margin-right: 0;
    margin-top: 0;
    padding: 0 3rem;
  }

  .app-development-chartboats.chatboats {
    margin: 0 0 6rem;
  }

  .app-development-chartboats.chatboats .text {
    margin: 0 0 2rem;
  }

  .landing-page-new.slider {
    padding: 0;
    margin: 15rem 0 4rem;
  }

  .landing-page-new.slider .content {
    max-width: 100%;
    margin-left: 0;
  }

  .landing-page-new.slider .image {
    width: 29rem;
  }

  .landing-page-new.our-work {
    padding: 0;
  }

  .landing-page-new.our-work ul {
    margin: 0;
  }

  .landing-page-new.our-work ul li {
    width: 33.3333333333%;
  }

  .landing-page-new.our-work .awards-box {
    height: 83px;
    padding: 1rem;
    margin-bottom: 0;
  }

  .landing-page-new.our-work .awards-box img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.75);
    -moz-transform: translate(-50%, -50%) scale(0.75);
    -webkit-transform: translate(-50%, -50%) scale(0.75);
  }

  .landing-page-new.global ul {
    padding: 0;
  }

  .landing-page-new.global ul li>span::after {
    top: 105%;
  }

  .landing-page-new.fortune {
    margin: 0 0 6rem;
  }

  .landing-page-new.global {
    margin-top: 0;
  }

  .success-stories {
    margin: 0 0 3rem;
  }

  .success-stories .row>.col:first-child:first-child .box,
  .success-stories .row>[class*=col-]:first-child .box {
    margin-right: auto;
  }

  .success-stories .row>.col:first-child:last-child .box,
  .success-stories .row>[class*=col-]:last-child .box {
    margin-left: auto;
  }

  .success-stories .box {
    margin-bottom: 3rem;
    min-height: auto;
  }

  .success-stories .box.large-box {
    max-width: 38rem;
    min-height: auto;
  }

  .success-stories .col-md-4 {
    padding: 0 15px;
  }

  .director {
    margin: 0 0 4rem;
  }

  .director .text {
    margin-top: 3rem;
  }

  .director .text p {
    font-size: 2rem;
  }

  .director .text .name {
    font-size: 2rem;
  }

  .landing-page-portfolio ul li {
    margin: 0 0 3rem;
  }

  .landing-page-banner {
    padding: 2rem 1.5rem 3rem;
    width: 100%;
    margin-left: 0;
    margin: 0 0 6rem;
  }

  .landing-page-banner h2,
  .landing-page-banner h1 {
    font-size: 4.3rem;
    margin: 5rem 0 1rem;
  }

  .landing-page-banner .contact-form {
    padding: 0;
    margin: 2rem 0 0;
  }

  .landing-page-container {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .landing-page-container .image {
    padding: 3rem 0 0;
  }

  .landing-page-container.bg-gray {
    padding: 4rem 1.5rem;
    width: 100%;
    margin-left: 0;
  }

  .landing-page-container.fortune {
    margin: 6rem 0;
  }

  .blog-headline {
    margin: 7rem 0 0rem;
    padding: 0 1.5rem;
  }

  .blog-headline .content .text {
    margin-top: 6rem;
  }

  .blog-headline .content .text h2,
  .blog-headline .content .text h1 {
    font-size: 4.3rem;
  }

  .blog-post {
    margin: 2rem 0;
    padding: 0 1.5rem;
  }

  .trending-blogs {
    padding: 0 1.5rem;
  }

  .trending-blogs .col-md-4 {
    padding: 0 15px;
  }

  .blog .blog-carousel-wrap .blog-carousel-main .item::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .blog .blog-carousel-wrap .blog-carousel-main .item .caption {
    padding: 2rem 0;
  }

  .blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text h2 {
    font-size: 3rem;
  }

  .blog .blog-carousel-wrap .blog-carousel-main .item .caption .caption-text p {
    margin-bottom: 0;
  }

  .blog .blog-carousel-wrap .lSSlideOuter .lSPager.lSpg {
    margin-top: -2.8rem !important;
    margin-bottom: 1rem;
  }

  .blog-subscribe {
    padding: 2rem;
  }

  .blog-subscribe .text {
    font-size: 3.2rem;
  }

  .blog-subscribe .title {
    font-size: 1.8rem;
  }

  .blog-modal .blog-subscribe {
    max-width: 300px;
    min-width: 300px;
  }

  .emaillist .es-field-wrap label input[type=email] {
    padding-left: 5px;
    padding-right: 97px;
  }

  .blog-single {
    margin: 7rem 0 0;
    padding: 4rem 1.5rem 0;
  }

  .blog-single .header-content h2,
  .blog-single .header-content h1 {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .blog-single .header-content .subtitle {
    margin: 0;
  }

  .blog-single .author-detail .image {
    width: 6rem;
    height: 6rem;
  }

  .blog-single .author-detail .details {
    width: calc(100% - 6rem);
    padding: 0 0 0 1rem;
  }

  .blog-single .author-detail .details .content {
    width: calc(100% + 7rem);
    margin-left: -7rem;
    margin-top: 2.5rem;
  }

  .blog-single .blog-follow {
    margin: 5rem 0 0;
  }

  .blog-single .blog-post {
    padding: 5rem 0 2rem;
  }

  .blog-single .blog-post .blog-listing .listing-content .title {
    font-size: 2.2rem;
  }

  .blog-single .blog-post .row .col-sm-6 {
    margin-bottom: 1rem;
  }

  .blog-single .blog-post .col-md-4 {
    padding: 0 15px;
  }

  .blog-single .row .offset-lg-1 {
    order: 2;
  }

  .blog-single .sidebar {
    left: 0;
    position: relative;
    margin: 6rem 0 3rem;
    display: block;
  }

  .blog-single .sidebar h3 {
    font-size: 2.6rem;
  }

  .blog-single .sidebar ul li a {
    font-size: 1.8rem;
  }

  .blog-single .sidebar .blog-social-icon {
    margin-left: 0;
    margin-top: 0;
  }

  .blog-single .blog-content p {
    font-size: 2.05rem;
    line-height: 1.65;
  }

  .blog-single .blog-content h3,
  .blog-single .blog-content h4 {
    font-size: 2.6rem;
  }

  .blog-single .blog-content ul li {
    font-size: 2.05rem;
    line-height: 1.6;
  }

  .blog-single .blog-content .blog-getInTouch .content {
    width: 100%;
  }

  .blog-single .blog-content .blog-getInTouch .content .title {
    font-size: 2.4rem;
  }

  .blog-single .blog-content .blog-getInTouch .content .text {
    font-size: 2rem;
  }

  .blog-single .blog-content .blog-getInTouch .link-btn {
    margin-left: 0;
    margin-top: 2rem;
  }

  .blog-single .blog-content .blog-getInTouch .link-btn .btn {
    font-size: 1.8rem;
  }

  .blog-single .blog-content blockquote p {
    font-size: 2rem;
  }

  .blog-single .blog-content img.scaled-img {
    max-width: 100%;
    width: 100%;
  }

  .blog-single .blog-content .blog-video.scaled-video {
    margin: 0px auto 4rem;
    transform: scale(1);
  }

  .blog-single .blog-social-icon {
    margin-left: 6.5rem;
    margin-top: 0.5rem;
  }

  .blog-single .blog-social-icon ul li a img {
    width: 3rem;
    height: 3rem;
  }

  .blog-single .blog-author .name h4 {
    font-size: 1.8rem;
  }

  .blog-single .blog-author .name p {
    font-size: 1.5rem;
  }

  .blog-single .blog-author .image {
    width: 6rem;
    height: 6rem;
  }

  .press.blog-content {
    margin-bottom: 6rem;
  }

  .service-detail-slider.slider .content {
    width: 100%;
    margin-left: 0;
  }

  .service-detail-slider.slider .content .text h2,
  .service-detail-slider.slider .content .text h1 {
    font-size: 4.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
  }

  .service-detail-slider.slider .image {
    width: 80%;
    object-fit: contain;
  }

  .blog-service {
    padding: 10rem 1.5rem;
  }

  .blog-service .carousel-wrapper {
    margin: 0 0 2rem;
    padding: 3rem 0;
  }

  .blog-service .carousel-wrapper .prev {
    display: none;
  }

  .blog-service .carousel-wrapper::after {
    left: 6rem;
    border-radius: 0.6rem;
  }

  .blog-service p {
    margin: 0 23% 3.6rem 0;
  }

  .service-detail-center-wrap {
    margin: 8rem 1.5rem 6rem;
  }

  .service-detail-center-wrap .header-content ul li,
  .service-detail-center-wrap .header-content ol li {
    font-size: 2.3rem;
  }

  .service-detail-list-wrap {
    padding: 0 1.5rem;
  }

  .service-detail-list-wrap .header-content img {
    margin-bottom: 3.5rem;
  }

  .service.contact.case-stydy {
    padding: 6rem 1.5rem;
    margin: 0;
  }

  .service.contact.case-stydy.top {
    margin: 0;
    padding-bottom: 0;
  }

  .blog-home {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .blog-home h3 {
    margin: 0 0 2rem;
    max-width: 33rem;
  }

  .blog-home p {
    margin: 0 0 2rem;
    max-width: 34rem;
  }

  .blog-home .carousel-wrapper {
    margin: 0 0 2rem;
    padding: 3rem 0;
  }

  .blog-home .carousel-wrapper::after {
    left: 6rem;
    border-radius: 0.6rem;
  }

  .blog-home .carousel-wrapper .prev {
    display: none;
  }

  .grid-item {
    text-align: center;
  }

  .grid-item .icon {
    width: 8rem;
    margin-bottom: 2rem;
  }

  .grid-item .icon-small {
    display: none;
  }

  .grid-item .grid-contnet {
    width: 100%;
    margin: 0;
  }

  .service-faq {
    margin: 0 0 6rem;
  }

  .flutter.future-retail ul li {
    width: 100%;
    margin: 0;
  }

  .flutter .grid-item {
    padding: 0;
  }

  .flutter .grid-item .grid-contnet h4 {
    margin: 1rem 0 0;
  }

  .flutter.building-apps .header-content p,
  .flutter.thinkahead .header-content p {
    margin: 0 0 3.4rem;
  }

  .team-slider.slider {
    margin: 7rem 0 5rem;
    padding: 4rem 0 0;
  }

  .team-slider.slider .content {
    margin: 0;
  }

  .team-slider.slider .content .text {
    margin-top: 4rem;
  }

  .team-slider.slider .content .text h2,
  .team-slider.slider .content .text h1 {
    font-size: 4.3rem;
  }

  .about-wrap {
    margin: 6rem 0 0;
    padding: 0 1.5rem;
  }

  .leaders-wrap {
    margin: 0 0 6rem;
    padding: 6rem 0 0;
  }

  .leaders-wrap .leaders .thumbnail {
    width: 10rem;
  }

  .leaders-wrap .leaders .content {
    margin: 0 0 0 11.5rem;
  }

  .teams {
    width: calc(50% - 1rem);
    margin: 1rem;
  }

  .teams:nth-child(odd) {
    margin-left: 0;
  }

  .teams:nth-child(even) {
    margin-right: 0;
  }

  .team-main-wrap {
    padding: 0;
  }

  .middle-banner {
    margin: 0 0 6rem;
  }

  .middle-banner img {
    height: 20rem;
    object-fit: cover;
  }

  .middle-banner .text {
    right: auto;
    max-width: 35rem;
    padding: 0 1.5rem 0 3rem;
  }

  .middle-banner .text h4 {
    font-size: 2.7rem;
    letter-spacing: -0.05rem;
    line-height: 1.2;
  }

  .team.our-work .awards-box {
    height: 115px;
  }

  .team.our-work .awards-box img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.75);
    -moz-transform: translate(-50%, -50%) scale(0.75);
    -webkit-transform: translate(-50%, -50%) scale(0.75);
  }

  .home-services {
    padding: 0 1.5rem;
  }

  #submit-resume {
    padding: 6rem 0;
    margin: 0;
  }

  .home-clients {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .job-section {
    margin: 7rem 0 6rem;
    padding: 3rem 1.5rem 0;
  }

  .job-section ul {
    padding-left: 2.3rem;
  }

  .insight .row .offset-lg-1 {
    order: 0;
  }

  .insight .blog-content .iot-slider {
    padding: 0rem 0 0;
    background: var(--white);
  }

  .owl-carousel .owl-item .item .caption p {
    margin: 0 0 1rem;
  }

  .iot-blog {
    margin: 6rem 1.5rem;
  }

  .iot-blog .blog-inner {
    margin: 0rem 0 6rem;
  }

  .iot-blog .blog-inner .btn-animate-1 {
    top: 0;
  }

  .iot-blog .blog-inner::after {
    content: none;
  }

  .iot-blog ul li {
    width: 100%;
    margin: 0 0 3rem;
  }

  .iot-blog ul li:last-child {
    display: block;
  }

  .iot.about-slider.slider {
    padding: 6rem 0;
  }

  .iot.about-slider.slider .content .text h2 {
    font-size: 4.3rem;
  }

  .iot-slider {
    padding: 6rem 2rem 0;
  }

  .owl-carousel .owl-item .item .caption p {
    font-size: 12px;
    max-width: 38rem;
  }

  .iot-service {
    padding: 6rem 1.5rem 2rem;
  }

  .iot-service .header-content {
    padding: 0 1.5rem 5rem;
  }

  .iot-team {
    margin: 16rem 0 0;
    padding: 2rem;
    background-color: #ebebeb;
  }

  .iot-team ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .iot-team ul li {
    width: 100%;
    font-size: 1.8rem;
    display: inline-block;
    padding-left: 4rem;
    position: relative;
    margin: 0 0 2rem;
  }

  .iot.about-awards {
    padding: 6rem 1.5rem 0;
  }

  .iot-banner {
    padding: 0 2.5rem;
  }

  .iot-banner .image {
    width: 100%;
  }

  .iot-banner .image::before {
    padding-bottom: 0;
  }

  .iot-banner .image img {
    position: static;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
  }

  .smart-retail {
    margin: 4rem 1.5rem 6rem;
  }

  .smart-retail .header-content h1 {
    font-size: 4.1rem;
  }

  .smart-retail .header-content p {
    font-size: 2.9rem;
  }

  .smart-retail .image {
    width: 100%;
  }

  .smart-retail img {
    width: 100%;
  }

  .smart-retail .breadcrumbs-container img {
    max-width: 1.5rem;
  }

  .smart-retail .breadcrumbs li {
    font-size: 1.6rem;
  }

  .smart-retail .breadcrumbs li a {
    font-size: 1.6rem;
  }

  .future-retail {
    margin: 0 3rem 6rem;
  }

  .future-retail ul li {
    width: 100%;
    margin: 0;
  }

  .future-retail ul li .retail-card {
    padding: 4rem 0 0;
  }

  .customer-experience {
    margin: 0 1.5rem 6rem;
  }

  .customer-experience .header-content {
    margin: 0 0 4rem;
  }

  .customer-experience .grid {
    margin: 0 0 3rem;
  }

  .customer-experience .grid .grid-image {
    flex: 0 0 8rem;
  }

  .customer-experience .grid .grid-content {
    margin-left: 1.5rem;
  }

  .customer-experience .grid .grid-content ul {
    padding-left: 1rem;
  }

  .smart-retail-iot {
    margin: 0 0 6rem;
  }

  .smart-retail-iot .header-content {
    margin: 0 0 3.5rem;
  }

  .smart-retail-iot ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .smart-retail-iot ul li {
    width: 33.3333333333%;
    margin: 0 0 4rem;
  }

  .smart-retail-iot ul li:nth-child(3) .icon::after {
    content: none;
  }

  .smart-retail-iot ul li .icon {
    width: 6rem;
  }

  .smart-retail-iot ul li .icon::after,
  .smart-retail-iot ul li .icon::before {
    width: 3rem;
    left: calc(100% + 2rem);
  }

  .smart-retail-iot ul li .icon::after {
    border-top: 3px dashed #333;
  }

  .smart-retail-iot ul li .text {
    margin: 2rem 0 0;
    font-size: 1.5rem;
  }

  .iot-bottom-section {
    margin: 0 0 6rem 1.5rem;
    width: 94%;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    padding: 3rem 3rem 0;
  }

  .iot-bottom-section h2 {
    font-size: 3.6rem;
  }

  .iot-bottom-section ul {
    flex-wrap: wrap;
    margin: 0;
  }

  .iot-bottom-section ul li {
    width: 100%;
    margin: 0 0 3rem;
  }

  .schedule-meeting {
    margin: 0 1.5rem 6rem;
  }

  .schedule-meeting .schedule-form {
    width: 100%;
    padding: 3rem;
  }

  .schedule-meeting .schedule-form .header-content {
    margin: 0 0 4rem;
  }

  .schedule-meeting .schedule-form .profile {
    margin-bottom: 4rem;
  }

  .schedule-meeting .schedule-form .profile .image {
    flex: 0 0 7rem;
  }

  .schedule-meeting .schedule-form .profile .content {
    margin-left: 1.5rem;
  }

  .schedule-meeting .schedule-form .profile .content p {
    margin: 0;
  }

  .iot.smart-retail {
    margin: 0 2.5rem;
  }

  .iot.future-retail {
    margin: 0 2.5rem;
    padding: 0;
  }

  .iot.customer-experience {
    margin: 0 1.5rem;
    padding: 6rem 0 0;
  }

  .iot.about-awards .header-content {
    margin: 0 0 6rem;
  }

  .iot-slider {
    padding: 0;
  }

  .iot-grid {
    margin: 0;
    background: #fafafa;
    padding: 4rem 1.5rem 2rem;
  }

  .iot-grid .header-content {
    text-align: left;
  }

  .iot-grid .header-content p {
    margin: 0 0 4rem;
  }

  .iot-grid .grid-item {
    padding: 0 0 1rem;
    text-align: left;
  }

  .iot-grid .grid-item .grid-contnet h4 {
    margin: 0;
  }

  .iot-faq {
    margin: 0 0 6rem;
    padding: 0 1.5rem;
  }

  .discover-roi {
    margin: 6rem 0;
    padding: 4rem 1.5rem;
  }

  .discover-roi .box {
    flex-wrap: wrap;
  }

  .discover-roi .box .image {
    flex: 0 0 100%;
  }

  .discover-roi .box .content h3 {
    font-size: 2.5rem;
  }

  .discover-roi .box .content p {
    font-size: 1.8rem;
  }

  .slider-wrapper {
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
    padding-bottom: 56.25%;
    margin-bottom: 6rem;
  }

  .slider-wrapper ul.slider-img li .caption .content {
    bottom: 17%;
    max-width: 40rem;
  }

  .slider-wrapper ul.slider-img li .caption .content h2 {
    font-size: 2.3rem;
  }

  .slider-wrapper ul.slider-img li .caption .content .logo::after {
    padding-bottom: 20%;
  }

  .iot .case-stydy {
    margin: 0 0 6rem;
  }

  .white-papper-banner {
    padding-bottom: 65%;
    margin: 7rem 0;
  }

  .white-papper-banner .caption .content {
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
  }

  .white-papper-banner .caption .content h1 {
    font-size: 3.4rem;
    margin: 1.5rem 0;
  }

  .white-papper-content ul li {
    font-size: 2.3rem;
  }

  .microsoft-xamarin {
    margin: 6rem 1.5rem 8rem;
  }

  .microsoft-xamarin .image {
    margin: 5rem auto 0;
  }

  .xamarin-portfolio {
    margin: 0 0 8rem;
  }

  .xamarin-portfolio .carousel-wrapper {
    width: 100%;
  }

  .xamarin-portfolio h4 {
    margin: 0 0 2.5rem 3rem;
  }

  .xamarin-consulting-partner {
    margin: 0 1.5rem 8rem;
  }

  .xamarin-process {
    margin: 0 1.5rem 8rem;
  }

  .xamarin-process .grid {
    margin: 0 0 3rem;
  }

  .xamarin-process .grid .grid-image {
    flex: 0 0 8rem;
  }

  .xamarin-process .grid .grid-content {
    margin-left: 1.5rem;
  }

  .amazing-results {
    margin: 0 1.5rem 6rem;
  }

  .industries-slider.slider .content {
    margin-left: 0;
    max-width: 100%;
  }

  .industries-slider.slider .image {
    width: 90%;
  }

  .chain-processes {
    margin: 0 1.5rem 2rem;
    max-width: 100%;
  }

  .chain-processes ul {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .chain-processes ul li {
    width: calc(50% - 1rem);
    margin: 0 0.5rem;
  }

  .chain-processes ul li .box .content h4 {
    font-size: 1.6rem;
    margin-left: 2rem;
  }

  .industries.iot-service {
    margin: 0 1.5rem 6rem;
  }

  .iot-service img {
    max-width: 100%;
    padding: 0 0 4rem;
  }

  .industries.building-apps,
  .industries.thinkahead {
    margin: 0 0 6rem;
  }

  .industries.building-apps .grid-item,
  .industries.thinkahead .grid-item {
    padding: 2rem 0 0rem;
  }

  .industries.building-apps .grid-item .grid-contnet h4,
  .industries.thinkahead .grid-item .grid-contnet h4 {
    margin: 0;
  }

  .modal .modal-wrapper.right-bottom {
    max-width: 320px;
    width: 97%;
    left: auto;
    margin: 0 auto;
    top: 50%;
  }

  .modal.is-visible .right-bottom {
    transform: translate(0, -50%) scale(1);
  }
}

@media screen and (max-width: 575px) {
  .why .lottie-wrapper {
    width: 100%;
  }

  .portfolio-home .portfolio-lists .portfolio-left .client-info p {
    font-size: 2rem;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li+li {
    margin-left: 0.5rem !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon {
    width: 8rem !important;
  }

  .portfolio-home .portfolio-lists .portfolio-left .technology li .icon img {
    top: 50%;
    left: 50%;
    position: absolute;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.55) !important;
    -moz-transform: translate(-50%, -50%) scale(0.55) !important;
    -webkit-transform: translate(-50%, -50%) scale(0.55) !important;
  }
}

@media screen and (max-height: 767px) {
  .slider {
    margin-top: 9rem;
  }

  .client-info p {
    display: none;
  }

  .client-info h3 {
    margin: 0 0 1rem !important;
  }

  .store-link {
    margin: 1rem 0 5rem !important;
  }

  .site-footer.footer .footer-content .left-gptw-logo img {
    margin: auto;
  }
}

/*# sourceMappingURL=style.css.map */