body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #505771;
  font-size: 18px;
  line-height: 27px;
}
body.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #181F3F;
}

.show-in-desktop {
  display: block !important;
}
@media (max-width: 767.98px) {
  .show-in-desktop {
    display: none !important;
  }
}

.show-in-mobile {
  display: none !important;
}
@media (max-width: 767.98px) {
  .show-in-mobile {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .hide-in-mobile {
    display: none;
  }
}

a {
  color: #181F3F;
  text-decoration: none;
}
a:hover {
  color: #7534FF;
}

*:focus {
  box-shadow: none !important;
}

.grey {
  color: rgba(24, 31, 63, 0.4);
}
@media (max-width: 767.98px) {
  .grey {
    font-size: 16px;
    line-height: 24px;
  }
}

.section-title {
  font-size: 52px;
  line-height: 78px;
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 32px;
    line-height: 130%;
  }
}
.section-title.semi-bold {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .section-title.two {
    font-size: 24px;
    line-height: 36px;
  }
}

.section-sub-title {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section-sub-title {
    font-size: 14px;
    line-height: 21px;
  }
}

.section-desc {
  font-size: 18px;
  line-height: 27px;
}
@media (max-width: 767.98px) {
  .section-desc {
    font-size: 14px;
    line-height: 21px;
  }
}

.figure {
  display: block;
}
.figure:hover .img-fluid {
  transform: scale(1.03);
}
.figure:hover figcaption {
  color: #7534FF;
}
.figure .img-fluid {
  width: 100%;
  transition: all 0.3s ease;
}
.figure figcaption {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #000000;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .figure figcaption {
    font-size: 18px;
    line-height: 27px;
  }
}

.blog-article ~ .blog-article {
  margin-top: 84px;
}
.blog-article:hover .title {
  color: #7534FF;
}
.blog-article:hover .img-fluid {
  transform: scale(1.03);
}
.blog-article .img-fluid {
  width: 100%;
  transition: all 0.3s ease;
}
.blog-article .date {
  color: rgba(24, 31, 63, 0.4);
}
@media (max-width: 767.98px) {
  .blog-article .date {
    font-size: 12px;
    line-height: 18px;
  }
}
.blog-article .title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .blog-article .title {
    font-size: 18px;
    line-height: 130%;
    margin-top: 18px;
  }
}
.blog-article .text {
  margin-top: 24px;
  color: #505771;
}
@media (max-width: 767.98px) {
  .blog-article .text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 21px;
  }
}

.link {
  color: #7534FF;
}
.link:hover {
  color: #7534FF;
  text-decoration: underline;
}

.btn.btn-primary {
  font-weight: 500;
  font-size: 18px;
  padding: 13px 50px;
  background: linear-gradient(360deg, #CD59FE 0%, #7534FF 129.25%);
  border-radius: 0;
  border: 0;
}
.btn.btn-primary:hover {
  text-decoration: none;
  background: linear-gradient(360deg, #6F21E6 0%, #7534FF 129.25%);
}

.btn-link {
  display: inline-block;
  color: #7534FF;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .btn-link {
    font-size: 14px;
    line-height: 21px;
  }
}
.btn-link:hover {
  color: #7534FF;
  text-decoration: underline;
}

.dot-list li {
  font-size: 24px;
  line-height: 36px;
  position: relative;
  padding-left: 15px;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .dot-list li {
    font-size: 16px;
    line-height: 24px;
  }
}
.dot-list li:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #181F3F;
}
@media (max-width: 767.98px) {
  .dot-list li:before {
    top: 10px;
  }
}
.dot-list li ~ li {
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  .dot-list li ~ li {
    margin-top: 12px;
  }
}

