:root {
  --light: #fff;
  --blue: #3d9cd7;
  --blue-pale: rgb(62, 155, 214, 0.1);
  --dark: #131c22;
  --black: #000;
  --blue-opacity: rgba(61, 156, 215, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  text-align: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.copyrightText,
.addressLine,
.company p,
.label,
.input,
.textarea,
.heroTitle,
.menuTitle,
.tooltip-content,
.megaItemText,
.aboutText,
.showcaseImgOverlayText {
  font-family: "Kanit", sans-serif;
}

h2 {
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
}

p,
label,
span,
input,
textarea {
  font-size: 1.6rem;
  font-weight: 400;
}

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

.bodyNoScroll {
  overflow: hidden;
}

.positionFix {
  position: relative;
}

.pointerEvents {
  pointer-events: none;
}

.page {
  overflow: hidden;
}

.header {
  padding: 2rem 2rem 8rem;
}

.nav {
  margin-bottom: 3rem;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: -1px;
  bottom: -1px;
  z-index: 999;
  padding: 2rem 2.7rem;
  background: var(--light);
  border-radius: 0px 0px 61px 0px;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.menu.show,
.aboutus.show {
  transform: translateX(0);
}

.menuTitle {
  text-transform: uppercase;
  font-size: 4.8rem;
  font-weight: 700;
}

.mobileMenuRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
}

.crossContainer {
  position: relative;
  width: 40px; /* Width of the cross */
  height: 40px; /* Height of the cross */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.show {
  opacity: 0.7;
}

.cross {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #c6e2f4;
  top: 0;
  left: 50%;
  transform-origin: center;
  border-radius: 2px;
}

.crossOne {
  transform: rotate(45deg);
}

.crossTwo {
  transform: rotate(-45deg);
}

.menuList {
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
  padding: 0;
  text-align: left;
}

.menuItem {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  list-style: none;
  text-transform: uppercase;
  position: relative;
}

.menuItem a {
  color: var(--dark);
  text-decoration: none;
}

.menuItem.active a {
  color: var(--blue);
}

.menuItem.active:before {
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  left: -27px;
  top: 10px;
}

.mobileWatermark {
  position: absolute;
  bottom: 28px;
  right: 35px;
  width: 50%;
}

.introDesktopLineRadio {
  opacity: 0;
  display: none !important;
}

.button {
  background-color: var(--blue);
  color: var(--light);
  font-size: 1.4rem;
  font-weight: 900;
  padding: 2rem 3rem;
  border: none;
  border-radius: 4rem;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
}

.button:hover {
  background-color: #57bfff;
}

.sectionTitle {
  width: 75%;
  margin: 0 auto;
}

.imgTooltipWrapper {
  position: relative;
}

.imgTooltip {
  position: absolute;
}
.copyright {
  padding: 2.2rem 0 2.4rem;
  background-color: var(--dark);
  color: var(--light);
}

.copyrightDash {
  display: none;
}

.desktopContactWrapper {
  display: none;
}

.copyrightText {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1.4rem;
}

.copyrightEmp {
  color: var(--blue);
}

.map {
  width: 100%;
  height: 37rem;
}

.mapImg {
  height: 367px;
  object-fit: none;
  object-position: center;
}

.contact {
  background-color: var(--dark);
  padding: 4rem 0 10rem;
  position: relative;
}

.watermarkImg {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  max-width: 50rem;
  pointer-events: none;
}

.addressLine {
  color: var(--light);
  font-weight: 500;
  margin: 0;
}

.address {
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contactDetails {
  margin-bottom: 4rem;
}

.contactWrapper {
  position: relative;
}
.email,
.phone {
  color: var(--blue) !important;
  font-weight: 900;
  font-size: 2rem;
  text-decoration: none !important;
}

.phone a {
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: none;
  -webkit-hyphens: manual;
  -webkit-link: none;
  color: inherit;
}

.email {
  margin-bottom: 0.7rem;
}

.company {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 4.6rem;
}

.company p {
  color: var(--light);
}

.company p a {
  color: inherit !important;
  text-decoration: none !important;
}

.form {
  text-align: left;
  padding: 0 1.6rem;
  position: relative;
  z-index: 10;
}

.input,
.textarea {
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  color: var(--blue);
  font-size: 1.6rem;
  padding: 0.6rem 1.4rem;
}

.inputBorderBottom {
  border-bottom: 2px solid var(--blue-opacity);
  transition: box-shadow 0.2s ease-in-out;
}

.inputBorderBottom:focus {
  box-shadow: 0 2px 0 var(--light);
}

.inputBorder {
  border: 2px solid var(--blue-opacity);
  transition: box-shadow 0.2s ease-in-out;
}

.inputBorder:focus {
  box-shadow: 0 0 0 2px var(--light);
}

.textarea {
  margin-bottom: 3.3rem;
  border-radius: 1.2rem;
  overflow: auto;
  resize: vertical;
}

.label {
  color: var(--light);
  display: inline-block;
  margin-bottom: 1.1rem;
}

.lineRadio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.lineRadioClients {
  display: none;
}

.line {
  height: 74px;
  width: 2px;
  background-color: var(--light);
}

.lineText {
  display: none;
}

.clients {
  padding: 5.5rem 2rem;
}

.clientsList {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  grid-template-rows: repeat(2, auto); /* 2 rows */
  gap: 2rem 4rem;
  place-items: center;
  width: max-content;
  position: relative;
  left: -12px;
}

.clientImg {
  height: 25px;
  object-fit: contain;
  margin: 0 auto;
}

.clientsWrapper {
  overflow-x: auto;
  padding-bottom: 5rem;
  white-space: nowrap; /* Ensures the content does not wrap */
}

.heroTitle {
  position: relative;
  z-index: 9;
}

.megaMenu {
  opacity: 0;
  visibility: hidden;
}

.heroTitleFirst {
  display: inline-block;
  position: relative;
}

.heroTitleFirst .Typewriter__wrapper {
  font-size: 4rem;
  color: var(--dark);
  margin: 0;
  font-weight: 700;
  position: relative;
}

.Typewriter__wrapper::before {
  content: "\00a0";
  visibility: hidden;
  display: inline-block;
  width: 0;
}

.heroTitleFirst .Typewriter__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.7rem;
  background-color: var(--blue);
  z-index: -2;
  position: absolute;
  bottom: 13px;
}

.heroTitleEmp {
  font-size: 4rem !important;
  color: var(--blue);
  font-weight: 700 !important;
  display: inline-block;
  position: relative;
}

.heroTitleFirst .Typewriter__wrapper {
  font-weight: 700 !important;
}

.heroTitleEmp .Typewriter__wrapper {
  font-size: 4rem !important;
  color: var(--blue);
  font-weight: 700 !important;
}

.Typewriter__cursor::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.6rem;
  background-color: var(--blue);
  margin-left: 0.2rem;
  animation: Typewriter-cursor 1s infinite;
  position: absolute;
  bottom: 6px;
}

.logo {
  margin: auto;
}

.services,
.introSection,
.introCaseSection {
  background-color: var(--dark);
}

.introSection {
  padding: 2rem 2rem 4.4rem;
  margin-bottom: -1px;
}

.introCaseSection {
  padding: 0rem 2rem 4.4rem;
  margin-bottom: -1px;
}

.services {
  padding: 0rem 2rem 9.4rem;
}

.intro {
  line-height: 2.4rem;
  margin-bottom: 3.2rem;
}

.introEmp {
  color: var(--blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.introLight {
  color: var(--light);
  font-weight: 400;
}

.titleBlock {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}

.serviceTitle {
  color: var(--light);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.serviceTitle span {
  font-weight: 600;
  text-decoration: none;
}

.servicesWrapper {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  position: relative;
  z-index: 10;
}

.serviceWrapper {
  background-color: var(--blue-pale);
  border-radius: 3.2rem 3.2rem 0 3.2rem;
  aspect-ratio: 1/0.94;
  position: relative;
  width: 50%;
  display: grid;
  grid-template-rows: 1fr auto;
  transition: all 0.3s;
  text-decoration: none;
}

.techImg {
  height: 8rem;
}
.servicesWrapperRow {
  display: flex;
  gap: 2.3rem;
}

.serviceImg {
  width: 42%;
}

.serviceArrow {
  margin-left: auto;
  margin-right: 2rem;
  transition: all 0.3s;
}

.servicesText1 {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: 75%;
  margin: auto;
  margin-bottom: 2.4rem;
  line-height: 2.6rem;
  position: relative;
}

.quoteText {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: 75%;
  margin: auto;
  margin-bottom: 2.4rem;
  line-height: 2.6rem;
  position: relative;
  text-align: center;
}

.servicesText1::before,
.quoteText::before {
  content: "";
  display: block;
  background: url("../img/quote.svg") no-repeat;
  position: absolute;
  top: -58px;
  z-index: 999;
  width: 65px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.servicesText2 {
  color: var(--light);
  font-weight: 500;
  margin: auto;
  line-height: 2.5rem;
  margin-bottom: 3.2rem;
}

.introImage {
  position: relative;
  top: -60px;
}

.caseImage {
  position: relative;
  top: -8vw;
}
.heroImgMobile {
  position: absolute;
  bottom: -15%;
  left: 15%;
  width: 22%;
}

.introCaseBlock {
  max-width: 79.3rem;
  margin: auto;
  text-align: center;
  padding: 0 0.5rem;
}

.caseQuote {
  max-width: 62.7rem;
  margin: 9.3rem auto 0;
  margin-top: 9.3rem;
  position: relative;
  z-index: 10;
}

.nav {
  position: relative;
}

.logoMobileWrapper {
  position: absolute;
  top: 2.5rem;
  right: 0;
}

.introTop,
.outsourcingIntro {
  position: relative;
}

.servicesWatermarkImage {
  position: absolute;
  bottom: -182px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  pointer-events: none;
}

.serviceWrapperBottom {
  padding-bottom: 1rem;
}

.serviceWrapperTop {
  display: flex;
  justify-content: center;
}

.serviceImgOutsourcing {
  width: 46%;
}

.serviceImgDev {
  width: 38%;
}

.servicesAbout {
  margin-top: 9.3rem;
  position: relative;
  z-index: 10;
}

.circle1,
.circle2,
.circle3 {
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.circle1,
.circle2 {
  max-width: 118rem;
}

.circle3 {
  max-width: 108rem;
}

.circle1 {
  top: -24rem;
  right: -14rem;
}

.circle2 {
  bottom: -30rem;
  left: -14rem;
}

.circle3 {
  bottom: -8rem;
  right: -15rem;
}

.clientsWrapper::-webkit-scrollbar,
.showcaseContainer::-webkit-scrollbar {
  height: 6px; /* Scrollbar height */
}

.clientsWrapper::-webkit-scrollbar-track,
.showcaseContainer::-webkit-scrollbar-track {
  background: rgba(61, 156, 215, 0.19); /* Track background color */
  border-radius: 10px;
}

.clientsWrapper::-webkit-scrollbar-thumb,
.showcaseContainer::-webkit-scrollbar-thumb {
  background-color: var(--blue); /* Thumb color */
  border-radius: 10px;
}

.clientsWrapper::-webkit-scrollbar-thumb:hover,
.showcaseContainer::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue); /* Change color on hover */
}

.sectionWrapper {
  max-width: 127.6rem;
  margin: auto;
}

.inputWrapper {
  position: relative;
  margin-bottom: 4.4rem;
}

.floatingLabel {
  position: absolute;
  top: 2px;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  left: 0;
  margin-bottom: 1rem;
}

/* When input is focused or contains a value */
.input:focus + .floatingLabel,
.input:not(:placeholder-shown) + .floatingLabel {
  top: -20px;
}

.mapWrapper {
  position: relative;
}

.mapOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #033146c4;
  z-index: 10;
  cursor: pointer;
}

.map {
  position: relative;
  z-index: 1;
}

.tooltip {
  position: fixed;
  opacity: 0;
  visibility: hidden;
}

.clientImg:hover {
  cursor: pointer;
}

.mapCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  border-radius: 100%;
}

.mapCircle1 {
  width: 46px;
  height: 46px;
  background-color: rgb(206, 230, 245);
}

.mapCircle2 {
  width: 86px;
  height: 86px;
  background-color: rgba(61, 156, 215, 0.25);
}

.mapCircle3 {
  width: 128px;
  height: 128px;
  background-color: rgba(61, 156, 215, 0.11);
}

.siteLogoMapWrapper {
  display: grid;
  place-content: center;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: var(--light);
  position: relative;
  z-index: 15;
}

.circleWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: grid;
  place-content: center;
}

.siteLogoMap {
  width: 28px;
  height: 28px;
}
.aboutus {
  position: fixed;
  top: 0;
  left: 0;
  left: -1px;
  bottom: -1px;
  z-index: 999;
  padding: 2rem 2.7rem;
  background: var(--light);
  border-radius: 0px 0px 0px 61px;
  transform: translateX(100%);
  transition: all 0.5s;
  text-align: left;
  overflow-y: auto;
  overflow-x: hidden;
}

.easytradeAboutImg {
  display: none;
}

.parallax-image {
  transition: transform 5s ease-out;
}

.parallax-image2 {
  transition: transform 0.3s ease-out;
}
.aboutusTitle {
  margin: 0;
  margin-bottom: 2.3rem;
}

.aboutText1 {
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.aboutText2,
.aboutText2 {
  font-weight: 400;
}

.aboutText2 {
  margin-bottom: 1.6rem;
}

.aboutText3 {
  margin-bottom: 3.2rem;
}

.aboutQuote {
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

.aboutQuote::before {
  content: "";
  display: block;
  background: url("../img/quote.svg") no-repeat;
  background-size: 50px 50px;
  position: absolute;
  top: -25px;
  z-index: 999;
  width: 65px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.crossContainerAbout {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
}

.watermarkAbout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 333px;
}

.caseTitle {
  text-align: center;
  margin-bottom: 2rem;
}

.outsourcingWatermark,
.caseWatermark {
  display: none;
}

.titleOne,
.titleTwo {
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.buttonWrapper {
  margin-bottom: 4.9rem;
}

.outsourcingImage {
  position: relative;
  margin-bottom: 3.8rem;
  padding-top: 7rem;
}

.serviceWrapperOutsourcing {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 13rem;
  border-radius: 30px 30px 0px 30px;
  background: #3e9bd6;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.94;
}

.outsourcingWhite {
  width: 9rem;
  position: relative;
  left: 10px;
  top: -5px;
}

.showcaseTitle {
  margin-bottom: 4.8rem;
}
.showcaseWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}

.goBack,
.goBackCenter {
  position: absolute;
  top: 4.5rem;
  left: 1.6rem;
  transition: all 0.3s;
}

.goBack:hover {
  transform: translateX(-5px);
}

.showcaseImg {
  margin: auto;
}

.showcaseImgWrapper {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
}

.demo {
  background-color: var(--dark);
  padding: 6.4rem 2.1rem 2rem;
}

.showcaseImgOverlayText {
  font-size: 1.6rem;
  color: var(--light);
  font-weight: 700;
}
.showcaseImgOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(61, 156, 215, 0.84);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.showcaseImgOverlay:hover {
  opacity: 1;
  cursor: pointer;
}

.showcasePlusIcon {
  position: absolute;
  width: 34px;
  height: 34px;
  bottom: 24px;
  right: 24px;
}

.devCycle {
  background-color: var(--dark);
  padding: 6.4rem 2.1rem 2rem;
  position: relative;
  top: 1px;
}

.devWrapper {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 5.8rem;
}

.devStep {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.devCycleTitle {
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
  width: 100%;
}

.devCycleText {
  color: var(--light);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.9rem;
}

.devCycleImg {
  margin: auto;
  position: relative;
  z-index: 99;
}

.circlesWrapper {
  display: none;
}

.w-100 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  body {
    text-align: left;
  }

  .aboutWrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5.5rem;
  }

  .outsourcingImage {
    width: 80%;
    margin: 0 auto 3.8rem;
    padding-top: 4rem;
  }
  .serviceWrapperOutsourcing {
    top: -12rem;
  }

  .aboutContainer {
    margin-top: 15px;
    margin-right: 6rem;
  }

  .easytradeAboutImg {
    display: block;
    width: 11.2rem;
  }

  .watermarkAbout {
    left: unset;
    right: 0;
    transform: unset;
  }

  .aboutText3 {
    margin-bottom: 6.2rem;
  }

  .aboutQuote {
    width: 80%;
  }

  .aboutQuote::before {
    content: "";
    display: block;
    background: url("../img/quote.svg") no-repeat;
    background-size: 50px 50px;
    position: absolute;
    top: -25px;
    z-index: 999;
    width: 65px;
    height: 50px;
    left: -20px;
    transform: unset;
  }

  .heroTitleFirst .Typewriter__wrapper::after {
    height: 8px;
    bottom: 16px;
  }

  .servicesText1::before {
    top: -35px;
    left: -25px;
    transform: unset;
  }

  .servicesWrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .servicesWrapperRow {
    width: 50%;
  }

  .sectionTitle {
    width: 100%;
  }
  .titleTwo,
  .quoteText {
    font-size: 3.2rem;
  }

  .quoteText {
    line-height: 4rem;
    letter-spacing: 0.64px;
  }
  .serviceTitle {
    text-align: center;
  }

  .titleBlock {
    flex-direction: row;
    gap: 2rem;
  }

  .lineRadio {
    flex-direction: row;
  }
  .line {
    width: 74px;
    height: 2px;
  }

  .introSection {
    padding: 6rem 2.4rem 11.4rem;
  }

  .introCaseSection {
    padding: 0rem 2.4rem 6rem;
  }

  .titleBlock {
    margin-bottom: 6rem;
  }

  .button {
    display: inline-block;
    width: auto;
  }

  .buttonForm {
    width: 100%;
  }

  .copyright {
    padding: 2.2rem 2.4rem 2.4rem;
  }

  .copyrightText {
    flex-direction: row;
    justify-content: center;
  }

  .copyrightDash {
    display: inline;
  }

  .servicesAbout {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 5.8rem;
    gap: 6rem;
  }

  .servicesText1 {
    margin: 0;
    width: 100%;
  }

  .contact {
    padding: 8rem 2.4rem;
  }

  .contactContainer {
    display: flex;
    flex-direction: row;
  }

  .contactContainer > div {
    width: 50%;
  }

  .lineRadioClients {
    display: flex;
  }

  .lineClients {
    background-color: var(--blue);
  }

  .servicesWatermarkImage,
  .watermarkImg {
    width: 35rem;
  }

  .watermarkImg {
    top: 85px;
  }

  .form {
    padding: 0;
  }

  .heroTitleEmp .Typewriter__wrapper,
  .heroTitleFirst .Typewriter__wrapper {
    font-size: 5rem !important;
  }

  .logo {
    margin: 0;
    margin-right: auto;
  }

  .nav {
    margin-bottom: 5rem;
  }

  .header {
    padding: 2rem 2.4rem 6rem;
  }

  .clients {
    padding: 8rem 2.4rem;
  }

  .services {
    padding: 0rem 2.4rem 8rem;
  }

  .introTop {
    display: flex;
    flex-direction: row-reverse;
  }

  .introBlock,
  .introImage {
    width: 50%;
  }

  .goBack {
    top: 17rem;
    left: 2.4rem;
  }

  .outsourcingNav {
    margin-bottom: 8rem;
  }

  .introImage {
    top: 0;
  }

  .servicesButton {
    margin: 0;
  }

  .titleBlockServices {
    margin-bottom: 6rem;
  }

  .servicesWatermarkImage {
    bottom: -100px;
    width: 45%;
    max-width: 50rem;
  }

  .circle1 {
    top: -35rem;
    right: -30rem;
  }

  .circle2 {
    bottom: -55rem;
    left: -40rem;
  }

  .circle3 {
    right: -30rem;
    top: unset;
    bottom: 18rem;
  }

  .outsourcingServicesAbout {
    width: 80%;
    margin: 8.4rem auto 0;
  }

  .showcaseWrapper {
    grid-template-columns: 1fr 1fr;
  }

  .demo {
    padding: 8rem 2.4rem 0rem;
  }

  .Typewriter__cursor::after {
    width: 3rem;
    height: 0.8rem;
    bottom: 8px;
  }

  .devCycle {
    padding: 6.4rem 2.4rem 2rem;
  }

  .goBackCenter {
    position: relative;
    display: block;
    left: unset;
    transform: translateX(0);
    transition: all 0.3s;
    top: 0;
  }

  .goBackCenter:hover {
    transform: translateX(-5px);
    cursor: pointer;
  }

  .goBackCenter img {
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .aboutus {
    position: fixed;
    top: 12rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    padding: 4.5rem 5.7rem 9.4rem;
    border-radius: 61px 61px 0px 61px;
    max-width: 90rem;
    width: 100%;
    text-align: left;
    height: fit-content;
    opacity: 0;
    visibility: hidden;
    overflow-y: unset;
  }

  .aboutContainer {
    max-height: 60vh;
    overflow-y: auto;
    margin-right: 0;
    padding-right: 8rem;
  }

  .aboutContainer::-webkit-scrollbar {
    height: 6px; /* Scrollbar height */
    width: 6px;
  }

  .aboutContainer::-webkit-scrollbar-track {
    background: rgba(61, 156, 215, 0.19); /* Track background color */
    border-radius: 10px;
  }

  .aboutContainer::-webkit-scrollbar-thumb {
    background-color: var(--blue); /* Thumb color */
    border-radius: 10px;
  }

  .aboutContainer::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue); /* Change color on hover */
  }

  .clientsList {
    width: 100%;
  }

  .aboutus.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
  }

  .watermarkAbout {
    top: 5rem;
  }
  .services {
    padding: 0rem 4rem 8rem;
  }

  .menuItem a {
    position: relative;
  }

  .menuItem a:hover::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--blue);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .menuWrapper {
    position: relative;
  }

  .megaMenu {
    opacity: 1;
    box-shadow: 0px 10px 40px 0px rgba(65, 87, 101, 0.3);
    border-radius: 0px 0px 50px 0px;
    overflow: hidden;
    position: absolute;
    z-index: 9999;
    left: -50%;
    top: 4rem;
  }

  .megaMenu.show {
    visibility: visible;
    display: flex;
  }

  .megaMenuLeft {
    width: 37.9rem;
    padding: 3rem 3.2rem 3rem 1.2rem;
    background-color: var(--light);
  }

  .megaList {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }

  .megaItem {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2.3rem 0 2.5rem 3.7rem;
    text-decoration: none;
  }

  .megaItem:hover {
    background-color: #f7f9fa;
    border-radius: 15px;
    cursor: pointer;
  }

  .megaItemText {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    padding-top: 5px;
  }

  .megaIconAi {
    padding-left: 1px;
  }

  .megaIconWrapper {
    width: 8rem;
  }

  .megaIcon {
    width: 45px;
  }

  .megaMenuRight {
    width: 37.4rem;
    padding: 4.9rem 3.5rem 4.5rem 2.8rem;
    background: #f7f9fa;
  }

  .megaMenuQuestion {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2.6rem;
    width: 75%;
    line-height: 3.2rem;
  }

  .megaMenuAnswer {
    font-weight: 500;
    line-height: 2.4rem;
    margin-bottom: 6.9rem;
    width: 95%;
  }

  .buttonMega {
    width: 30.5rem;
    text-align: center;
  }
  .tooltip {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 26rem;
    border-radius: 6rem;
    padding: 2.2rem;
    background-color: var(--dark);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1000;
  }

  .tooltip-content {
    text-align: center;
    font-size: 1.6rem;
    color: var(--light);
    line-height: 2.1rem;
    font-weight: 500;
  }

  .tooltipTextEmp {
    font-weight: 700;
  }

  .tooltip-caret {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--dark);
  }

  .tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-6px);
  }

  .clientsList {
    left: 0;
  }

  .clientImg {
    height: 23px;
  }
  .clientsWrapper {
    padding: 0;
  }

  .menu {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    z-index: 15;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transform: translateX(0%);
  }

  .menuList {
    flex-direction: row;
    gap: 2.9rem;
  }

  .menuItem.active:before {
    display: none;
  }

  .mobileMenuRow,
  .mobileWatermark,
  .logoMobileWrapper {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .serviceTitle span {
    font-size: 2rem;
  }

  .clients {
    padding: 8rem 4rem;
  }

  .contact {
    padding: 8rem 4rem;
  }
  .servicesWatermarkImage,
  .watermarkImg {
    left: 0px;
    transform: translateX(0);
    width: 35rem;
  }

  .servicesWatermarkImage {
    top: -25px;
    bottom: unset;
  }

  .watermarkImg {
    top: 85px;
  }

  .serviceWrapperBottom {
    padding-bottom: 2rem;
  }

  .circle1 {
    right: -40rem;
  }

  .circle2 {
    left: -60rem;
  }

  .circle3 {
    bottom: 20rem;
  }

  .serviceWrapper:hover {
    background-color: rgb(53, 177, 255, 0.31);
    cursor: pointer;
  }

  .serviceWrapperAnimate {
    animation-name: grow;
    animation-duration: 900ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }

  @keyframes grow {
    0% {
      transform: scale(1) ;
    }
    40% {
      transform: scale(1.1);
    }
    50% {
      transform: scale(0.9);
    }
    60% {
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.95);
    }
    80% {
      transform: scale(1.02);
    }
    90% {
      transform: scale(0.98) ;
    }
    100% {
      transform: scale(1);
    }
  }

  .serviceWrapper:hover .serviceArrow {
    transform: translateX(5px);
  }

  .outsourcingIntro {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
  }

  .outsourcingImage {
    width: 60%;
    position: relative;
    margin: 0;
    padding: 0;
    top: -11rem;
  }

  .outsourcingIntroBlock {
    width: 40%;
    padding-top: 5rem;
  }

  .serviceWrapperOutsourcing {
    left: -60%;
    top: 1rem;
  }

  .headerOutsourcing {
    padding: 2rem 2.4rem 9rem;
  }

  .outsourcingWatermark {
    display: block;
    position: absolute;
    top: 40%;
    right: 10%;
    max-width: 40rem;
    pointer-events: none;
  }

  .caseWatermark {
    display: block;
    position: absolute;
    top: 60%;
    right: 10%;
    max-width: 30rem;
    pointer-events: none;
  }

  .showcaseContainer {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2rem;
  }

  .showcaseWrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-content: center;
    width: max-content;
    position: relative;
    z-index: 999;
  }

  .showcaseImg {
    width: 30.8rem;
  }

  .demo {
    padding: 8rem 0rem 2rem 4rem;
    position: relative;
    top: 2px;
  }

  .devStep {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .devStepContent {
    width: 55%;
  }

  .devCycleImgWrapper {
    width: 45%;
  }

  .devCycleImg {
    margin: 0;
    margin-left: auto;
  }

  .goBackCenterImg {
    padding: 1rem;
  }
}

