html,
body {
  position: relative;
  height: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}

.container {
  max-width: 80%;
}

.burger {
  padding: 7rem 0;
}

.mt-lg {
  margin-top: 5rem;
}

.button {
  display: inline-block;
  border-radius: 3.75rem;
  background-color: #D90368;
  padding: 0.525rem 1.5rem;
  text-align: center;
  border: none;
  color: #FFF;
  text-decoration: none;
  transition: 0.3s all;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.button i {
  display: inline-block;
  transition: 0.3s all;
}
.button-dark {
  background-color: #000;
}
.button:hover {
  background-color: #C50660;
}
.button:hover i {
  transform: rotate(45deg);
}

.highlight {
  border-bottom: 0.1em solid #ffdc74;
  box-shadow: 0 -0.4em 0 0 #ffdc74 inset;
}

.gray-text {
  color: #4d5266;
}

.section-header {
  margin-bottom: 5rem;
  width: 60vw;
}
.section-header h2 {
  line-height: 1.3;
  font-size: clamp(2.5rem, 3vw, 3rem);
  margin-bottom: 2rem;
}
.section-header p {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 500;
}
.section-header .dark-text {
  color: #000;
}

.bg-light {
  background: linear-gradient(360deg, #FAFAFA 0%, #EEF0EF 50%) !important;
}

.h-text {
  font-size: clamp(0.7rem, 0.8vw, 0.9rem);
  font-weight: 500;
  color: #979797;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nugget {
  font-size: clamp(0.9rem, 1vw, 1.25rem);
  opacity: 0.7;
}

.link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.link i {
  height: 2rem;
  width: 2rem;
  background-color: #000;
  border-radius: 100%;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  color: #FFF;
}
.link:hover i {
  transform: rotate(45deg);
}

.b-burger {
  padding-bottom: 100px;
}

.t-burger {
  padding-top: 100px;
}

.big-text {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 500;
  color: #4d5266;
}

.dark-text {
  color: #000;
}

.blur-text {
  color: #777;
}

.blur-text-2 {
  color: rgba(255, 255, 255, 0.7);
}

.w-70 {
  width: 70%;
}

.menu-toggle {
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar {
  padding: 0.5rem 0;
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 99;
  padding-top: clamp(2rem, 2.5vw, 3rem);
  transition: 0.2s all;
  /* When shown, slide in */
}
.navbar .navbar-brand {
  width: clamp(10rem, 12vw, 14.25rem);
}
.navbar .logo-dark {
  display: none;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar .navbar-nav .nav-item {
  display: inline-block;
  margin: 0 14px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #FFF;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #D90368 !important;
}
.navbar .navbar-collapse.show {
  display: block !important;
  background-color: #000;
  position: fixed;
  bottom: 0;
  right: 0;
}
.navbar .slide-horizontal {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh; /* full height */
  background: #212529; /* match navbar color */
  padding: 20px;
  z-index: 999;
  margin-top: 0 !important;
}
.navbar .slide-horizontal.show {
  transform: translateX(0);
}
.navbar.hovered {
  background: #FFF;
}
.navbar.hovered .nav-link {
  color: #000 !important;
}
.navbar.hovered .logo-dark {
  display: block !important;
}
.navbar.hovered .logo-light {
  display: none !important;
}
.navbar.navbar-bg {
  padding-top: clamp(0.5rem, 0.5vw, 1rem);
  padding-bottom: clamp(0.5rem, 0.5vw, 1rem);
  transition: 0.2s all;
  background: rgba(255, 255, 255, 0.8) !important;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-bg .nav-link {
  color: #000 !important;
}
.navbar.navbar-bg .logo-dark {
  display: block !important;
}
.navbar.navbar-bg .logo-light {
  display: none !important;
}

.dropdown-mega {
  position: static;
}
.dropdown-mega .dropdown-menu {
  width: 100%;
  border: none;
  left: 0;
  border-radius: 0;
  padding: 50px 0;
  margin-top: 1rem;
}
.dropdown-mega .dropdown-menu::before {
  left: 0;
  top: 0;
  background-color: #FFF;
}
.dropdown-mega.mega-menu {
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  padding: 2rem;
  border: none;
  border-radius: 0;
  background-color: #f8f9fa;
}
.dropdown-mega:hover .mega-menu {
  display: block;
}
.dropdown-mega:hover .mega-menu .col {
  padding: 1rem;
}

.cta {
  width: clamp(5rem, 6vw, 6rem);
  height: clamp(5rem, 6vw, 6rem);
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5px;
  animation: rotate 20s linear infinite;
  transition: 0.5s all;
  position: fixed;
  top: 1rem;
}
.cta img {
  transition: 0.5s all;
}
.cta:hover {
  height: clamp(6rem, 7vw, 7.25rem);
  width: clamp(6rem, 7vw, 7.25rem);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.banner__wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
}
.banner__wrapper-content {
  width: clamp(36rem, 42vw, 48rem);
}
.banner__wrapper-content h1 {
  font-size: clamp(2.75rem, 3.25vw, 4rem);
  line-height: 1.3;
}
.banner__wrapper-content p {
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 0;
}
.banner .swiper-slide {
  height: 100vh;
  display: flex;
  color: #FFF;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner .swiper-slide:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}
.banner .swiper-pagination {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 80%;
  gap: 2rem;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  color: #FFF;
  width: 25%;
  border-top: 1px solid #FFF;
  text-align: left;
  padding-top: 1rem;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.9vw, 1.25rem);
  opacity: 0.5;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: none;
  color: black;
  font-size: 14px;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  font-weight: bold;
  text-decoration: underline;
}

.banner-inner {
  height: 100vh;
  background-image: url("../images/abstract.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-inner__wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-inner__wrapper-content {
  width: clamp(50rem, 50vw, 55rem);
}
.banner-inner__wrapper-content h1 {
  font-size: clamp(2rem, 2vw, 2.25rem);
  line-height: 1.3;
  color: #FFF;
  font-size: 1.2rem;
}
.banner-inner__wrapper-content h2 {
  color: #9b9faf;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1.4;
}
.banner-inner__wrapper-content .dark-text {
  color: #FFF;
}
.banner-inner__wrapper-content p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-inner:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.service-scroll h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.service-scroll .list-group-item {
  border: none;
  padding: 14px 0;
  font-size: clamp(0.8rem, 0.9vw, 1.25rem);
  border-radius: 0;
  border-top: 1px solid #DDD;
  transition: 0.3s all;
  font-weight: 500;
  color: #4d5266;
  position: relative;
}
.service-scroll .list-group-item:hover {
  background-color: transparent;
  border-color: black;
  color: black;
}
.service-scroll .list-group-item:first-child {
  border-top: none;
}
.service-scroll .list-group-item.active {
  background-color: transparent;
  color: #000;
  padding-bottom: 100px;
  border-color: #000;
  padding-left: 26px;
}
.service-scroll .list-group-item.active:after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  background-color: red;
  top: 16px;
  left: 0;
  border-radius: 100%;
}
.service-scroll ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-scroll ul li {
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.service-scroll .uc-text {
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: #777;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.service-scroll .scroll-section {
  border-bottom: 1px solid #000;
  padding-top: 100px;
  padding-bottom: 50px;
}
.service-scroll .scroll-section:first-child {
  margin-top: 0;
}
.service-scroll .scroll-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: 3rem;
}

.image-wrapper {
  position: relative;
}

.moving-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64%;
  transition: top 0.2s ease;
  transform: translate(-50%, 0);
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.stat__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
}
.stat__item--value {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}

.officepic {
  position: relative;
  z-index: 1;
}
.officepic::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
  z-index: 2;
}
.officepic .clients {
  position: absolute;
  bottom: 0;
  padding: 40px;
  z-index: 3;
}
.officepic .clients h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.logo-marquee:before {
  height: 80px;
  width: 200px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.4));
  z-index: 1;
}
.logo-marquee:after {
  height: 80px;
  width: 200px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.41), rgb(255, 255, 255));
  z-index: 1;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 20s linear infinite;
}