.card-list {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 32px 84px;
}
@media (max-width: 767.98px) {
  .card-list {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.card-list.align-start {
  align-items: flex-start;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header.hide .logo {
  transform: scale(0.7);
}
@media (max-width: 767.98px) {
  .header.hide .logo {
    transform: scale(0.9);
  }
}
.header .logo {
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .header .logo {
    max-height: 48px;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .header .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header .container .list-unstyled {
  display: flex;
  align-items: center;
}
.header .container .list-unstyled li ~ li {
  margin-left: 50px;
}
.header .container .list-unstyled li a {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
}
.header .container .list-unstyled li a.menu-btn:before, .header .container .list-unstyled li a.menu-btn:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #181F3F;
}
.header .container .list-unstyled li a.menu-btn:after {
  margin-top: 10px;
}
.header .container .list-unstyled li a.menu-btn:hover:before, .header .container .list-unstyled li a.menu-btn:hover:after {
  background-color: #7534FF;
}

.hero-section {
  padding-top: 100px;
  /* Extra small devices (phones, 600px and down) */
  /* Small devices (portrait tablets and large phones, 600px and up) */
  /* Medium devices (landscape tablets, 768px and up) */
}
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 40px;
  }
}
.hero-section .section-title {
  margin-bottom: 30px;
}
.hero-section .video {
  margin-top: 100px;
  transition: all 0.5s;
}
.hero-section .video:hover {
  scale: 1.03;
}
.hero-section .video-wrapper {
  position: relative;
  cursor: pointer;
}
.hero-section .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-section .video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 20, 26, 0.8);
  z-index: 9999;
  transition: all 0.36s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.hero-section .video-popup.show {
  transition: opacity 0.36s ease-in-out;
  opacity: 1;
  visibility: inherit;
}
.hero-section .video-popup-exit {
  position: absolute;
  top: 19px;
  right: 26px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-section .video-popup-exit-line-1, .hero-section .video-popup-exit-line-2 {
  top: 11px;
  left: 2px;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.hero-section .video-popup-exit-line-1 {
  transform: rotate(-45deg);
}
.hero-section .video-popup-exit-line-2 {
  transform: rotate(45deg);
}
.hero-section .video-container {
  position: relative;
  height: calc(100% - 120px);
  width: calc(100% - 48px);
  max-width: 1640px;
  margin: 60px auto;
}
.hero-section .video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75vw;
  height: 75vh;
  transform: translate(-55%, -50%);
}
.hero-section #iframe-player {
  width: 80vw;
  height: 80vh;
}
.hero-section #preview-video {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 600px) {
  .hero-section .video {
    margin-top: 40px;
    transition: all 0.5s;
  }
  .hero-section #iframe-player {
    width: 80vw;
    height: 50vh;
  }
}
@media only screen and (min-width: 600px) {
  .hero-section #iframe-player {
    width: 80vw;
    height: 55vh;
  }
}
@media only screen and (min-width: 768px) {
  .hero-section #iframe-player {
    width: 80vw;
    height: 60vh;
  }
}

.expertise-section {
  padding-top: 160px;
}
@media (max-width: 767.98px) {
  .expertise-section {
    padding-top: 60px;
  }
}
.expertise-section .btn-link {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .expertise-section .btn-link {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .expertise-section .section-desc {
    margin-bottom: 80px;
  }
}
.expertise-section .text {
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .expertise-section .text {
    margin-bottom: 80px;
  }
}

.accordion .accordion-item {
  border: 0;
}
.accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  padding-left: 0;
  padding-right: 0;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    line-height: 24px;
  }
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .accordion .accordion-item .accordion-body {
    font-size: 14px;
    line-height: 21px;
  }
}

.client-section {
  margin-top: 80px;
  padding-top: 196px;
  background: url(../img/powerfulclientworld.jpg) no-repeat right center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .client-section {
    padding-top: 100px;
    margin-top: 0;
  }
}
.client-section .client-carousel-content {
  overflow: hidden;
}
.client-section .client-list {
  display: flex;
  gap: 24px;
  animation: scroll 300s linear infinite;
}
@media (max-width: 767.98px) {
  .client-section .client-list {
    gap: 8px;
  }
}
.client-section .client-list:hover {
  animation-play-state: paused;
}
.client-section .client-list .item {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
  flex: 0 0 31.5vw;
}
@media (max-width: 767.98px) {
  .client-section .client-list .item {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 8px;
  }
}
@media (min-width: 768px) {
  .client-section .client-list .item .img-fluid {
    filter: grayscale(100%);
  }
}
.client-section .client-list .item .img-fluid:hover {
  filter: grayscale(0);
}
.client-section .btn-link {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .client-section .btn-link {
    margin-top: 30px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3800vw);
  }
}
.testimonials-section {
  padding-top: 176px;
}
@media (max-width: 767.98px) {
  .testimonials-section {
    padding-top: 60px;
  }
}
.testimonials-section .section-title {
  position: relative;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .testimonials-section .section-title {
    margin-bottom: 48px;
  }
}
.testimonials-section .section-title .icon {
  position: absolute;
  transform: translate(-80%, -70%);
  width: 120px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .testimonials-section .section-title .icon {
    width: 74px;
    transform: translate(0%, -80%);
  }
}
.testimonials-section .owl-nav .owl-prev img,
.testimonials-section .owl-nav .owl-next img {
  filter: invert(80%);
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
}
.testimonials-section .owl-nav .owl-prev:hover img,
.testimonials-section .owl-nav .owl-next:hover img {
  filter: invert(0);
  transform: scale(1);
}
.testimonials-section .testimonial-card .client-img img {
  width: auto;
  max-height: 30px;
}
.testimonials-section .testimonial-card .title {
  margin-top: 30px;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .title {
    font-size: 18px;
    line-height: 27px;
  }
}
.testimonials-section .testimonial-card .text {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .text {
    font-size: 14px;
    line-height: 21px;
    margin-top: 20px;
  }
}
.testimonials-section .testimonial-card .author {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .author {
    margin-top: 20px;
  }
}
.testimonials-section .testimonial-card .author .avatar {
  flex: 0 0 48px;
  width: 48px;
  margin-right: 24px;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .author .avatar {
    flex: 0 0 36px;
    width: 36px;
    margin-right: 12px;
  }
}
.testimonials-section .testimonial-card .author .avatar img {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.testimonials-section .testimonial-card .author .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .author .name {
    font-size: 12px;
    line-height: 18px;
  }
}
.testimonials-section .testimonial-card .author .designation {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 767.98px) {
  .testimonials-section .testimonial-card .author .designation {
    font-size: 10px;
    line-height: 15px;
  }
}

