@font-face {
  font-family: Nunito;
  src: url("../fonts/nunito.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-primary: Nunito, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

header nav {
  max-width: 1110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.3s ease;
  position: relative;
}

header nav .nav--top {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .nav--top a img {
  height: 50px;
}

header nav .menu-icon {
  width: 16px;
  height: 18px;
  display: none;
  cursor: pointer;
}

header nav .close-icon {
  width: 13px;
  height: 18px;
  object-fit: cover;
  display: none;
  cursor: pointer;
}

header nav .mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

header nav .mobile-link img {
  height: 50px;
}

header nav .mobile-link span {
  color: #333;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  z-index: 999;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main .digital-precision {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 80px 15px 148px;
  background-image: url("../images/digital-precision-bg.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
}

main .digital-precision .digital-precision__content {
  width: 635px;
  display: flex;
  flex-direction: column;
}

main .digital-precision .digital-precision__content h2 {
  color: #564ee8;
  font-family: var(--font-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  padding: 6px 8px;
  border: 1px solid #564ee8;
  box-shadow: 6px 6px 0 0 #564ee8;
  margin-bottom: 26px;
  width: fit-content;
  background: #fff;
}

main .digital-precision .digital-precision__content h3 {
  color: #333;
  font-family: var(--font-primary);
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
}

main .digital-precision .digital-precision__content p {
  color: #333;
  font-family: var(--font-primary);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
}

main .digital-precision img {
  width: 466px;
  height: 465px;
}

main .digital-precision__content h3,
main .digital-precision__content p {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}

main .digital-precision img {
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
}

main .digital-precision.positioned {
  margin-top: 90px;
}

main .digital-precision.active .digital-precision__content h3,
main .digital-precision.active .digital-precision__content p {
  transform: translateY(0);
  opacity: 1;
}

main .digital-precision.active img {
  transform: translateX(0);
  opacity: 1;
}

main .insights {
  padding: 90px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

main .insights .insight-item {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

main .insights .insight-item .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(76, 76, 76, 0.14));
  background: #fff;
}

main .insights .insight-item .img img {
  width: 40px;
  height: 40px;
}

main .insights .insight-item h2 {
  color: #232323;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  margin-bottom: 15px;
}

main .insights .insight-item p {
  color: #666;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .insights .insight-item.active {
  transform: translateY(0);
  opacity: 1;
}

main .digital-potential {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 120px 15px;
  background: #f3fff6;
}

main .digital-potential img {
  max-width: 484px;
  width: 100%;
  height: auto;
  transform: translateY(40px);
}

main .digital-potential .digital-potential__content {
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-40px);
}

main .digital-potential .digital-potential__content h2 {
  border: 1px solid #de9c38;
  box-shadow: 6px 6px 0 0 #de9c38;
  padding: 6px 8px;
  color: #de9c38;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.4px;
  width: fit-content;
  background: #fff;
}

main .digital-potential .digital-potential__content h3 {
  color: #333;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px;
  margin: 20px 0 16px;
}

main .digital-potential .digital-potential__content p {
  color: #333;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .digital-potential.active img {
  transform: translateY(0);
  transition: all 1s ease;
}

main .digital-potential.active .digital-potential__content {
  transform: translateY(0);
  transition: all 1s ease;
}

main .strategy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 15px 166px;
  background-image: url("../images/strategy.webp");
  background-size: 738px 823px;
  background-position: left bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

main .strategy h2 {
  color: #37dbdb;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.4px;
  padding: 6px 8px;
  border: 1px solid #37dbdb;
  background: #fff;
  box-shadow: 6px 6px 0 0 #37dbdb;
}

main .strategy h3 {
  color: #333;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px;
  margin: 20px 0 21px;
  max-width: 540px;
  width: 100%;
}

main .strategy .cards::-webkit-scrollbar {
  display: none;
}

main .strategy .cards {
  padding: 15px 15px 15px 179px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  max-width: 1500px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: transform 1s ease, opacity 1s ease;
  transform: translateY(40px);
  opacity: 0;
}

main .strategy .cards .card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(82, 82, 82, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 37px;
  width: 338px;
  flex: 0 0 auto;
}

main .strategy .cards .card .img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

main .strategy .cards .card .img img {
  width: 32px;
  height: 32px;
}

main .strategy .cards .card h3 {
  color: #232323;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 27px;
  margin: 42px 0 15px;
}

main .strategy .cards .card p {
  color: #666;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .strategy .cards.active {
  transform: translateY(0);
  transition: all 1s ease;
  opacity: 1;
}

main .capabilities {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  padding: 100px 15px;
}

main .capabilities > img {
  max-width: 396px;
  width: 100%;
  height: auto;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .capabilities .capabilities__content {
  max-width: 505px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .capabilities .capabilities__content h2 {
  color: #bf1492;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.4px;
  border: 1px solid #bf1492;
  background: #fff;
  box-shadow: 6px 6px 0 0 #bf1492;
  width: fit-content;
  padding: 6px 8px;
}

main .capabilities .capabilities__content h3 {
  color: #333;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px;
  margin: 20px 0 30px;
}

main .capabilities .capabilities__content p {
  color: #333;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}

main .capabilities .capabilities__content ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  row-gap: 23px;
  width: calc(100% + 1px);
}

main .capabilities .capabilities__content ul li {
  list-style: none;
  display: flex;
  gap: 15px;
  width: 238px;
}

main .capabilities .capabilities__content ul li img {
  width: 35px;
  height: 35px;
}

main .capabilities .capabilities__content ul li .content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

main .capabilities .capabilities__content ul li .content h3 {
  color: #232323;
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

main .capabilities .capabilities__content ul li .content p {
  color: #666;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

main .capabilities.active img {
  transform: translateX(0);
  opacity: 1;
}

main .capabilities.active .capabilities__content {
  transform: translateY(0);
  opacity: 1;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
  background: #202656;
}

footer h2 {
  color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

footer h3 {
  color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  max-width: 447px;
  width: 100%;
}

footer .line {
  max-width: 448px;
  width: 100%;
  height: 1px;
  margin: 19.5px 0;
  background: #686aa4;
}

footer p {
  color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 1440px) {
  main .digital-precision {
    background-size: 1440px auto;
    background-position: top center;
  }
}

@media screen and (max-width: 1200px) {
  header nav {
    max-width: 930px;
  }
  main .insights .insight-item {
    max-width: 290px;
  }
}

@media screen and (max-width: 1022px) {
  header nav {
    height: 80px;
    flex-direction: column;
  }
  header nav a.mobile-link {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  header nav .nav--top {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
  }
  header nav .nav--top a img {
    height: 40px;
  }
  header nav .menu-icon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 26px;
  }
  header nav .close-icon {
    position: absolute;
    left: 0;
    top: 26px;
  }
  header nav.open {
    height: 145px;
    justify-content: flex-start;
  }
  header nav.open .menu-icon {
    display: none;
  }
  header nav.open .close-icon {
    display: inline-block;
  }
  header nav.open .mobile-link {
    display: flex;
    opacity: 1;
    padding: 13px;
    gap: 5px;
  }
}

@media screen and (max-width: 992px) {
  header nav {
    height: 70px;
  }
  header nav .nav--top {
    width: 90%;
  }
  header nav .mobile-link img {
    height: 40px;
  }
  main .digital-precision {
    flex-direction: column;
    padding: 40px 15px 60px;
    gap: 70px;
  }
  main .digital-precision .digital-precision__content {
    width: 100%;
  }
  main .digital-precision .digital-precision__content h3 {
    font-size: 36px;
    line-height: 43px;
    text-align: center;
  }
  main .digital-precision .digital-precision__content p {
    font-size: 36px;
    line-height: 43px;
    text-align: center;
  }
  main .digital-precision img {
    max-width: 466px;
    width: 100%;
    height: auto;
  }
  main .digital-precision.positioned {
    margin-top: 70px;
  }
  main .insights {
    padding: 50px 15px;
  }
  main .insights .insight-item {
    max-width: 350px;
  }
  main .digital-potential {
    padding: 80px 15px 65px;
    gap: 30px;
  }
  main .digital-potential .digital-potential__content h3 {
    font-size: 26px;
    line-height: 32px;
    margin: 25px 0;
  }
  main .digital-potential .digital-potential__content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
  }
  main .strategy {
    flex-direction: column;
    padding: 50px 15px;
  }
  main .strategy h3 {
    font-size: 26px;
    line-height: 32px;
    margin: 25px 0 50px;
  }
  main .strategy .cards {
    padding: 15px 0;
  }
  main .strategy .cards .card {
    width: 345px;
  }
  main .capabilities {
    padding: 40px 15px 50px;
    gap: 30px;
  }
  main .capabilities .capabilities__content h3 {
    font-size: 26px;
    line-height: 32px;
    margin: 25px 0 30px;
  }
  main .capabilities .capabilities__content ul {
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }
  main .capabilities .capabilities__content ul li {
    width: 167px;
    padding: 20px 0 30px;
  }
  footer {
    padding: 22px 15px 30px;
  }
  footer .line {
    margin: 9.5px 0 29.5px;
    width: calc(100% + 30px);
  }
}

/*about-us page*/
main > h2 {
  background: url("../images/about-us-bg.webp") no-repeat center bottom,
    radial-gradient(50% 50% at 50% 50%, #31347f 0%, #2a2a65 50%, #2e2056 100%);
  background-size: cover;
  width: 100%;
  height: 348px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
}

main > h2.positioned {
  margin-top: 90px;
}

main .about-us {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 120px 15px;
}

main .about-us img {
  max-width: 458px;
  width: 100%;
  height: auto;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .about-us .about-us__content {
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .about-us .about-us__content h2 {
  color: #3851de;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.4px;
  padding: 6px 8px;
  border: 1px solid #3851de;
  background: #fff;
  box-shadow: 6px 6px 0 0 #3851de;
  width: fit-content;
}

main .about-us .about-us__content h3 {
  color: #333;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px;
  margin: 20px 0 24px;
}

main .about-us .about-us__content p {
  color: #333;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .about-us.active img {
  transform: translateY(0);
  opacity: 1;
}

main .about-us.active .about-us__content {
  transform: translateX(0);
  opacity: 1;
}

main .pros {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 0 15px 31px;
}

main .pros .pro {
  width: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  padding: 60px 30px;
}

main .pros .pro .img {
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(76, 76, 76, 0.14);
}

main .pros .pro .img img {
  width: 42px;
  height: 40px;
  aspect-ratio: 21/20;
}

main .pros .pro h2 {
  color: #232323;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  margin: 20px 0 15px;
}

main .pros .pro p {
  color: #666;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .pros .pro {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .pros .pro:nth-of-type(1) .img {
  width: 101px;
}

main .pros .pro:nth-of-type(2) {
  margin-top: 50px;
}

main .pros .pro:nth-of-type(4) {
  align-self: center;
}

main .pros .pro.active {
  transform: translateY(0);
  opacity: 1;
}

main .execution {
  max-width: 1011px;
  width: 100%;
  padding: 0 15px 139px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

main .execution img {
  max-width: 396px;
  width: 100%;
  height: auto;
  transform: translateX(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .execution .execution__content {
  max-width: 505px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

main .execution .execution__content h3 {
  color: #333;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px;
}

main .execution .execution__content p {
  color: #333;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

main .execution.active img {
  transform: translateX(0);
  opacity: 1;
}

main .execution.active .execution__content {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  main .pros .pro {
    width: 210px;
  }
}

@media screen and (max-width: 992px) {
  main > h2 {
    font-size: 36px;
    height: 160px;
    padding: 0 15px;
  }
  main > h2.positioned {
    margin-top: 70px;
  }
  main .about-us {
    gap: 30px;
    padding: 50px 15px;
  }
  main .about-us .about-us__content {
    align-items: center;
  }
  main .about-us .about-us__content h3 {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    margin: 25px 0;
  }
  main .about-us .about-us__content p {
    margin-bottom: 15px;
  }
  main .pros {
    padding-bottom: 81px;
  }
  main .pros .pro {
    width: 330px;
  }
  main .pros .pro:nth-of-type(2) {
    margin-top: 0px;
  }
  main .pros .pro:nth-of-type(4) {
    align-self: flex-start;
  }
  main .execution {
    gap: 30px;
    padding-bottom: 100px;
  }
  main .execution .execution__content h3 {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    margin: 0;
  }
  main .execution .execution__content p {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  main .pros .pro {
    max-width: 510px;
    width: 100%;
  }
}