.logo-track img {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.video-background {
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  position: absolute;
}
.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-company {
  height: 100vh;
  position: relative;
  z-index: 1;
}
.banner-company__wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-company__wrapper-content {
  width: clamp(50rem, 50vw, 55rem);
}
.banner-company__wrapper-content h1 {
  font-size: clamp(2rem, 2vw, 2.25rem);
  line-height: 1.3;
  color: #FFF;
  font-size: 1.2rem;
}
.banner-company__wrapper-content h2 {
  color: #9b9faf;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1.4;
}
.banner-company__wrapper-content .dark-text {
  color: #FFF;
}
.banner-company__wrapper-content p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-company:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.facts .offset-lg-1 {
  margin-left: 4.333333%;
}
.facts .fact-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 120px;
  align-items: center;
}
.facts .fact-item:last-child {
  border-bottom: none;
}
.facts .fact-item span {
  font-weight: 500;
}
.facts .fact-item h3 {
  min-width: 40%;
  padding-right: 0;
  margin: 0;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.3;
  text-align: right;
}
.facts .fact-item p {
  margin: 0;
}

.story {
  background-image: url("../images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #000;
  background-position: -133px 14rem;
  color: white;
}
.story .content p {
  font-size: 1.3rem;
}
.story .content .big-text {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.story .dark-text {
  color: #FFFFFF;
}
.story .accordion .accordion-item {
  background: transparent;
  color: #FFF;
  border: none;
}
.story .accordion .accordion-button {
  background: transparent;
  color: #FFF;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  border-radius: 0 !important;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  box-shadow: none !important;
}
.story .accordion .accordion-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.values .hoverbox__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(22rem, 24vw, 26rem);
}
.values .hoverbox__content h4 {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  padding-right: 2rem;
}
.values .hoverbox__content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.values .swiper {
  width: 100%;
  height: 100%;
  padding-top: 65px !important;
}
.values .swiper-button-next:after,
.values .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.values .swiper-slide {
  font-size: 18px;
  background: #fff;
}
.values .swiper-button-next,
.values .swiper-button-prev {
  top: 23px;
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.values .swiper-button-next:hover,
.values .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.values .swiper-button-next:hover:after,
.values .swiper-button-prev:hover:after {
  color: #FFF;
}
.values .swiper-button-next {
  right: 0;
}
.values .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.values .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__item {
  background-color: #FFF;
  padding: clamp(2rem, 3vw, 3rem);
}
.services__item h3 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
}
.services__item p {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  margin-top: 1.5rem;
  color: #4d5266;
}
.services__item img {
  max-width: clamp(3rem, 3vw, 4rem);
}
.services__item ul {
  list-style: square;
  padding-left: 17px;
  margin-top: 1rem;
}
.services__item ul li {
  margin-bottom: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.services .t-icons {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}
.services .t-icons .t-icon {
  height: 50px;
  width: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  margin-right: 10px;
  margin-bottom: 10px;
}

.projects {
  background-color: #000;
  color: #FFF;
}
.projects .tile {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
}
.projects .tile__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  flex: 0 0 calc(50% - 1.5rem);
}
.projects .tile__item--content {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
.projects .tile__item--content .desc {
  color: #e8e8e8;
  font-size: clamp(1.3rem, 1.5vw, 1.875rem);
  line-height: 1.3;
}
.projects .tile__item--content .title {
  color: #979797;
  font-size: clamp(0.8rem, 1vw, 1rem);
  position: relative;
  font-weight: 500;
}
.projects .tile__item--content .title span {
  position: relative;
  padding-left: 18px;
  margin-left: 6px;
}
.projects .tile__item--content .title span:after {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 38%;
  background-color: #979797;
}
.projects .section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.projects .section-header .dark-text {
  color: #FFF;
}
.projects .cursor {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}
.projects .cursor-eye {
  top: -50px;
  left: -50px;
  padding: 20px;
  z-index: 1;
  border-radius: 50%;
  background-color: #D90368;
}
.projects .cursor-show {
  height: 40px;
  width: 40px;
  background: #D90368;
  display: flex;
  border-radius: 100%;
  text-align: center;
  color: #FFF;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
}

.process {
  background-color: #000;
  color: #FFF;
}
.process .block {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.process .block__content h3 {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: clamp(0.925rem, 1.5vw, 1.5rem);
}
.process .block__content p {
  font-size: clamp(0.75rem, 1vw, 1rem);
}
.process .block__content .h-text span {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  position: absolute;
  top: 2px;
  right: 4px;
}
.process .block__content ul {
  margin: 0;
  margin-top: 1rem;
  padding-left: 17px;
}
.process .block__content ul li {
  margin-bottom: 5px;
  font-size: clamp(0.75rem, 1vw, 1rem);
}

.industries .section-header {
  margin-bottom: 1rem;
}
.industries .hoverbox {
  position: relative;
}
.industries .hoverbox__image {
  overflow: hidden;
  transition: 0.5s all ease;
}
.industries .hoverbox__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.industries .hoverbox__image:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s all;
}
.industries .hoverbox__content {
  position: absolute;
  padding: 2rem;
  width: 100%;
  bottom: 0;
  top: 0;
  transition: 0.5s all ease;
  overflow: hidden;
}
.industries .hoverbox__content--hidden {
  transition: 0.5s all ease;
}
.industries .hoverbox__content--hidden p {
  margin-top: 20px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.8;
}
.industries .hoverbox__content--hidden ul {
  padding-left: 17px;
  margin: 0;
  padding-top: 20px;
  margin-top: 5px;
  border-top: 1px solid #000;
}
.industries .hoverbox__content--hidden ul li {
  margin-bottom: 5px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  list-style: square;
}
.industries .hoverbox__content h4 {
  margin: 0;
  transition: 0.5s all ease;
  font-size: clamp(1.25rem, 1.3vw, 1.3rem);
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.industries .swiper {
  width: 100%;
  height: 100%;
  padding-top: 65px !important;
}
.industries .swiper-button-next:after,
.industries .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.industries .swiper-slide {
  font-size: 18px;
  background: #fff;
}
.industries .swiper-button-next,
.industries .swiper-button-prev {
  top: 23px;
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.industries .swiper-button-next:hover,
.industries .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.industries .swiper-button-next:hover:after,
.industries .swiper-button-prev:hover:after {
  color: #FFF;
}
.industries .swiper-button-next {
  right: 0;
}
.industries .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.industries .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.whyus .hightlights h3 {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.whyus .hightlights p {
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.whyus .offset-lg-1 {
  margin-left: 4.333333%;
}
.whyus .why-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 160px;
  align-items: center;
}
.whyus .why-item h3 {
  min-width: 46%;
  padding-right: 50px;
  margin: 0;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  line-height: 1.3;
}
.whyus .why-item p {
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.techstack .offset-lg-1 {
  margin-left: 4.333333%;
}
.techstack .tech-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 160px;
  align-items: center;
}
.techstack .tech-item h3 {
  min-width: 40%;
  padding-right: 50px;
  margin: 0;
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  line-height: 1.3;
}
.techstack .tech-item p {
  margin: 0;
}
.techstack .tech-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.techstack .tech-item ul li {
  display: flex;
  align-items: center;
  min-width: 45%;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
  gap: 10px;
}
.techstack .tech-item ul li img {
  width: 16px;
}

.reviews .review {
  height: 100%;
  padding-left: 80px;
  position: relative;
}
.reviews .review:before {
  font-family: "Bootstrap Icons";
  font-style: normal;
  font-weight: normal;
  font-size: clamp(5rem, 6vw, 6rem);
  position: absolute;
  content: "//";
  top: -52px;
  left: 15px;
  height: 30px;
  width: 30px;
  color: #777;
  letter-spacing: -8px;
  color: #D90368;
  font-weight: bold;
}
.reviews .review p {
  font-size: clamp(1.4rem, 2vw, 2.5rem);
}
.reviews .review__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.reviews .review__content--author {
  display: flex;
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 20px;
}
.reviews .review__content--author .avtar {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
  display: none;
}
.reviews .review__content--author .author-info .name {
  display: block;
  font-weight: 600;
}
.reviews .review__content--author .author-info .role {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}
.reviews .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 65px !important;
}
.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  top: calc(100% - 95px);
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.reviews .swiper-button-next:hover,
.reviews .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.reviews .swiper-button-next:hover:after,
.reviews .swiper-button-prev:hover:after {
  color: #FFF;
}
.reviews .swiper-button-next {
  right: 0;
}
.reviews .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.reviews .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  position: relative;
  background-color: #000;
  color: #FFF;
}
.footer .section-header {
  color: #FFF;
  justify-content: start;
  text-align: left;
  margin: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.footer .cta-text {
  width: 21vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 72%;
  z-index: 9;
  position: relative;
}
.footer .cta-text p {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
}
.footer .illustration {
  position: relative;
  margin-top: -100px;
  border-bottom: 2px solid #FFF;
}
.footer .illustration img {
  margin-left: 100px;
  width: clamp(10rem, 10vw, 20rem);
}
.footer .footer-logo img {
  width: clamp(10rem, 11vw, 14rem);
}
.footer h2 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
}
.footer h3 {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  text-transform: uppercase;
  opacity: 0.6;
}
.footer ul {
  padding-left: 0;
  list-style: none;
  margin-top: 2rem;
}
.footer ul li {
  margin-bottom: clamp(0.1rem, 0.1vw, 0.5rem);
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
}
.footer ul li a:hover {
  color: #FFF;
}

.banner-short {
  height: clamp(64vh, 50vw, 30vh);
  background-image: url("../images/abstract.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-short__wrapper {
  width: 80%;
  padding: 0 0.75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-short__wrapper-content {
  width: 32vw;
}
.banner-short__wrapper-content h1 {
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: 1.3;
  color: #FFF;
}
.banner-short__wrapper-content h2 {
  color: #FFF;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}
.banner-short__wrapper-content h4 {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3rem;
  line-height: 1.4;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}
.banner-short__wrapper-content .dark-text {
  color: #FFF;
}
.banner-short__wrapper-content p {
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-short .blur-text-2 {
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.banner-short:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.contact {
  position: relative;
  z-index: 1;
}
.contact .clients h5 {
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.contact .logo-track img {
  height: 40px;
}

.contact-form {
  position: relative;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 50px;
  margin-left: 2rem;
  border-radius: 8px;
  margin-top: -45vh;
}
.contact-form ul {
  padding: 0;
  list-style: none;
}
.contact-form .zf-errorMessage {
  font-size: 0.8rem;
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
}
.contact-form .big-btn {
  display: block;
  background: #000;
  padding: 10px 14px;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.contact-form .big-btn i {
  margin-right: 14px;
}
.contact-form .header {
  padding: 20px 0;
}
.contact-form h5 {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
}
.contact-form .divider {
  padding: 20px 0;
  text-align: center;
  position: relative;
}
.contact-form .divider span {
  background: white;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}
.contact-form .divider:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #DDD;
  top: 31px;
}
.contact-form h4 {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form .form-control {
  border: 1px solid #666;
  border-radius: 4px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}
.contact-form label {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-form textarea.form-control {
  min-height: 100px;
}
.contact-form .review p {
  font-size: clamp(1.2rem, 1.25vw, 1.5rem);
}
.contact-form .review__content i {
  font-size: 3rem;
  margin-bottom: 3rem;
  display: inline-block;
  color: #333;
}
.contact-form .review__content--author {
  display: flex;
  align-items: center;
}
.contact-form .review__content--author .avtar {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
}
.contact-form .review__content--author .author-info .name {
  display: block;
  font-weight: 600;
}
.contact-form .review__content--author .author-info .role {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.copy {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  opacity: 0.7;
}

.projects-2 .content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
}
.projects-2 .content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
  margin-top: 1rem;
}
.projects-2 .content h2 {
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}
.projects-2 .mt-lg {
  margin-top: 10rem !important;
}

.single-1 {
  margin-top: -18vh;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.h-qtr {
  height: 80vh !important;
}

.border-box {
  min-height: clamp(20rem, 25vw, 25rem);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid #000;
  padding: 2rem;
  border-radius: 8px;
}
.border-box .num {
  color: red;
  font-weight: bold;
  font-size: 2rem;
}
.border-box p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
}

.sow {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
}

.sol-points {
  margin-right: -10.5vw;
}

.sidebar-sticky {
  position: sticky;
  top: 20vh;
  height: 100%;
}
.sidebar-sticky .sidebar-content {
  margin-top: 4rem;
}
.sidebar-sticky .sidebar-content h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #777;
  margin-bottom: 1rem;
}
.sidebar-sticky .sidebar-content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.privacy h2 {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
}
.privacy .section {
  margin-bottom: 3rem;
}
.privacy a {
  color: #F75590;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.8rem;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
}

#cookie-banner a {
  color: #D90368;
  text-decoration: underline;
}

#cookie-banner button {
  background: #D90368;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 3px;
  font-size: 14px;
}

#cookie-banner button:hover {
  background: #000;
}

#footerNav {
  margin-top: 3rem;
}

.f-about .button {
  display: none;
}

@media (max-width: 480px) {
  .container {
    max-width: 100%;
  }
  .burger {
    padding: 5rem 0;
  }
  .banner__content {
    width: 90vw;
  }
  .nav-items, .nav-cta {
    display: none;
  }
  .section-header {
    flex-direction: column;
  }
  .section-header .title {
    width: 50vw;
    margin-bottom: 1rem;
  }
  .menu-toggle {
    display: flex;
    z-index: 999;
  }
  .navbar-bg .menu-toggle span {
    background: #000;
  }
  #footerNav {
    margin-top: 3rem;
  }
  #footerNav .f-about {
    margin-top: 2rem;
  }
  #footerNav .f-about .button {
    display: none;
  }
  #footerNav .f-legal, #footerNav .f-connect {
    margin-top: 2rem;
  }
  #footerNav ul li a {
    font-size: 1rem;
  }
  #footerNav.active {
    margin-top: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 99;
    padding: 60px 12px;
    overflow-y: auto;
    width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }
  #footerNav.active .footer-logo {
    margin-top: -20px;
    padding-bottom: 50px;
  }
  #footerNav.active h3 {
    font-size: 0.8rem;
    opacity: 0.4;
  }
  #footerNav.active ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  #footerNav.active ul li a {
    font-size: 1.4rem;
    padding-bottom: 2px;
    display: block;
  }
  #footerNav.active .f-about, #footerNav.active .f-legal, #footerNav.active .f-connect {
    padding-left: 40px;
    padding-bottom: 60px;
  }
  #footerNav.active .f-about {
    margin-top: 0;
  }
  #footerNav.active .f-about .button {
    display: inline-block !important;
  }
  #footerNav.active .f-legal ul li a, #footerNav.active .f-connect ul li a {
    font-size: 0.9rem;
  }
  #footerNav.active .f-legal {
    padding-bottom: 0;
  }
  #footerNav.active .f-legal ul {
    margin-bottom: 1rem;
  }
  #footerNav.active .f-connect {
    margin-top: 20px;
  }
  .button {
    font-size: 1rem;
  }
  .banner__wrapper-content h1 {
    font-size: 2.2rem;
  }
  .banner__wrapper-content h1 br {
    display: none;
  }
  .banner__wrapper {
    width: 87%;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    display: none;
  }
  .section-header {
    width: 100%;
  }
  #image-anchor {
    display: none;
  }
  .about-content {
    margin-left: 0;
    margin-top: 1rem;
  }
  .stat__item {
    font-size: 1rem;
  }
  .logo-track img {
    height: 30px !important;
    margin: 0 9px;
  }
  .logo-marquee:before {
    background: transparent;
  }
  .logo-marquee:after {
    background: transparent;
  }
  .services__item p {
    font-size: 1.2rem;
  }
  .services__item ul li {
    font-size: 1rem;
  }
  .services__item {
    margin-bottom: 1rem;
  }
  .projects .tile__item {
    width: 100%;
  }
  .projects .tile__item {
    flex: 0 0 100%;
  }
  .projects .tile__item--content .title {
    font-size: 1rem;
  }
  .projects .tile__item--content .title span:after {
    top: 6px;
  }
  .industries .hoverbox__content h4 {
    font-size: 1.5rem;
  }
  .industries .hoverbox__content--hidden ul li {
    font-size: 1rem;
  }
  .whyus .why-item.me-5 {
    margin-right: 0 !important;
  }
  .whyus .why-item.ms-5 {
    margin-left: 0 !important;
  }
  .whyus .why-item p {
    font-size: 0.9rem;
  }
  .whyus .why-item h3 {
    padding-right: 20px;
  }
  .reviews .swiper-slide img {
    height: 85%;
  }
  .reviews .review {
    padding-left: 0;
  }
  .reviews .review:before {
    top: -70px;
    left: 0;
    letter-spacing: 0;
    font-size: 3rem;
  }
  .footer h2 br {
    display: none;
  }
  .footer .cta-text {
    width: 100%;
    margin-left: 0;
    font-size: 1rem;
  }
  .footer .illustration {
    margin-top: 0;
  }
  .footer .illustration img {
    margin-left: 50%;
  }
  .service-scroll #service-list {
    display: none;
  }
  .service-scroll .scroll-section {
    padding-top: 0;
    margin-top: 50px;
  }
  .service-scroll .col-8 {
    width: 100%;
  }
  .footer ul li {
    margin-bottom: 8px;
  }
  .techstack .tech-item.me-5 {
    margin-right: 0 !important;
  }
  .process .col {
    flex: 0 0 100%;
  }
  .process .block {
    margin-bottom: 2rem;
  }
  .process .block__content h3 {
    font-size: 1.3rem;
  }
  .process .block__content p {
    font-size: 1rem;
  }
  .process .block__content ul li {
    font-size: 1rem;
  }
  .banner-short {
    height: 50vh;
  }
  .banner-inner__wrapper-content h2 {
    font-size: 1.8rem;
  }
  .banner-short__wrapper-content {
    width: 100%;
  }
  .banner-short {
    height: 50vh;
  }
  .banner-short__wrapper-content h4 {
    font-size: 1.2rem;
  }
  .projects-2 .content {
    padding-left: 0 !important;
    padding-top: 3rem;
  }
  .projects-2 .content p {
    font-size: 1rem;
  }
  .projects-2 .mt-lg {
    margin-top: 5rem !important;
  }
  .banner-company__wrapper-content h2 {
    font-size: 1.8rem;
  }
  .facts .fact-item.me-5 {
    margin-right: 0 !important;
  }
  .facts .fact-item h3 {
    padding-right: 0;
  }
  .facts .fact-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .story {
    background-size: 150%;
  }
  .values .hoverbox__content p {
    font-size: 1.2rem;
  }
  .contact-form {
    margin-left: 0;
    margin-top: -153px;
    padding: 24px;
  }
  .zf-nameWrapper .lname-sm {
    margin-top: 1rem;
  }
  .clients {
    text-align: center;
    margin-top: 3rem;
  }
  .banner-short__wrapper-content h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .banner-short__wrapper-content p {
    font-size: 1rem;
  }
  .banner-short__wrapper {
    width: 90%;
  }
  .single-1 {
    padding-bottom: 0;
  }
  .single-2 .col {
    flex: 0 0 100%;
  }
  .single-2 .reviews .review:before {
    top: -100px;
  }
  .single-2 .reviews {
    height: auto !important;
  }
  .border-box {
    min-height: auto;
    margin-bottom: 1rem;
  }
  .sidebar-sticky {
    position: relative;
    top: 0;
  }
  .sol-points {
    margin-right: 0;
  }
  .thankyou h1 {
    font-size: 2.5rem !important;
    margin-top: 2rem !important;
  }
  .thankyou img {
    margin-bottom: 1rem;
  }
  .thankyou br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    z-index: 999;
  }
  .navbar-bg .menu-toggle span {
    background: #000;
  }
  #footerNav {
    margin-top: 3rem;
  }
  #footerNav .f-about {
    margin-top: 2rem;
  }
  #footerNav .f-about .button {
    display: none;
  }
  #footerNav .f-legal, #footerNav .f-connect {
    margin-top: 2rem;
  }
  #footerNav ul li a {
    font-size: 1rem;
  }
  #footerNav.active {
    margin-top: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 99;
    padding: 60px 12px;
    overflow-y: auto;
    width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }
  #footerNav.active .footer-logo {
    margin-top: -20px;
    padding-bottom: 50px;
  }
  #footerNav.active h3 {
    font-size: 0.8rem;
    opacity: 0.4;
  }
  #footerNav.active ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  #footerNav.active ul li a {
    font-size: 1.4rem;
    padding-bottom: 2px;
    display: block;
  }
  #footerNav.active .f-about, #footerNav.active .f-legal, #footerNav.active .f-connect {
    padding-left: 40px;
    padding-bottom: 60px;
  }
  #footerNav.active .f-about {
    margin-top: 0;
  }
  #footerNav.active .f-about .button {
    display: inline-block !important;
  }
  #footerNav.active .f-legal ul li a, #footerNav.active .f-connect ul li a {
    font-size: 0.9rem;
  }
  #footerNav.active .f-legal {
    padding-bottom: 0;
  }
  #footerNav.active .f-legal ul {
    margin-bottom: 1rem;
  }
  #footerNav.active .f-connect {
    margin-top: 20px;
  }
  .button {
    font-size: 1rem;
  }
  .nav-items, .nav-cta {
    display: none;
  }
  .about-content {
    margin-top: 2rem;
    margin-left: 0;
  }
  .services__item {
    margin-bottom: 2rem;
  }
  .whyus .why-item:first-child {
    border-top: none !important;
  }
  .whyus .why-item.me-5 {
    margin-right: 0 !important;
  }
  .whyus .why-item.ms-5 {
    margin-left: 0 !important;
  }
  .reviews .review {
    padding-left: 0;
    padding-top: 5rem;
  }
  .reviews .review:before {
    top: -20px;
    letter-spacing: 0;
  }
}/*# sourceMappingURL=style.css.map */