.blogs-section {
  padding-top: 80px;
}
@media (max-width: 767.98px) {
  .blogs-section {
    padding-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .blogs-section .hide-in-mobile {
    display: none;
  }
}
.blogs-section.inner {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .blogs-section.inner {
    padding-top: 60px;
  }
}
.blogs-section.inner .heading {
  font-size: 24px;
  line-height: 36px;
  margin-top: 100px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .blogs-section.inner .heading {
    margin-top: 48px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 767.98px) {
  .blogs-section.inner .card-list {
    gap: 0;
  }
}
.blogs-section .btn-link {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .blogs-section .btn-link {
    margin-top: 60px;
  }
}
.blogs-section .blog-article {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-article {
    margin-top: 48px;
  }
}
.blogs-section .blog-article.space {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-article.space {
    margin-top: 54px;
  }
}
.blogs-section .blog-article .text {
  margin-top: 45px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-article .text {
    margin-top: 24px;
  }
}
.blogs-section .blog-details {
  margin-top: 54px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-details {
    margin-top: 40px;
  }
}
.blogs-section .blog-details .text {
  margin-top: 72px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-details .text {
    margin-top: 20px;
  }
}
.blogs-section .blog-details .title {
  margin-top: 72px;
  font-weight: 300;
  font-size: 40px;
  line-height: 60px;
}
@media (max-width: 767.98px) {
  .blogs-section .blog-details .title {
    font-size: 36px;
    line-height: 130%;
  }
}
.blogs-section .blog-details .dot-list {
  margin-top: 24px;
  margin-bottom: 72px;
}
.blogs-section .blog-details .dot-list li ~ li {
  margin-top: 10px;
}

.footer {
  margin-top: 310px;
  background: #F7F4FA;
  padding-bottom: 36px;
}
@media (max-width: 767.98px) {
  .footer {
    margin-top: 80px;
    text-align: center;
  }
}
.footer .contact-box {
  text-align: center;
  padding: 70px 0;
  background-color: #212023;
  margin-top: -170px;
}
@media (max-width: 767.98px) {
  .footer .contact-box {
    padding: 60px 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 0;
  }
}
.footer .contact-box .title {
  font-size: 52px;
  line-height: 78px;
  color: #FFFFFF;
}
@media (max-width: 767.98px) {
  .footer .contact-box .title .sub-title {
    font-size: 24px;
    line-height: 36px;
  }
}
.footer .contact-box .btn {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .footer .contact-box .btn {
    margin-top: 60px;
  }
}
.footer .social-box {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .footer .social-box {
    margin-top: 60px;
  }
}
.footer .social-box .social-title {
  font-size: 18px;
  line-height: 27px;
  color: rgba(24, 31, 63, 0.4);
}
.footer .social-box .social-links {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 80px;
}
@media (max-width: 767.98px) {
  .footer .social-box .social-links {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .footer .social-box .social-links li {
    width: 50%;
  }
}
.footer .social-box .social-links li a {
  font-size: 24px;
  line-height: 36px;
  position: relative;
  transition: all 0.3s ease-out;
  border-bottom: solid transparent 5px;
}
.footer .social-box .social-links li a:before {
  content: "";
  width: 0;
  height: 2px;
  background: #7534FF;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer .social-box .social-links li a:hover:before {
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer .social-box .social-links li a {
    font-size: 18px;
    line-height: 27px;
  }
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom {
    margin-top: 60px;
    flex-direction: column;
  }
}
.footer .footer-bottom .left-content {
  width: 30%;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .left-content {
    width: auto;
  }
}
.footer .footer-bottom .right-content {
  width: 40%;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .right-content {
    width: auto;
  }
}
.footer .footer-bottom .text {
  color: #181F3F;
}
.footer .footer-bottom .text .drop {
  color: #A3A5B2;
}
.footer .footer-bottom .link {
  margin-top: 24px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #181F3F;
}
.footer .footer-bottom .quick-links {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .quick-links {
    margin-top: 60px;
  }
}
.footer .footer-bottom .quick-links li a {
  position: relative;
  transition: all 0.3s ease-out;
  border-bottom: solid transparent 5px;
}
.footer .footer-bottom .quick-links li a:before {
  content: "";
  width: 0;
  height: 2px;
  background: #7534FF;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer .footer-bottom .quick-links li a:hover:before {
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .quick-links li a {
    font-size: 16px;
    line-height: 24px;
  }
}
.footer .copytext {
  margin-top: 120px;
  padding-top: 30px;
  border-top: 1px solid #BABCC5;
  color: #A3A5B2;
}
@media (max-width: 767.98px) {
  .footer .copytext {
    padding-top: 24px;
    margin-top: 60px;
    font-size: 12px;
    line-height: 18px;
  }
}
.footer .copytext .pop {
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .footer .copytext .mobile-block {
    display: block;
  }
}

.sidemenu-section {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 0;
  opacity: 0;
}
.sidemenu-section.show {
  opacity: 1;
  height: 100%;
  z-index: 9999;
}
.sidemenu-section.show .sidemenu-container {
  transform: translateX(0);
}
.sidemenu-section .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}
.sidemenu-section .sidemenu-container {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 676px;
  width: 50vw;
  height: 100%;
  background-color: #FFFFFF;
  overflow: auto;
  display: flex;
  align-items: center;
  padding: 50px 64px;
  transition: all 0.3s ease;
  transform: translateX(100%);
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container {
    width: 320px;
    padding: 30px 0 30px 30px;
  }
}
.sidemenu-section .sidemenu-container .close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container .close-btn {
    top: 20px;
    right: 20px;
  }
}
.sidemenu-section .sidemenu-container .content {
  display: flex;
  gap: 120px;
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container .content {
    gap: 40px;
  }
}
.sidemenu-section .sidemenu-container .content .title {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 26px;
  color: #C0C0C0;
}
.sidemenu-section .sidemenu-container .content .social-list li ~ li {
  margin-top: 20px;
}
.sidemenu-section .sidemenu-container .content .social-list li a {
  font-weight: 300;
}
.sidemenu-section .sidemenu-container .content .menu-list li ~ li {
  margin-top: 28px;
}
.sidemenu-section .sidemenu-container .content .menu-list li:last-child {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container .content .menu-list li:last-child {
    margin-top: 45px;
  }
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container .content .menu-list li .btn {
    padding: 13px 22px;
  }
}
.sidemenu-section .sidemenu-container .content .menu-list li a:not(.btn) {
  font-weight: 300;
  font-size: 32px;
  line-height: 48px;
}
@media (max-width: 767.98px) {
  .sidemenu-section .sidemenu-container .content .menu-list li a:not(.btn) {
    font-size: 24px;
    line-height: 36px;
  }
}
.sidemenu-section .sidemenu-container .content .menu-list li a:not(.btn):hover {
  color: #7534FF;
}

.contactus-section {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .contactus-section {
    padding-top: 60px;
  }
}
.contactus-section .section-desc {
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  .contactus-section .section-desc {
    font-size: 14px;
    line-height: 21px;
  }
}
.contactus-section .helper-text {
  font-size: 24px;
  line-height: 36px;
  margin-top: 80px;
  margin-bottom: -100px;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .contactus-section .helper-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }
}
.contactus-section .contact-form {
  margin-top: 72px;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form {
    margin-top: 40px;
  }
}
.contactus-section .contact-form .form-label {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form .form-label {
    font-size: 18px;
    line-height: 130%;
  }
}
.contactus-section .contact-form .form-group {
  margin-bottom: 72px;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form .form-group {
    margin-bottom: 40px;
  }
}
.contactus-section .contact-form .checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form .checkbox-list {
    gap: 16px;
  }
}
.contactus-section .contact-form .form-check {
  position: relative;
  padding: 0;
}
.contactus-section .contact-form .form-check .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.contactus-section .contact-form .form-check .form-check-input:checked + .form-check-label {
  color: #FFFFFF;
  background: linear-gradient(360deg, #6F21E6 0%, #7534FF 129.25%);
}
.contactus-section .contact-form .form-check .form-check-input:hover + .form-check-label {
  border-color: #7534FF;
}
.contactus-section .contact-form .form-check .form-check-label {
  padding: 13px 36px;
  border: 1px solid #EEEEEE;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form .form-check .form-check-label {
    font-size: 14px;
    line-height: 130%;
    padding: 13px 20px;
  }
}
.contactus-section .contact-form .form-control {
  width: 100%;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  padding-left: 0;
  padding-right: 0;
  border-color: transparent transparent rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .contactus-section .contact-form .form-control {
    font-size: 18px;
    line-height: 130%;
  }
}
.contactus-section .contact-form .form-control:focus {
  border-bottom-color: #7534FF;
}