@media screen and (min-width: 1440px) {
  .servicesText1::before {
    top: -20px;
  }

  .heroTitleFirst .Typewriter__wrapper::after {
    height: 11px;
    bottom: 22px;
  }

  .servicesWatermarkImage,
  .watermarkImg {
    width: 45rem;
  }

  .servicesWatermarkImage {
    top: 25px;
  }
  .heroTitleEmp .Typewriter__wrapper,
  .heroTitleFirst .Typewriter__wrapper {
    font-size: 8rem !important;
  }

  .map {
    height: 45rem;
  }

  .header {
    padding: 3.2rem 0 8rem;
    max-width: 127.6rem;
    margin: auto;
  }

  .servicesText1 {
    font-size: 3.2rem;
    line-height: 4.3rem;
    width: 62.7rem;
  }

  .servicesText2 {
    line-height: 2.9rem;
    width: 37.7rem;
  }

  .intro {
    line-height: 2.9rem;
  }

  .introImage {
    width: 60%;
    padding-left: 6rem;
  }

  .introBlock {
    width: 40%;
  }

  .introTop {
    align-items: center;
    justify-content: space-between;
  }

  .heroImgMobile {
    width: 169px;
    left: 22%;
    bottom: -22%;
  }

  .titleBlockServices {
    margin-bottom: 6rem;
  }

  .sectionTitle {
    font-size: 6rem;
  }

  .servicesWatermarkImage {
    left: 0;
  }

  .servicesAbout {
    justify-content: space-between;
  }

  .services {
    padding: 6rem 0 12rem;
  }

  .contactContainer {
    width: 100%;
  }

  .outsourcingServicesAbout {
    display: block;
    margin: 0;
    margin-top: 4rem;
  }

  .outsourcingWatermark {
    max-width: 50rem;
    bottom: -23rem;
    top: unset;
  }

  .goBack {
    position: relative;
    top: 0;
    left: 0;
  }

  .Typewriter__cursor::after {
    width: 4rem;
    height: 1.2rem;
    bottom: 8px;
  }

  .devCycleImg {
    width: 46.5rem;
    margin-left: auto;
  }

  .circlesWrapper {
    display: inline-block;
    position: absolute;
    left: -6rem;
  }

  .devStepContent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    position: relative;
  }

  .circlesIcon {
    width: 4rem;
    margin-top: 1.5rem;
  }

  .circlesWrapperLine::after {
    content: "";
    display: block;
    background-color: rgba(62, 155, 214, 0.52);
    position: absolute;
    top: 60px;
    z-index: 999;
    width: 3px;
    height: 295px;
    left: 50%;
    transform: translateX(-50%);
  }

  .buttonMarginCorrection {
    margin-top: 2rem;
  }

  .caseTitle {
    font-size: 4.8rem;
  }

  .caseWatermark {
    top: 55%;
    max-width: 40rem;
  }

  .caseTitle {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1720px) {
  .titleBlock {
    position: relative;
  }

  .lineRadio {
    position: absolute;
    left: -170px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1920px) {
  .titleBlock {
    gap: 9.2rem;
  }

  .heroTitleFirst .Typewriter__wrapper::after {
    height: 15px;
    bottom: 32px;
  }

  .desktopContactWrapper {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    position: absolute;
    right: -27rem;
  }

  .desktopContact {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .phoneNumber {
    font-weight: 900;
    font-size: 1.4rem;
  }

  .introDesktopLineRadio {
    display: flex !important;
    opacity: 1;
    top: 112px;
  }

  .heroTitleFirst .Typewriter__wrapper,
  .heroTitleEmp .Typewriter__wrapper {
    font-size: 11rem !important;
  }

  .siteLogo {
    position: absolute;
    left: -28rem;
  }
  .header {
    padding: 6.4rem 0 10.9rem;
  }

  .nav {
    margin-bottom: 9rem;
  }
  .menuList {
    gap: 5.4rem;
  }
  .menuItem {
    font-size: 1.6rem;
  }
  .introTop {
    align-items: flex-start;
  }

  .map {
    height: 64.6rem;
  }

  .lineRadio {
    left: -275px;
  }

  .line {
    width: 84px;
  }

  .lineText {
    display: inline-block;
    text-transform: uppercase;
    color: var(--light);
    font-size: 1.4rem;
    font-weight: 900;
  }

  .lineTextBlack {
    color: var(--dark);
  }

  .floatingLabel {
    left: -17rem;
    width: 13rem;
    text-align: right;
    margin-bottom: 0;
    top: 2rem;
  }

  .input:focus + .floatingLabel,
  .input:not(:placeholder-shown) + .floatingLabel {
    top: 2rem;
  }

  .textAreaLabel {
    position: relative;
    width: 13rem;
    left: -17rem;
    top: 1.5rem;
    text-align: right;
    margin-bottom: 0;
  }

  .contactTitleBlock {
    margin-bottom: 1.7rem;
  }

  .Typewriter__cursor::after {
    width: 4.5rem;
    height: 1.5rem;
    bottom: 13px;
  }

  .introBlock {
    width: 35.1rem;
    position: relative;
  }

  .contactsWrapper {
    padding-top: 1.5rem;
  }
  .introImage {
    flex-grow: 1;
    padding-left: 8.5rem;
    width: auto;
    left: 6rem;
    top: -15rem;
  }

  .heroImg {
    width: 83.6rem;
  }

  .heroImgMobile {
    width: 169px;
    left: 20px;
    bottom: 15px;
  }

  .servicesWatermarkImage {
    top: -3rem;
  }

  .watermarkImg {
    top: -5rem;
  }
  .servicesWatermarkImage,
  .watermarkImg {
    width: 50rem;
    left: -7.5rem;
  }

  .clients {
    padding: 19rem 4rem;
  }

  .clientsWrapper {
    margin-top: 7.9rem;
  }

  .clientsList {
    gap: 4rem;
  }

  .clientImg {
    height: 33px;
  }

  .contact {
    padding: 10.6rem 0 4.8rem;
  }

  .copyright {
    padding: 4.1rem 0;
  }

  .copyrightText {
    justify-content: flex-start;
  }

  .circle1 {
    right: -60rem;
    top: -55rem;
  }

  .circle2 {
    left: -67rem;
    bottom: -48rem;
  }

  .circle3 {
    bottom: -12rem;
    right: -45rem;
  }

  .sectionTitle {
    font-size: 6.4rem;
  }

  .inputWrapper {
    margin-bottom: 3.2rem;
  }

  .megaMenu {
    left: -6rem;
    top: 4rem;
  }

  .mapCircle1 {
    width: 64px;
    height: 64px;
    background-color: rgb(206, 230, 245);
  }

  .mapCircle2 {
    width: 116px;
    height: 116px;
    background-color: rgba(61, 156, 215, 0.25);
  }

  .mapCircle3 {
    width: 158px;
    height: 158px;
    background-color: rgba(61, 156, 215, 0.11);
  }

  .siteLogoMapWrapper {
    display: grid;
    place-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--light);
    position: relative;
    z-index: 15;
  }

  .circleWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: grid;
    place-content: center;
  }

  .siteLogoMap {
    width: 38px;
    height: 38px;
  }

  .servicesText1::before {
    top: -25px;
  }

  .outsourcingNav {
    margin-bottom: 8.4rem;
  }

  .goBack {
    display: block;
    margin-bottom: 2rem;
    position: relative;
  }

  .serviceWrapperOutsourcing {
    width: 22.6rem;
    left: -30%;
    border-radius: 61px 61px 0px 61px;
  }

  .outsourcingWhite {
    width: 17rem;
  }

  .heroImgOutsourcing {
    width: 93.4rem;
  }

  .outsourcingIntro {
    display: block;
  }

  .outsourcingIntroBlock {
    width: 79rem;
    padding-top: 14rem;
  }

  .outsourcingImage {
    position: absolute;
    right: -5rem;
    width: 93.4rem;
    top: -14rem;
  }

  .introOutsourcing {
    font-size: 2rem;
    width: 55%;
  }

  .introOutsourcing:nth-child(1) {
    margin-bottom: 2rem;
  }

  .buttonWrapper {
    margin-bottom: 11.2rem;
    margin-top: 5rem;
  }

  .buttonWrapper p {
    width: 29.7rem;
    text-align: center;
  }

  .titleOne {
    font-size: 3.2rem;
  }

  .outsourcingServicesAbout {
    margin-top: 9.3rem;
  }

  .outsourcingWatermark {
    right: 0;
  }

  .technologies {
    padding: 7.4rem 0rem 7.8rem;
  }

  .demo {
    padding: 10rem 0 0;
  }

  .showcaseContainer {
    padding-bottom: 4.2rem;
  }

  .showcaseWrapper {
    gap: 1.4rem;
  }

  .showcase {
    margin-left: calc(50% - 50vw);
  }

  .circlesIcon {
    width: 5rem;
  }

  .circlesWrapperLine::after {
    top: 70px;
    width: 3px;
    height: 318px;
  }

  .circlesWrapper {
    left: -9rem;
  }

  .devStepContent {
    gap: 0;
  }

  .devWrapper {
    gap: 9.3rem;
  }

  .buttonMarginCorrection {
    width: 29.7rem;
    text-align: center;
  }

  .devCycle {
    padding: 7.4rem 0rem 6.8rem;
  }

  .caseTitle {
    font-size: 3.2rem;
  }

  .caseImage {
    top: -11rem;
  }

  .introCaseSection {
    padding-bottom: 15.4rem;
  }

  .caseWatermark {
    top: 52%;
    right: 14%;
    max-width: 50rem;
  }

  .techWrapper {
    margin-top: 3.2rem;
  }

  .titleBlockCase {
    margin-bottom: 0;
  }

  .caseTitle {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1356px) {
  .demo {
    padding: 8rem 0 4rem;
  }

  .showcase {
    margin-left: calc((100vw - 1276px) / 2);
  }
}
