*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  line-height: 1.6;
  color: #000;
  font-family: Archivo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
img,
svg,
video,
canvas,
audio,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
  background: transparent;
  border: none;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 85%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
section {
  margin: 80px 0;
}
.btn {
  background-color: #000;
  color: #fff;
  padding: 6px 16px;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #333;
  color: #fff;
}
.btn.btn-lg {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 24px;
}
h1 {
  font-size: 5rem;
  font-weight: 300;
}
h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #4349E4;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.5rem;
  }
}
p {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}
.pre-title-style-1 {
  font-size: 1.125rem;
  color: #4349E4;
  font-weight: 500;
  line-height: 1.6;
}
.pre-title-style-2 {
  font-size: 24px;
  color: #000000;
  font-weight: 500;
  line-height: 1.1;
}
.title-style-1 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #000000;
}
@media (min-width: 992px) {
  .title-style-1 {
    font-size: 2.5rem;
  }
}
.title-style-2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #4349E4;
}
header {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 999;
  transition: all 0.2 ease-in;
}
header.sticky {
  background: #FFF;
  padding: 16px 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}
nav ul {
  display: flex;
  gap: 40px;
}
nav ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
}
nav ul li a.active::after,
nav ul li a[aria-current="page"]::after {
  width: 100%;
}
@media (max-width: 991px) {
  nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    background: #FFF;
    padding: 40px 20px 20px;
    z-index: -1;
    overflow: auto;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  nav ul li a {
    font-size: 2rem;
  }
  nav ul li a.contact {
    margin-top: 40px;
    padding: 12px 24px;
    background: #000000;
    color: #FFF;
    border-radius: 100px;
  }
  nav ul li a.contact::after {
    display: none;
  }
}
.burger {
  background: none;
  outline: none;
  border: none;
  position: relative;
  width: 22px;
  height: 10px;
  padding: 10px;
  box-sizing: content-box;
}
.burger::before,
.burger::after {
  content: "";
  width: 22px;
  height: 2px;
  background: #000000;
  display: block;
  position: absolute;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease 0.1s;
}
.burger::before {
  top: 10px;
}
.burger::after {
  top: calc(100% - 12px);
}
.burger.open::before,
.burger.open::after {
  top: calc(50% - 1px);
  transition: top 0.2s ease, transform 0.2s ease 0.1s;
}
.burger.open::before {
  transform: rotate(45deg);
}
.burger.open::after {
  transform: rotate(-45deg);
}
.burger.open + .mobile-nav,
.burger.open ~ .mobile-nav {
  display: block !important;
}
.pre-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4349E4;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 300;
}
.hero-title span {
  color: #4349E4;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 5rem;
  }
}
.hero-video {
  background-color: #F6F6FA;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video img,
.hero-video video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero-video {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .hero-video {
    height: 700px;
  }
}
.client-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 32px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .client-list {
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .client-list {
    column-gap: 64px;
    justify-content: space-between;
  }
}
.client-list img {
  max-width: 120px;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .client-list img {
    max-width: 140px;
  }
}
.work-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.work-list .work-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work-list .work-item .work-image {
  flex: 1;
  position: relative;
}
.work-list .work-item .work-image:hover {
  cursor: none;
  /* hide default cursor */
}
.work-list .work-item .work-image .cursor-view {
  position: absolute;
  padding: 12px 20px;
  background: #000000;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.2;
  border-radius: 40px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: var(--y);
  left: var(--x);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
  width: max-content;
}
.work-list .work-item .work-image:hover .cursor-view {
  opacity: 1;
}
.work-list .work-item .work-image img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .work-list .work-item .work-image img {
    height: auto;
  }
}
.work-list .work-item .work-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.work-list .work-item .work-details h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #4349E4;
}
.work-list .work-item .work-details h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .work-list .work-item .work-details h3 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .work-list .work-item .work-details h3 {
    font-size: 2.5rem;
  }
}
.work-list .work-item .work-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.work-list .work-item .work-details ul li {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 40px;
  padding: 6px 12px;
}
@media (min-width: 768px) {
  .work-list .work-item .work-details ul li {
    font-size: 1rem;
  }
}
.zenork-marquee {
  background: #4349E4;
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-group img {
  height: 30px;
  width: auto;
  display: block;
  pointer-events: none;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cta-section {
  padding: 80px 0 0;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .cta-section h2 {
    font-size: 5rem;
    line-height: 1.1;
  }
}
@media (min-width: 992px) {
  .cta-section {
    padding: 80px 0 40px;
  }
}
footer {
  background-color: #000;
  padding: 56px 0;
}
footer h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  footer ul {
    margin: 0;
  }
}
footer ul li {
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
}
footer ul li a {
  color: #FFF;
  text-decoration: none;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer p {
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
}
.footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 32px;
}
.footer-logo-container img {
  height: 30px;
  width: auto;
}
.dashed-footer-line {
  border: none;
  border-top: 1px dashed #999;
  margin: 16px 0;
  width: 100%;
}
.footer-copyright {
  padding: 40px 0;
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .footer-copyright {
    padding: 64px 0 40px;
  }
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-right: 24px;
}
.service-item h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  color: #4349E4;
}
.service-item p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  color: #000;
}
.service-item img {
  width: 80px;
  margin-bottom: 24px;
}
.projects-marquee {
  overflow: hidden;
  padding: 16px 0;
}
.projects-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
}
.projects-marquee .marquee-track .marquee-group {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.projects-marquee .marquee-track .marquee-group img {
  height: 418px;
  width: auto;
  display: block;
  pointer-events: none;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.1);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-us-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}