.aboutus-section {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .aboutus-section {
    padding-top: 60px;
  }
}
.aboutus-section .text {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .aboutus-section .text {
    padding: 40px 0 0;
  }
}
@media (max-width: 767.98px) {
  .aboutus-section .about-img {
    margin-top: 70px;
  }
}
.aboutus-section .heading {
  font-size: 32px;
  line-height: 48px;
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .aboutus-section .heading {
    font-size: 14px;
    line-height: 21px;
    margin-top: 40px;
  }
}
.aboutus-section .img-list {
  display: grid;
  gap: 84px;
  grid-template-columns: 1fr 1fr;
  margin-top: 106px;
  margin-bottom: 160px;
}
@media (max-width: 767.98px) {
  .aboutus-section .img-list {
    grid-template-columns: 1fr;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.aboutus-section .img-list li:nth-child(even) {
  margin-top: 50%;
}
@media (max-width: 767.98px) {
  .aboutus-section .img-list li:nth-child(even) {
    margin-top: 0;
  }
}
.aboutus-section .heading-2 {
  margin-top: 80px;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .aboutus-section .heading-2 {
    margin-top: 40px;
    font-size: 14px;
    line-height: 21px;
  }
}
.aboutus-section .img {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .aboutus-section .img {
    margin-top: 30px;
  }
}
.aboutus-section .extra-list {
  margin-top: 80px;
}
.aboutus-section .extra-list li ~ li {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .aboutus-section .extra-list li ~ li {
    margin-top: 45px;
  }
}
.aboutus-section .extra-list li .title {
  font-weight: 700;
  font-size: 82px;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .aboutus-section .extra-list li .title {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .aboutus-section .extra-list li .desc {
    font-size: 12px;
    line-height: 18px;
  }
}

.services-section {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .services-section {
    padding-top: 60px;
  }
}
.services-section .service-box {
  margin-top: 180px;
  margin-bottom: 80px;
}
@media (max-width: 767.98px) {
  .services-section .service-box {
    margin-top: 48px;
    margin-bottom: 0;
  }
}
.services-section .service-box .heading {
  padding: 80px 0;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .services-section .service-box .heading {
    font-size: 14px;
    line-height: 21px;
    padding-top: 40px;
  }
}
.services-section .service-box-1 {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .services-section .service-box-1 {
    margin-top: 80px;
  }
}
.services-section .service-box-1 .section-title {
  margin-bottom: 45px;
}
@media (max-width: 767.98px) {
  .services-section .service-box-1 .section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .services-section .service-box-1 .card-list {
    gap: 0;
  }
}
@media (max-width: 767.98px) {
  .services-section .service-box-1 .desc {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 40px;
  }
}
.services-section .design-section {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .services-section .design-section {
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .services-section .design-section .card-list {
    gap: 0;
  }
}
.services-section .design-section .section-title {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .services-section .design-section .section-title {
    margin-bottom: -40px;
  }
}
.services-section .design-section .design-card {
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  .services-section .design-section .design-card {
    margin-top: 80px;
    width: auto;
  }
}
.services-section .design-section .design-card .title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .services-section .design-section .design-card .title {
    font-size: 18px;
    line-height: 27px;
  }
}
.services-section .design-section .design-card .desc {
  margin-top: 45px;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .services-section .design-section .design-card .desc {
    margin-top: 24px;
    font-size: 14px;
    line-height: 21px;
  }
}

.project-details-section .section-one {
  margin-top: 180px;
}
@media (max-width: 767.98px) {
  .project-details-section .section-one {
    margin-top: 60px;
  }
}
.project-details-section .section-one .content {
  padding: 160px 0;
}
@media (max-width: 767.98px) {
  .project-details-section .section-one .content {
    padding: 60px 0;
  }
}
.project-details-section .section-one .content .text {
  font-size: 32px;
  line-height: 48px;
  color: #181F3F;
}
@media (max-width: 767.98px) {
  .project-details-section .section-one .content .text {
    font-size: 16px;
    line-height: 24px;
  }
}
.project-details-section .section-one .content .btn-link {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .project-details-section .section-one .content .btn-link {
    margin-top: 30px;
  }
}
.project-details-section .section-two .content {
  padding: 150px 0;
}
@media (max-width: 767.98px) {
  .project-details-section .section-two .content {
    padding: 60px 0;
    font-size: 16px;
    line-height: 24px;
  }
}
.project-details-section .section-two .content .section-title {
  margin-bottom: 30px;
}

.projects-section {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .projects-section {
    padding-top: 60px;
  }
}
.projects-section .spacer {
  margin-top: 180px;
}
@media (max-width: 767.98px) {
  .projects-section .spacer {
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .projects-section .figure.m-first {
    margin-top: 0;
  }
}
.projects-section .btn-link {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .projects-section .btn-link {
    margin-top: 30px;
  }
}

.othercase-section {
  margin-top: 160px;
}
@media (max-width: 767.98px) {
  .othercase-section {
    margin-top: 80px;
  }
}
.othercase-section .section-title {
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .othercase-section .section-title {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .blog-details-section {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 767.98px) {
  .blog-details-section .card-list {
    gap: 0;
  }
}
.blog-details-section .section-title {
  margin-bottom: 20px;
}
.blog-details-section .content {
  color: #505771;
  font-size: 18px;
  line-height: 27px;
}
.blog-details-section .content .content-section {
  margin-bottom: 80px;
}
.blog-details-section .content .content-header {
  font-weight: 700;
}
.blog-details-section .social-list {
  display: inline-flex;
  gap: 16px;
}
.blog-details-section .social-list li a .hover {
  display: none;
}
.blog-details-section .social-list li a:hover .main {
  display: none;
}
.blog-details-section .social-list li a:hover .hover {
  display: block;
}
.blog-details-section .divider {
  margin: 80px 0;
  width: 90px;
  border-top: 1px solid #505771;
}
@media (max-width: 767.98px) {
  .blog-details-section .divider {
    margin: 48px 0;
  }
}
.blog-details-section .blog-detial-img {
  margin: 80px 0;
}
@media (max-width: 767.98px) {
  .blog-details-section .blog-detial-img {
    margin: 48px 0;
  }
}
@media (max-width: 767.98px) {
  .blog-details-section .more-section {
    margin-top: 80px;
  }
}
.blog-details-section .more-section .more-title {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
}
.blog-details-section .more-section .blog-article {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .blog-details-section .more-section .card-list a:nth-child(2) {
    margin-top: 64px;
  }
}

.clients-section {
  padding-top: 130px;
}
@media (max-width: 767.98px) {
  .clients-section {
    padding-top: 60px;
  }
}
.clients-section .section-desc {
  margin-top: 24px;
}
.clients-section .clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 80px 0;
}
@media (max-width: 767.98px) {
  .clients-section .clients-list {
    font-size: 14px;
    line-height: 21px;
    grid-template-columns: 1fr;
  }
}
.clients-section .clients-list .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 18px;
}
@media (max-width: 767.98px) {
  .clients-section .clients-list .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}

.reveal {
  position: relative;
  opacity: 0;
  transition: opacity 250ms ease 0s;
}
.reveal.active {
  opacity: 1;
}
.reveal.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
  will-change: transform;
}
.reveal.active.fade-left {
  animation: fade-left 1s ease-in;
  will-change: transform, opacity;
}
.reveal.active.fade-right {
  animation: fade-right 1s ease-in;
  will-change: transform, opacity;
}
.reveal.active.fade-in {
  animation: fade-in 1s ease-in;
  will-change: opacity;
}
.reveal.active.fade-top {
  animation: fade-top 1s ease-in;
  will-change: transform, opacity;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.mt-24 {
  margin-top: 24px;
}

.thankyou {
  color: #181f3f;
  font-size: 52px;
  font-weight: 400;
  line-height: 78px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .thankyou {
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
  }
}

.thankyou-text {
  font-size: 82px;
  font-weight: 700;
  line-height: 123px;
}
@media (max-width: 767.98px) {
  .thankyou-text {
    font-size: 32px;
    line-height: 48px;
  }
}

.thankyou-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 48px;
  position: relative;
}

.thankyou-animation {
  position: absolute;
  top: -150%;
  z-index: -100;
}

.secondary-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  color: #505771;
}
.secondary-container p {
  color: #181f3f;
  font-size: 24 px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .secondary-container p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
}

.teams-section {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media (max-width: 767.98px) {
  .teams-section {
    padding: 60px 0;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}
.teams-section .section-title {
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .teams-section .section-title {
    color: #000;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.teams-section .image-container {
  display: flex;
  gap: 100px;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .teams-section .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0 24px;
    gap: 32px 85px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .teams-section .amityImageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    min-width: 180px;
  }
}
.teams-section .viewMemebersBtn {
  color: #7534ff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .teams-section .viewMemebersBtn {
    font-size: 16px;
  }
}
.teams-section .imageCell {
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .teams-section .nift-cell {
    max-width: 82px;
  }
}
@media (max-width: 767.98px) {
  .teams-section .uidMobileCell {
    max-width: 82px;
  }
}

.teams-page .teams-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .teams-page .teams-container {
    max-width: 540px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .teams-page .teams-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .teams-page .teams-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .teams-page .teams-container {
    max-width: 1140px;
  }
}
.teams-page .hero-image {
  width: 100%;
  margin-bottom: 160px;
}
@media (max-width: 767.98px) {
  .teams-page .hero-image {
    margin-bottom: 80px;
  }
}
.teams-page .gray {
  color: #505771;
  font-size: 18px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .teams-page .gray {
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.teams-page .section-title {
  color: #181f3f;
  font-family: Poppins;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 160px;
}
@media (max-width: 767.98px) {
  .teams-page .section-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 80px;
  }
}
.teams-page .about {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .teams-page .about {
    flex-direction: column;
  }
}
.teams-page .about .title {
  align-self: stretch;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .teams-page .about .title {
    color: #505771;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
}
.teams-page .about .description {
  color: #505771;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .teams-page .about .description {
    margin-bottom: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.teams-page .about .img1 {
  width: 100%;
  height: 614px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .teams-page .about .img1 {
    height: 352px;
  }
}
.teams-page .about .img2 {
  width: 100%;
  height: 402px;
}
@media (max-width: 767.98px) {
  .teams-page .about .img2 {
    height: 352px;
  }
}
.teams-page .about .img3 {
  width: 100%;
  height: 561px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .teams-page .about .img3 {
    height: 201px;
  }
}
.teams-page .team-members {
  margin-top: 136px;
}
@media (max-width: 767.98px) {
  .teams-page .team-members {
    margin-top: 56px;
  }
}
.teams-page .team-members .header-team {
  color: #181f3f;
  /* H */
  font-family: Poppins;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 80px;
}
@media (max-width: 767.98px) {
  .teams-page .team-members .header-team {
    font-size: 32px;
    font-weight: 400;
  }
}
.teams-page .team-members .members-container {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 80px 36px;
  align-self: stretch;
  flex-wrap: wrap;
}
.teams-page .team-members .member-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 767.98px) {
  .teams-page .team-members .member-card {
    gap: 24px;
  }
}
.teams-page .team-members .member-card img {
  height: 388px;
}
@media (max-width: 767.98px) {
  .teams-page .team-members .member-card img {
    height: 352px;
  }
}
.teams-page .team-members .member-card .name {
  color: #181f3f;
  text-align: center;
  /* H */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
}
@media (max-width: 767.98px) {
  .teams-page .team-members .member-card .name {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 4px;
  }
}
.teams-page .team-members .member-card .role {
  color: #505771;
  text-align: center;
  /* H */
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .teams-page .team-members .member-card .role {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}

.scalenutux h1,
.scalenutux h2,
.scalenutux h3,
.scalenutux p {
  margin: 0;
}
.scalenutux .pt-160 {
  padding-top: 160px;
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-pt-80 {
    padding-top: 80px;
  }
}
.scalenutux .mb-32 {
  margin-bottom: 32px;
}
.scalenutux .mb-48 {
  margin-bottom: 48px;
}
.scalenutux .mb-80 {
  margin-bottom: 80px !important;
}
.scalenutux .mb-86 {
  margin-bottom: 86px;
}
.scalenutux .mb-100 {
  margin-bottom: 100px;
}
.scalenutux .mb-136 {
  margin-bottom: 136px;
}
.scalenutux .mb-150 {
  margin-bottom: 150px;
}
.scalenutux .mt-160 {
  margin-top: 160px;
}
.scalenutux .mb-160 {
  margin-bottom: 160px;
}
.scalenutux .mb-200 {
  margin-bottom: 200px;
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mb-24 {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mb-32 {
    margin-bottom: 32px !important;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mb-48 {
    margin-bottom: 48px !important;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mb-64 {
    margin-bottom: 64px !important;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mb-80 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-text-center {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-text-left {
    text-align: left !important;
  }
}
@media (max-width: 1200px) {
  .scalenutux img {
    width: 100%;
  }
}
.scalenutux .dark-bg {
  background: linear-gradient(90deg, rgba(2, 77, 197, 0.05) 0%, rgba(2, 77, 197, 0.01) 54.69%, rgba(2, 77, 197, 0.05) 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767.98px) {
  .scalenutux .dark-bg {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.scalenutux .section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 540px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .scalenutux .section {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .scalenutux .section {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .scalenutux .section {
    max-width: 1140px;
  }
}
@media (max-width: 767.98px) {
  .scalenutux .mobile-mt-0 {
    margin-top: 0px !important;
  }
}
.scalenutux .project-name {
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #505771;
}
@media (max-width: 767.98px) {
  .scalenutux .project-name {
    font-size: 16px;
    font-weight: 400;
  }
}
.scalenutux .project-details-section {
  max-width: 703px;
  margin-left: 248px;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .scalenutux .project-details-section {
    margin-left: 16px;
  }
}
.scalenutux .hero-title {
  color: #181f3f;
  font-family: Poppins;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .hero-title {
    font-size: 32px;
  }
}
.scalenutux .hero-description {
  color: #181f3f;
  font-family: Poppins;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media (max-width: 767.98px) {
  .scalenutux .hero-description {
    font-size: 32px;
    text-align: left;
  }
}
.scalenutux .hero-text {
  color: #475467;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .hero-text {
    font-size: 16px;
  }
}
.scalenutux .ux-challenge-card-container {
  display: flex;
  gap: 36px;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-challenge-card-container {
    flex-direction: column;
    gap: 80px;
  }
}
.scalenutux .ux-challenge-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.scalenutux .ux-challenge-card .img-container {
  height: 160px;
}
.scalenutux .ux-challenge-card .text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.scalenutux .ux-challenge-card .text-container .title {
  color: #1d1d1d;
  text-align: center;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-challenge-card .text-container .title {
    font-size: 20px;
  }
}
.scalenutux .ux-challenge-card .text-container .description {
  color: #475467;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-challenge-card .text-container .description {
    font-size: 16px;
  }
}
.scalenutux .ptb-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 767.98px) {
  .scalenutux .ptb-160 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.scalenutux .img-div {
  display: flex;
  justify-content: flex-end;
}
.scalenutux .push-left {
  justify-content: flex-start !important;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .scalenutux .push-left {
    max-width: 100%;
  }
}
.scalenutux .ux-research-section .title {
  color: #1d1d1d;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-research-section .title {
    font-size: 24px;
  }
}
.scalenutux .ux-research-section .description {
  color: #475467;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-research-section .description {
    font-size: 16px;
  }
}
.scalenutux .ux-research-section .img-title {
  color: #181f3f;
  text-align: left;
  /* H */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-research-section .img-title {
    text-align: center;
    font-size: 16px;
  }
}
.scalenutux .ux-research-section .user-persona-container {
  display: flex;
  gap: 36px;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-research-section .user-persona-container {
    flex-direction: column;
    gap: 24px;
  }
}
.scalenutux .ux-research-section .user-persona-container h3 {
  color: #1d1d1d;
  /* H */
  font-family: Poppins;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .ux-research-section .user-persona-container h3 {
    font-size: 24px;
  }
}
.scalenutux .ux-research-section .user-persona-container .user-persona-card {
  border-radius: 21.62px;
  max-width: 50%;
  border: 0.901px solid #b0c8ed;
  background: #fff;
}
.scalenutux .section-header {
  color: #1d1d1d;
  font-family: Poppins;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .section-header {
    font-size: 24px;
  }
}
.scalenutux .section-description {
  color: #475467;
  /* H */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .section-description {
    font-size: 16px;
  }
}
.scalenutux .section-header-2 {
  color: #1d1d1d;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .section-header-2 {
    font-size: 24px;
  }
}
.scalenutux .section-header-3 {
  color: #1d1d1d;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767.98px) {
  .scalenutux .section-header-3 {
    font-size: 18px;
  }
}
.scalenutux .container-title {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.scalenutux .user-persona-cards {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .scalenutux .user-persona-cards {
    flex-direction: column;
    gap: 24px;
  }
}

/*# sourceMappingURL=index.css.map */
