/*
Theme Name: Talent Solutions
Description: A custom theme for talentsolution.in
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: talentsol
*/
/* Variables
---------------------------------------- */
:root {
  --primary: #0052A2;
  --primary2: #20539D;
  --secondary1: #FF5A5F;
  --secondary: #0052A2;
  --secondary2: #273132;
  --color-border: #CFDBEA;
  /* Text colors */
  --color-text: #273132;
  --color-text2: #5B6263;
  --color-sub-text: #949899;
  /* Gradients */
  --gradient-pink: linear-gradient(to right, #FF5A5F, #FF9598);
  --gradient-pink2: linear-gradient(to left, #FF5A5F, #FF9598);
  --gradient-pink3: linear-gradient(to bottom, #FF5A5F, #FF9598);
  /* Effects */
  --shadow: 0 4px 14px 3px rgba(91, 98, 99, 0.12);
  /* Font */
  --font-poppins: 'Poppins', sans-serif;
}

/* Reset
---------------------------------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML and Body
---------------------------------------- */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 14px;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Typography
---------------------------------------- */
/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-style: normal;
  line-height: 1.67;
  margin: 0;
}

p {
  margin: 0 0 1rem 0;
}

b,
strong {
  font-weight: bolder;
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

em {
  font-style: normal;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: var(--secondary1);
}

a:active,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

a:hover {
  color: var(--primary);
}

/* List */
ul[role='list'] {
  list-style: none;
}

/* Media */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Form */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 1.7rem;
}

/* Sections */
.page-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.section {
  padding: 4rem 0;
  position: relative;
}

/* Grid layout */
.grid {
  display: -ms-grid;
  display: grid;
}

/* Flex layout */
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-h-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-v-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.gap1 {
  gap: 1rem;
}

.gap13 {
  gap: 1.3rem;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  margin: 0;
  padding: 15px 0;
  z-index: 71;
}

.header-shadow {
  -webkit-box-shadow: 0 4px 8px 0 #E8EAEA;
          box-shadow: 0 4px 8px 0 #E8EAEA;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: block;
  width: auto;
  max-height: 25px;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right-content {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  width: 100%;
  max-width: 280px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 1rem;
  margin: 0;
  -webkit-box-shadow: 0px 2px 10px #E9EAEB;
          box-shadow: 0px 2px 10px #E9EAEB;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  overflow-y: scroll;
  z-index: 95;
}

.active-menu.header-right-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.close-mobile-menu {
  position: absolute;
  display: -ms-grid;
  display: grid;
  place-content: center;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.close-mobile-menu:hover {
  -webkit-box-shadow: 0 0 4px 1px #ddd;
          box-shadow: 0 0 4px 1px #ddd;
  border-radius: 50%;
}

.mobile-menu-logo img {
  height: 3rem;
  max-height: 3rem;
}

/* Primary menu */
.mobile-menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 22px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  width: 30px;
  cursor: pointer;
}

.mobile-menu-icon span {
  background-color: var(--secondary2);
  height: 2px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  width: 100%;
}

.primary-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: #8E9697;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.primary-menu a:hover {
  color: #2B2D42;
}

.current-menu-item a {
  color: #2B2D42;
  font-weight: 400;
}

.primary-menu > li {
  padding: 0 14px;
  text-align: center;
}

.primary-menu > li > a {
  display: block;
  padding: 10px 6px;
}

.sub-menu {
  position: absolute;
  top: 50px;
  left: 0;
  display: none;
  list-style: none;
  background-color: #ffffff;
  width: 226px;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 10px #E9EAEB;
          box-shadow: 0 2px 10px #E9EAEB;
  z-index: 2;
}

.sub-menu li:last-child {
  border-bottom: 0;
}

.sub-menu li a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 1rem;
}

/*
.menu-item-has-children::after {
  position: absolute;
  right: 0;
  top: 8px;
  content: url(images/icons/drop-icon.svg);
}
*/
.menu-item-has-children {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drop-icon {
  width: 16px;
  height: 16px;
  background: url(images/icons/drop-icon2.svg) no-repeat;
}

.show-drop-menu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
          animation: slideUp 0.5s forwards;
}

/* Header button */
.header-button {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary2);
  padding: 7px 32px;
  border: 1px solid var(--primary2);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-button:hover {
  background: var(--gradient-pink);
  color: #ffffff;
  border-color: var(--secondary1);
}

/* Inner pages Header */
.page-header {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 3rem 0;
}

.page-header-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
}

.page-header-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 200px;
          flex: 1 0 200px;
  max-width: 405px;
  justify-self: flex-end;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.page-header-image img {
  max-width: 200px;
}