.about-us-content h2 {
  margin-bottom: 40px;
}
.about-us-content p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .about-us-content p {
    font-size: 1.25rem;
  }
}
.client-list-marquee {
  overflow: hidden;
  padding: 16px 0;
}
.client-list-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
}
.client-list-marquee .marquee-track .marquee-group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.client-list-marquee .marquee-track .marquee-group img {
  height: fit-content;
  width: auto;
  max-width: 140px;
  display: block;
  pointer-events: none;
  height: auto;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonials-section {
  background-color: #000000;
  padding: 80px 20px;
}
@media (min-width: 992px) {
  .testimonials-section {
    padding: 160px 80px;
  }
}
.testimonials-section blockquote {
  margin: 0 0 40px 0;
  position: relative;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .testimonials-section blockquote {
    padding-left: 40px;
  }
}
.testimonials-section blockquote::before {
  content: "“";
  font-size: 5rem;
  position: absolute;
  left: -20px;
  top: -30px;
  color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 992px) {
  .testimonials-section blockquote::before {
    left: 0;
  }
}
.testimonials-section blockquote p {
  font-size: 1.125rem;
  font-weight: 300;
  color: #FFF;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .testimonials-section blockquote p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .testimonials-section blockquote p {
    font-size: 2rem;
  }
}
.testimonials-section blockquote footer {
  background: none;
  padding: 0;
  margin: 16px 0 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
}
@media (min-width: 768px) {
  .testimonials-section blockquote footer {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .testimonials-section blockquote footer {
    font-size: 1.5rem;
  }
}
.team-member-card .photo-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
  background-color: #EEEEFB;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .team-member-card .photo-container {
    height: 450px;
  }
}
.team-member-card .photo-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.team-member-card .photo-container:hover img,
.team-member-card .photo-container:focus-within img {
  transform: scale(1.02);
}
.team-member-card h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
.team-member-card p {
  font-size: 1.125rem;
  font-weight: 300;
}
.mail-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 300;
  color: #4349E4;
  background-color: #4349E4;
  background: linear-gradient(90deg, #4349e4 0%, #6566e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mail-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  /* border thickness */
  background: linear-gradient(90deg, #4349e4 0%, #6566e4 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 350ms ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .mail-link::after {
    height: 4px;
    bottom: -10px;
  }
}
.mail-link:hover::after {
  transform: scaleX(1);
}
@media (min-width: 992px) {
  .mail-link {
    font-size: 4.875rem;
  }
}
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.contact-social-links a {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  transition: color 250ms ease;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (min-width: 992px) {
  .contact-social-links a {
    font-size: 2.5rem;
  }
}
.contact-social-links a .contact-arrow-icon {
  transition: all 0.3s ease-in-out;
  height: 32px;
}
@media (min-width: 992px) {
  .contact-social-links a .contact-arrow-icon {
    height: 48px;
  }
}
.contact-social-links a:hover .contact-arrow-icon {
  transform: rotate(45deg);
}
.contact-address h3 {
  margin-bottom: 16px;
}
.contact-address p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
.contact-address hr {
  margin: 24px 0;
  border: none;
  border-top: 1px dashed #999;
}
.contact-building-image {
  border-radius: 16px;
}