.page-header-subtitle {
  color: var(--secondary2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.page-header-line {
  background-color: var(--primary2);
  width: 3.5rem;
  height: 2px;
  margin: 1rem auto;
}

.site-footer {
  position: relative;
  background-color: var(--primary);
  color: #ffffff;
  width: 100%;
  padding: 4.4rem 0;
}

.site-footer a {
  color: #ffffff;
}

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

.site-footer li {
  padding: 6px 0;
}

.footer-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  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;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

.footer-block .block-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 4;
}

.footer-block-widget:not(:last-child) {
  margin-bottom: 2.3rem;
}

.footer-social {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.footer-social li {
  width: 24px;
  height: 24px;
  padding: 0;
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 2.7rem;
}

/*slide up */
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

.slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@-webkit-keyframes slidedown {
  from {
    display: none;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slidedown {
  from {
    display: none;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes landingcard {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes landingcard {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  33.33% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  62.96% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  66.66% {
    -webkit-transform: translateX(calc(200% + 2rem));
            transform: translateX(calc(200% + 2rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  96.29% {
    -webkit-transform: translateX(calc(200% + 2rem));
            transform: translateX(calc(200% + 2rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

@keyframes rotate1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  33.33% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  62.96% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  66.66% {
    -webkit-transform: translateX(calc(200% + 2rem));
            transform: translateX(calc(200% + 2rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  96.29% {
    -webkit-transform: translateX(calc(200% + 2rem));
            transform: translateX(calc(200% + 2rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    font-size: 18px;
    padding: 3rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  33.33% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  62.96% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  66.66% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  96.29% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

@keyframes rotate2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  33.33% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  62.96% {
    -webkit-transform: translateX(calc(100% + 1rem));
            transform: translateX(calc(100% + 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  66.66% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  96.29% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@-webkit-keyframes rotate3 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  33.33% {
    -webkit-transform: translateX(calc(-200% - 2rem));
            transform: translateX(calc(-200% - 2rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  62.96% {
    -webkit-transform: translateX(calc(-200% - 2rem));
            transform: translateX(calc(-200% - 2rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  66.66% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  96.29% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

@keyframes rotate3 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  29.63% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  33.33% {
    -webkit-transform: translateX(calc(-200% - 2rem));
            transform: translateX(calc(-200% - 2rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  62.96% {
    -webkit-transform: translateX(calc(-200% - 2rem));
            transform: translateX(calc(-200% - 2rem));
    height: 100%;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  66.66% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  96.29% {
    -webkit-transform: translateX(calc(-100% - 1rem));
            transform: translateX(calc(-100% - 1rem));
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 132px;
    font-size: 12px;
    padding: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.rotate1 {
  -webkit-animation: rotate1 13.5s linear infinite both;
          animation: rotate1 13.5s linear infinite both;
}

.rotate2 {
  -webkit-animation: rotate2 13.5s linear infinite both;
          animation: rotate2 13.5s linear infinite both;
}

.rotate3 {
  -webkit-animation: rotate3 13.5s linear infinite both;
          animation: rotate3 13.5s linear infinite both;
}

.modal {
  background-color: rgba(9, 34, 63, 0.32);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 90;
}

.modal-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-container {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px #DEE0E0;
          box-shadow: 0 4px 12px #DEE0E0;
  width: 100%;
  max-width: 700px;
  padding: 2rem;
  border-radius: 1rem;
  z-index: 91;
}

.modal-form-header {
  margin-bottom: 1rem;
}

.modal-container p {
  margin: 0;
}

.modal-close {
  position: absolute;
  display: -ms-grid;
  display: grid;
  place-content: center;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal-close:hover {
  -webkit-box-shadow: 0 0 4px 1px #ddd;
          box-shadow: 0 0 4px 1px #ddd;
  border-radius: 50%;
}

.section-home-hero {
  width: 100%;
  min-height: 100vh;
  height: 920px;
}

.section-home-hero .container {
  padding: 0;
}

.section-hero-container {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 920px;
}

.section-hero {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.section-hero-left {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 1rem 2rem 0 2rem;
}

.section-hero-title {
  color: var(--color-text2);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
}

.section-hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-text);
}

.section-hero-hr {
  background-color: var(--color-text);
  width: 3.5rem;
  height: 1px;
  margin: 1.4rem auto;
}

.section-hero-info {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.3rem;
}

.scroll-icon {
  margin-top: 5.5rem;
}

.scroll {
  cursor: pointer;
}

.section-hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.section-hero-image {
  position: relative;
  margin: 0 auto;
}

.section-hero-card {
  display: none;
}

.section-hero-card-link {
  position: relative;
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* Sections on frontpage */
.section-home {
  position: relative;
  width: 100%;
  margin-bottom: 8rem;
}

.section-home-tech {
  position: relative;
  width: 100%;
}

/* Frontpage -> Steps Section */
.section-home-steps {
  position: relative;
}

.front-steps {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.front-step2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#3063A6), to(rgba(255, 255, 255, 0.001)));
  background: linear-gradient(to bottom, #3063A6, rgba(255, 255, 255, 0.001));
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 4rem;
  text-align: center;
}

.front-step2::before {
  position: absolute;
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#B8CBE1), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #B8CBE1, rgba(255, 255, 255, 0));
  left: 1.2rem;
  top: -1.2rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: -1;
}

.front-step2 .spacer9 {
  height: 2rem;
}

.front-step1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  text-align: center;
}

.front-step3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.front-step3-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.front-step3-2 {
  -webkit-box-flex: 22.5%;
      -ms-flex: 22.5%;
          flex: 22.5%;
}

.front-step3-3 {
  -webkit-box-flex: 10%;
      -ms-flex: 10%;
          flex: 10%;
}

.front-step .front-step3-3 .number {
  margin: 0 auto;
}

.front-step3-4 {
  text-align: center;
}

.front-step .number {
  color: var(--primary2);
  border: 2px solid var(--primary2);
  margin-bottom: 1rem;
}

.front-step2 .number {
  color: #ffffff;
  border: 2px solid #ffffff;
}

.front-step-title {
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 1rem;
}

.front-step-title em {
  font-weight: 700;
  font-style: normal;
}

.front-step em {
  font-weight: 700;
}

.front-step-one-line {
  background-color: var(--secondary1);
  width: 2px;
  height: 65px;
  margin: 6px auto;
}

.front-step1 .spacer2 {
  height: 1rem;
}

.front-step1 .spacer9 {
  height: 2rem;
}

.front-step-two-line {
  background-color: var(--secondary1);
  width: 2px;
  height: 5.7rem;
  margin: -6.7rem auto 1rem auto;
}

.front-step-three-line {
  background-color: var(--secondary1);
  width: 2px;
  height: 5.7rem;
  margin: -1rem auto 1rem auto;
}

/* frontpage -> Stack Section */
.section-home-tech-bg {
  position: absolute;
  background: radial-gradient(at 40% top, #0F82F3, #FF9598);
  width: 100%;
  top: 8%;
  bottom: 8%;
}

.stack-container {
  background: radial-gradient(at 30% 30%, #8AB6EE, #FFDCDC);
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 -1px 30px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -1px 30px -5px rgba(0, 0, 0, 0.3);
}

.section-stack-title {
  color: #ffffff;
  font-weight: 400;
  font-size: 2.2rem;
  padding: 1rem 0;
}

.section-stack-title em {
  font-weight: 700;
}

.section-stack-intro {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 300;
}

/* Stack Tab */
.stack-filter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.stack-filter-buttons {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 1rem 0 2rem 0;
  padding: 0;
}

.stack-filter-button {
  background-color: #ffffff;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  padding: 4px 24px;
}

.stack-filter-button-active {
  background-color: var(--primary);
  color: #ffffff;
}

.tabs-content {
  display: block;
}

.active-tab-content {
  display: block;
}

.temp-stack {
  background-color: rgba(255, 255, 255, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 18px 5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 18px 5px rgba(0, 0, 0, 0.04);
  min-height: 225px;
}

.temp-stack img {
  max-height: 130px;
}

/* testimonials-section */
.testimonials-section {
  background: -webkit-gradient(linear, left bottom, left top, from(var(--primary2)), color-stop(40%, #ffffff));
  background: linear-gradient(to top, var(--primary2), #ffffff 40%);
}

.testimonials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 20px 0;
}

.testimonial {
  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;
  text-align: center;
  gap: 1rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(38, 39, 40, 0.25);
          box-shadow: 0 0 20px rgba(38, 39, 40, 0.25);
  margin: 0 20px;
  padding: 2rem;
  border-radius: 1rem;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  padding: 7px;
}

.testimonial-image-inner {
  background-color: #EEEEEE;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.testimonial-name {
  color: var(--secondary2);
  font-size: 1.4rem;
  font-weight: 700;
}

.testimonial-company {
  color: var(--color-sub-text);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-text {
  font-size: 0.9rem;
  font-weight: 300;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.move-up-div {
  width: 100%;
  margin-top: -4rem;
}

/* scroll icons */
.scroll-downs {
  position: relative;
  width: 60px;
  margin-top: 5.5rem;
  text-align: center;
}

.scroll-downs a {
  color: #222;
}

.mousey {
  width: 24px;
  margin: 0 auto;
  padding-top: 6px;
  height: 34px;
  border: 2px solid #222;
  border-radius: 25px;
  opacity: 0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
}

/* Page - Hire Us */
.hire-header-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hire-header-title em {
  font-style: normal;
  font-weight: 700;
}

.hire-header-info {
  margin-bottom: 1rem;
}

.hire-header-subtitle {
  margin: 2rem auto;
  padding: 0.7rem;
}

.hire-header-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hire-header-step-line {
  display: none;
}

.hire-header-step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  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;
  text-align: center;
}

.hire-header-step-icon {
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: var(--primary);
  width: 3rem;
  height: 3rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.hire-header-step-icon img {
  width: 24px;
  height: auto;
}

.promise-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0;
}

.promise-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin: 0 10px;
}

.card2-info {
  font-size: 1rem;
  line-height: 1.8rem;
  font-weight: 300;
  margin: 0;
}

/* Page - How we work */
.our-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  padding: 2rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.our-features-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}

.our-features-image img {
  max-width: 150px;
}

.our-features-text {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  padding: 3rem 2rem;
}

.our-features-text-right {
  background: -webkit-gradient(linear, right top, left top, from(#E7EEF5), to(rgba(231, 238, 245, 0)));
  background: linear-gradient(to left, #E7EEF5, rgba(231, 238, 245, 0));
  border-right: 5px solid var(--secondary1);
  text-align: right;
}

.our-features-text-left {
  background: -webkit-gradient(linear, left top, right top, from(#E7EEF5), to(rgba(231, 238, 245, 0)));
  background: linear-gradient(to right, #E7EEF5, rgba(231, 238, 245, 0));
  border-left: 5px solid var(--primary2);
}

.our-features-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text2);
}

.our-features-title em {
  color: var(--secondary2);
  font-weight: 700;
  font-style: normal;
}

/* Page - How we work -> Process */
.our-features-container {
  padding: 0;
}

.process-section-icon {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  border: 2px solid var(--primary2);
}

.process-section-icon img {
  width: 26px;
}

.process-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 20px 0;
}

.process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin: 0 10px;
}

/*
.process-items {
  display: block;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-item {
  flex: 1 0 40%;
  flex-direction: column;
  margin: 0;
}
*/
.process-details {
  color: var(--secondary2);
  font-size: 1rem;
  font-weight: 300;
}

/* Page - what we offer */
.our-service-header {
  color: #ffffff;
  width: 100%;
  border-radius: 2rem;
  padding: 2rem 0;
}

.our-service-header-title {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 400;
}

.our-service-header-title em {
  font-style: normal;
  font-weight: 700;
}

.our-service-header-subtitle {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
}

.service-header-title-devider {
  background-color: #ffffff;
  width: 3.2rem;
  height: 3px;
  margin: 2rem auto;
}

.our-service-header-tagline {
  margin-top: 0;
  margin-bottom: 2rem;
  width: 90%;
  border-radius: 3rem 0 0 3rem;
}

.our-service-header-tagline-red {
  background: -webkit-gradient(linear, left top, right top, from(#FF5A5F), to(transparent));
  background: linear-gradient(to right, #FF5A5F, transparent);
  margin-left: 8%;
}

.our-service-header-tagline-white {
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
  background: linear-gradient(to right, #ffffff, transparent);
  margin-left: 16%;
}

.our-service-header-tagline-blue {
  background: -webkit-gradient(linear, left top, right top, from(#18437E), to(transparent));
  background: linear-gradient(to right, #18437E, transparent);
  margin-left: 8%;
}

.our-service-header-tagline h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 6px 0 6px 1rem;
}

.our-service-header-tagline-white h3 {
  color: var(--primary2);
}

/* Page - Our Services - For start-ups */
.section-service-startup-icon {
  background: var(--gradient-pink);
  width: 3.3rem;
  height: 3.3rem;
  margin: 0 auto;
  padding: 2px;
  border-radius: 50%;
}

.section-service-startup-icon-image {
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.services-startups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin: 1rem 0;
}

.services-startups .card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 1rem;
  padding: 1rem;
}

.service-startups h3 {
  padding: 2rem 0;
}

.services-startups-list {
  color: #696F70;
  margin: 0;
  padding: 1rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  list-style-position: inside;
}

.services-startups-list li {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.service-enterprise-section-icon {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary2);
  border-radius: 50%;
}

.services-enterprise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0;
}

.service-enterprise {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin: 0 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.service-enterprise-icon {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--primary2);
  border-radius: 50%;
}

.service-enterprise-icon img {
  width: 24px;
}

.section-services-engg-icon {
  background: var(--gradient-pink);
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding: 2px;
  border-radius: 50%;
}

.section-services-engg-icon-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.section-services-engg-icon-img img {
  width: 27px;
}

.services-engg-features-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 24px;
}

.services-engg-features-item h4 {
  font-size: 24px;
}

/* Page - Services - Web developmemt */
.services-header {
  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;
  text-align: center;
  padding-bottom: 5rem;
}

.section-services-list {
  background: -webkit-gradient(linear, left top, right top, from(#FF5A5F), to(#0052A2));
  background: linear-gradient(to right, #FF5A5F, #0052A2);
  color: #ffffff;
}

.section-services-list-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
}

.section-services-list-title em {
  font-weight: 700;
  font-style: normal;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services-list-item {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 1.3rem;
  border-radius: 1rem;
}

.services-list2 {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.services-list2-item {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  width: 100%;
  padding: 1.3rem;
  border-radius: 1rem;
}

.services-list3 {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.services-list3-item {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  width: 100%;
  padding: 1.3rem;
  border-radius: 1rem;
}

.service-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0;
}

.service-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #ffffff;
  margin: 0 1rem;
  padding: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  text-align: center;
}

.service-step-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-step h3 {
  color: var(--secondary2);
  font-size: 1.7rem;
  padding-bottom: 1rem;
}

.service-step.tns-slide-active {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Button */
.button {
  background: var(--gradient-pink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 1.8rem;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button:hover {
  color: #ffffff;
  -webkit-box-shadow: 0px 2px 9px #D4D6D6;
          box-shadow: 0px 2px 9px #D4D6D6;
}

/* Dots and lines */
.dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}

.dot-pink,
.dot-white {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
}

.dot-pink {
  background: var(--gradient-pink3);
}

.dot-white {
  -webkit-box-shadow: inset 0 0 0 2px var(--primary);
          box-shadow: inset 0 0 0 2px var(--primary);
}

.line1 {
  width: 3.7rem;
  height: 3px;
  background-color: var(--primary);
  border-radius: 1rem;
}

.line2 {
  width: 2.5rem;
  height: 3px;
  background: var(--gradient-pink);
  border-radius: 1rem;
}

.line3 {
  width: 2.5rem;
  height: 3px;
  background: var(--primary2);
  border-radius: 1rem;
}

.line4 {
  background: url(images/shapes/line.svg) center no-repeat;
  background-size: 58%;
  width: 100%;
  height: 162px;
  margin-bottom: -4.5rem;
  z-index: 5;
}

.line5 {
  background: url(images/shapes/line2.svg) center no-repeat;
  width: 100%;
  height: 81px;
  margin-bottom: -4.5rem;
}

/* Titles */
.page-title {
  color: var(--color-sub-text);
  font-weight: 300;
  font-size: 2.3rem;
}

.page-title em {
  color: var(--secondary2);
  font-weight: 700;
  font-style: normal;
}

.section-title {
  font-size: 1.7rem;
  color: var(--color-text2);
  font-weight: 400;
}

.section-title em {
  font-style: normal;
  color: var(--secondary2);
  font-weight: 700;
}

.section-title2 {
  color: var(--color-text);
  font-size: 1.7rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

/* Card */
.card {
  background-color: #ffffff;
  padding: 2rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 1rem;
}

.card-title {
  color: var(--secondary2);
  font-size: 1.7rem;
  font-weight: 700;
  padding: 1rem 0;
}

.card-title2 {
  color: var(--secondary2);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 0;
}

/* Number Badge */
.number {
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
}

.service-cards-message-section {
  position: relative;
  background: var(--gradient-pink2);
  width: 100%;
  margin: 2rem 0;
  padding: 2rem 0;
}

.service-cards-message {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 300;
  text-align: center;
}

.service-cards-message em {
  font-weight: 700;
}

.service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  margin: 20px 0;
}

.service-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  gap: 0;
  text-align: center;
  margin: 0 10px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.service-card-icon {
  background: var(--gradient-pink);
  width: 4.8rem;
  height: 4.8rem;
  padding: 1px;
  margin: 0 0 4rem 0;
  margin: 0 auto 4rem auto;
  border-radius: 50%;
}

.service-card-icon-image {
  display: -ms-grid;
  display: grid;
  background-color: #ffffff;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.service-card-title {
  color: var(--secondary2);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-title a {
  color: var(--secondary2);
}

.service-card-details {
  font-weight: 300;
  margin: 1rem 0;
}

.service-card-button {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}

.service-card-button::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: var(--primary) url(images/icons/angle-right.svg) no-repeat center;
  border-radius: 50%;
  margin-left: 8px;
}

/* Contact Form */
.contact-form {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-form-header {
  padding-bottom: 4.2rem;
}

.contact-form-fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px;
      grid-template-columns: 300px;
  gap: 1.5rem 1rem;
  font-size: 14px;
  font-weight: 300;
  padding-bottom: 2rem;
}

.contact-form-fields label {
  display: block;
  color: var(--color-sub-text);
  line-height: 2;
  cursor: pointer;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: #F2F3F3;
  color: #313D3F;
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  outline: none;
}

.contact-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(images/icons/drop-icon.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  cursor: pointer;
}

.contact-form .form-textarea {
  grid-column: span 1;
}

#other-project-type,
#other-project-type-modal {
  resize: none;
}

.form-success-modal {
  background-color: rgba(9, 34, 63, 0.32);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 92;
}

.form-success-message {
  position: relative;
  background-color: #ffffff;
  width: 90%;
  max-width: 700px;
  padding: 1rem 2rem;
  border-radius: 1rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  z-index: 94;
}

.form-success-message img {
  margin: 0 auto;
}

.form-success-message h4 {
  font-size: 1.4rem;
}

.form-success-message p {
  color: var(--color-sub-text);
  font-weight: 300;
}

.validation-message {
  color: var(--secondary1);
}

/* Carousel */
/* Carousel -> arrow */
.tns-outer {
  position: relative;
}

.tns-controls {
  position: absolute;
  top: 40%;
  z-index: 55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.tns-controls button {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}

button[data-controls="prev"] {
  background-color: #ddd;
}

button[data-controls="next"] {
  background-color: var(--primary);
  color: #ffffff;
}

/* Testinomials Slider */
.testimonials-section button[data-controls="prev"],
.section-process button[data-controls="prev"] {
  margin-left: 0;
}

.testimonials-section button[data-controls="next"],
.section-process button[data-controls="next"] {
  margin-right: 0;
}

/* Nav dots */
.tns-nav {
  width: 100%;
  text-align: center;
}

.tns-nav button {
  background-color: #E7EEF5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  padding: 0;
}

button.tns-nav-active {
  background-color: var(--primary);
}

.pattern {
  display: none;
}

@media (min-width: 768px) {
  .pattern {
    display: block;
    position: absolute;
    background: url(images/patterns/square.svg) no-repeat;
    background-size: cover;
    width: 27rem;
    height: 27rem;
    z-index: -1;
  }
  .pattern-left-top {
    top: 0;
    left: 0;
  }
  .pattern-right-top {
    top: 0;
    right: 0;
  }
  .pattern-right-bottom {
    right: 0;
    bottom: 0;
  }
  /* patterns on hire us page */
  .pattern-hire1 {
    top: -20%;
    right: 0;
  }
  .pattern-landing-step {
    right: 0;
    bottom: 20%;
  }
}

/* responsive view */
.view-mobile {
  display: block;
}

.view-desktop {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .header-right.menu-active .primary-menu,
  .header-right.mobile-menu-active .primary-menu {
    display: flex !important;
  }
  
  .mobile-menu-icon {
    display: flex !important;
    cursor: pointer;
    z-index: 1001;
  }
}

/* Test Styles */
.title-64 {
  color: var(--color-sub-text);
  font-weight: 300;
  font-size: 3.5rem;
}

.title-64 em {
  color: var(--secondary2);
  font-weight: 700;
  font-style: normal;
}

.h3-24 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.h4-18 {
  font-size: 1rem;
  font-weight: 700;
}

.small-text14 {
  font-size: 14px;
  font-weight: 300;
}

/* Font Weight */
.fw-light {
  font-weight: 300;
}

.fw-strong {
  font-weight: 700;
}

/* Text-alignment */
.center {
  margin: 0 auto;
}

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

/* Float */
.float-right {
  float: right;
}

/* Margin Padding */
.margin-no {
  margin: 0;
}

/* color and background */
.color-white {
  color: #ffffff;
}

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

.color-primary2 {
  color: var(--primary2);
}

.color-sec2 {
  color: var(--secondary2);
}

.color-sub-text {
  color: var(--color-sub-text);
}

.bg-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.bg-secondary1 {
  background-color: var(--secondary1);
  color: #ffffff;
}

.bg-light {
  background-color: #E7EEF5;
}

.bg-primary-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary2)), to(rgba(32, 83, 157, 0)));
  background: linear-gradient(to bottom, var(--primary2), rgba(32, 83, 157, 0));
}

/* content width */
.w7 {
  width: 70%;
}

.w8 {
  width: 80%;
}

/* Empty Spacer */
.spacer1 {
  width: 100%;
  height: 1rem;
}

.spacer2 {
  width: 100%;
  height: 2rem;
}

.spacer4 {
  width: 100%;
  height: 4rem;
}

.spacer9 {
  width: 100%;
  height: 9rem;
}

.move-div-up {
  margin: 0;
}

@media (max-width: 767px) {
  /* custom pages */
  .our-features-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .our-features-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hire-header-subtitle.w8 {
    width: 100%;
  }
  .hire-header-subtitle {
    font-size: 1rem;
  }
  /* custom page - services */
  .services-engg-features-item h4 {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Layout */
  .container {
    padding: 0 10px;
  }
  /* Header */
  .logo {
    max-height: 50px;
  }
  .mobile-menu-icon {
    display: none;
  }
  .view-mobile {
    display: none;
  }
  .view-desktop {
    display: block;
  }
  .primary-menu {
    display: flex !important;
  }
  .header-right-content {
    position: relative;
    background: transparent;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    overflow-y: unset;
  }
  .primary-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .primary-menu > li {
    text-align: left;
  }
  .menu-item-has-children:hover > ul {
    display: block;
    -webkit-animation: slideUp 0.5s forwards;
            animation: slideUp 0.5s forwards;
  }
  .header-button {
    margin-left: 3.4rem;
  }
  .header-button-active {
    background: var(--gradient-pink);
    color: #ffffff;
    border-color: var(--secondary1);
  }
  .page-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 7rem 0 5.6rem 0;
  }
  .page-header-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    max-width: 660px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
  .page-header-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-header-image img {
    max-width: 405px;
  }
  .page-header-subtitle {
    font-size: 1.3rem;
  }
  .page-header-line {
    width: 5rem;
    margin: 3rem 0;
  }
  /* frontpage */
  /* frontpage -> Hero section */
  .section-home-hero,
  .section-hero-container {
    height: 792px;
  }
  .section-home-hero .container {
    padding: 0 10px;
  }
  .section-hero-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-hero {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
  .section-hero-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
    padding: 0;
  }
  .section-hero-title {
    font-size: 3.5rem;
  }
  .section-hero-hr {
    width: 5rem;
    height: 2px;
    margin: 30px 0;
  }
  .section-hero-right {
    margin: 0;
  }
  .section-hero-image {
    max-width: 615px;
    margin: 0;
  }
  .section-hero-card {
    position: absolute;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #ffffff;
    border-radius: 1rem;
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
    padding: 1rem;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .section-hero-card:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 4px 14px 3px #C3C3C3;
            box-shadow: 0 4px 14px 3px #C3C3C3;
  }
  .section-hero-card1 {
    top: 56px;
    right: 366px;
    width: 180px;
    height: 180px;
  }
  .section-hero-card2 {
    top: 304px;
    right: 120px;
    width: 268px;
    height: 167px;
  }
  .section-hero-card3 {
    top: 518px;
    right: 360px;
    width: 200px;
    height: 180px;
  }
  .section-hero-card-icon {
    display: -ms-grid;
    display: grid;
    place-content: center;
    background-color: var(--secondary1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .section-hero-card-subtitle {
    font-size: 14px;
    font-weight: 300;
  }
  .section-hero-card-title {
    font-size: 14px;
    font-weight: 700;
  }
  .section-hero-card-link::after {
    position: absolute;
    content: '>';
    width: 16px;
    height: 16px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    margin-left: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* Modified section her */
  .section-home-hero .container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .section-hero-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-hero-left-content {
    max-width: 614px;
  }
  .section-hero-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  /* Frontpage -> Steps Section */
  .front-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .front-step1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
  }
  .front-step2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
  .front-step-title {
    padding-bottom: 2rem;
  }
  .front-step2 .spacer9 {
    height: 9rem;
  }
  .front-step .number {
    margin-bottom: 2rem;
  }
  .front-step-title span,
  .front-step3-4 span {
    display: block;
  }
  .front-step1 span {
    display: block;
  }
  .front-step1 .spacer2 {
    height: 2rem;
  }
  .front-step1 .spacer9 {
    height: 9rem;
  }
  .front-step2 {
    padding: 3rem 6rem 2rem 2rem;
    border-radius: 2rem;
  }
  .front-step2::before {
    left: 4rem;
    top: -4rem;
    border-radius: 2rem;
  }
  .front-step3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .front-step .front-step3-3 .number {
    margin: 0;
    margin-top: 51px;
  }
  .front-step3-1 {
    -webkit-box-flex: 22.5%;
        -ms-flex: 22.5%;
            flex: 22.5%;
  }
  .front-step3-4 {
    -webkit-box-flex: 45%;
        -ms-flex: 45%;
            flex: 45%;
    text-align: right;
  }
  /* frontpage -> Services section */
  .service-cards-message-section {
    position: absolute;
    top: calc(50% - 4rem);
    margin: 0;
    z-index: -1;
  }
  .service-cards-message {
    text-align: right;
  }
  .service-cards-message span {
    display: block;
  }
  .service-cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    min-height: 535px;
  }
  .service-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    text-align: left;
    margin: 0;
    overflow: hidden;
  }
  .service-card-title {
    font-size: 1.5em;
  }
  .hide-in-small-card {
    display: none;
  }
  .big-card .hide-in-small-card {
    display: block;
  }
  .service-card-icon {
    width: 3.3rem;
    height: 3.3rem;
    margin: 0 1rem 0 0;
  }
  .big-card .service-card-icon {
    width: 4.8rem;
    height: 4.8rem;
    margin: 0 0 4rem 0;
  }
  .service-card-icon-image img {
    width: 24px;
  }
  .big-card .service-card-icon-image img {
    width: 39px;
  }
  /* frontpage -> Stack technology */
  .stack-filter-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .active-tab-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (280px)[auto-fill];
        grid-template-columns: repeat(auto-fill, 280px);
    -ms-grid-rows: 150px;
        grid-template-rows: 150px;
    grid-auto-flow: dense;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .temp-stack {
    background-color: rgba(255, 255, 255, 0.5);
    display: -ms-grid;
    display: grid;
    place-content: center;
    border-radius: 1rem;
    -webkit-box-shadow: 0 4px 18px 5px rgba(0, 0, 0, 0.04);
            box-shadow: 0 4px 18px 5px rgba(0, 0, 0, 0.04);
    min-height: 150px;
  }
  #frontend .temp-stack:nth-child(1),
  #frontend .temp-stack:nth-child(2),
  #mobile .temp-stack:nth-child(1),
  #test .temp-stack:nth-child(1),
  #test .temp-stack:nth-child(2),
  #test .temp-stack:nth-child(3) {
    grid-row: span 2;
  }
  #cloud, #emerging {
    -ms-grid-columns: (280px)[auto-fit];
        grid-template-columns: repeat(auto-fit, 280px);
    -ms-grid-rows: 280px;
        grid-template-rows: 280px;
  }
  .temp-stack img {
    max-height: 200px;
  }
  .tab-content {
    display: none;
  }
  .active-tab-content {
    display: -ms-grid;
    display: grid;
  }
  /* frontpage -> Testinomial */
  .testimonial {
    border-radius: 2rem;
  }
  .testimonial-image {
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary);
    padding: 12px;
  }
  .testimonials-section .tns-controls {
    display: none;
  }
  /* Custom pages */
  .our-features-container {
    padding: 0 10px;
  }
  .our-features {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .our-features-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
  .our-features-image img {
    max-width: 300px;
  }
  .our-service-header-tagline {
    width: 50%;
  }
  .our-service-header-tagline-red {
    margin-left: 16%;
  }
  .our-service-header-tagline-white {
    margin-left: 32%;
  }
  .our-service-header-tagline h3 {
    font-size: 1.7rem;
    padding: 0.6rem 0 0.6rem 2rem;
  }
  /* Page - what we offer */
  .our-service-header-title {
    font-size: 2rem;
  }
  .our-service-header-subtitle {
    font-size: 1.3rem;
  }
  .service-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .service-step {
    text-align: left;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .service-step-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .services-startups {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
  }
  .services-startups .card {
    margin: 0;
    padding: 2rem;
  }
  .services-startups .service-startups-2 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .services-startups .service-startups-4 {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    margin-top: -60px;
  }
  .services-enterprise {
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  .service-enterprise {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    margin: 0;
    padding: 2rem;
  }
  .services-list-item {
    -webkit-box-flex: calc(50% - 1rem);
        -ms-flex: calc(50% - 1rem);
            flex: calc(50% - 1rem);
  }
  .services-list2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: 370px;
  }
  .services-list2-item {
    width: calc(50% - 1rem);
  }
  .services-list3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: 330px;
  }
  .services-list3-item {
    width: calc(50% - 1rem);
  }
  /* Custom page - hire us */
  .hire-header-steps {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .hire-header-step-line {
    display: block;
    width: 100px;
    height: 1px;
    border-top: 2px dashed var(--primary);
    position: absolute;
    top: 1.5rem;
    z-index: -1;
  }
  .hire-header-step-line1 {
    left: 148.8px;
  }
  .hire-header-step-line2 {
    left: 356.4px;
  }
  .hire-header-step-line3 {
    left: 563.7px;
  }
  .hire-header-step-line4 {
    left: 771.3px;
  }
  .hire-header-step-line5 {
    left: 978.9px;
  }
  .promise-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 405px))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(300px, 405px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    margin: 0;
  }
  .promise-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    margin: 0;
  }
  /* components */
  /* components -> Dots and lines */
  .dots {
    gap: 1.3rem;
  }
  .dot-pink,
  .dot-white {
    width: 2.8rem;
    height: 2.8rem;
  }
  .dot-white {
    -webkit-box-shadow: inset 0 0 0 3px var(--primary);
            box-shadow: inset 0 0 0 3px var(--primary);
  }
  .page-title {
    font-size: 3.5rem;
  }
  .line1 {
    width: 3.3rem;
    height: 6px;
  }
  .line2 {
    width: 2.5rem;
    height: 6px;
  }
  .line3 {
    width: 2.8rem;
    height: 6px;
  }
  .contact-form-fields {
    -ms-grid-columns: 300px 300px;
        grid-template-columns: 300px 300px;
  }
  .contact-form .form-textarea {
    grid-column: span 2;
  }
  .section-title {
    font-size: 2.2rem;
  }
  /* shortcodes */
  .view-mobile {
    display: none;
  }
  .view-desktop {
    display: block;
  }
  .move-div-up {
    position: relative;
    width: 100%;
    height: 1px;
    margin-top: -8rem;
  }
  .move-div-down {
    position: relative;
    width: 100%;
    height: 1px;
    margin-bottom: 8rem;
  }
}

@media (min-width: 768px) {
  .section-home-hero {
    margin-top: 1rem;
  }
}
/*# sourceMappingURL=style.css.map */