* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #eeecea;
}
body a {
  text-decoration: none;
  color: #333;
}
body a:hover {
  color: #333;
}
body p {
  font-size: 14px;
}

.content-section {
  min-height: 150vh;
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.content-section:last-child {
  border-bottom: none;
}
.content-section h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.section-placeholder {
  width: 100%;
  height: 150vh;
  border-radius: 8px;
}

.tag-navigation {
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 30px;
}

.tag-link {
  text-decoration: none;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.tag-link:hover, .tag-link.active {
  color: #333;
  border-bottom-color: #333;
}

main {
  margin: 0 auto;
  padding: 0 20px;
  min-height: calc(100vh - 270px);
}

.main-header {
  padding: 36px 40px 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000 !important;
  height: 120px;
  background-color: #eeecea;
}
.main-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 40px;
}
.main-header .header-container .header-left {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: baseline;
  gap: 60px;
}
.main-header .header-container .header-left .logo-link {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1003;
}
.main-header .header-container .header-left .logo-link .logo {
  height: 30px;
  width: auto;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1003;
  transform: none !important;
  -webkit-transform: none !important;
  image-orientation: none;
  -webkit-image-orientation: none;
}
.main-header .header-container .header-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.main-header .header-container .header-right .triangles-link {
  display: block;
}
.main-header .header-container .header-right .triangles-link .triangles {
  height: 24px;
  width: auto;
}
.main-header .header-container .header-right .burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  gap: 6px;
}
.main-header .header-container .header-right .burger-menu .burger-line {
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}
.main-header .header-container .header-right .burger-menu.active .burger-line {
  background-color: #333;
}
.main-header .header-container .header-right .burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-header .header-container .header-right .burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.main-header .header-container .header-right .burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.main-header .main-nav-desktop {
  display: flex;
}
.main-header .main-nav-desktop .nav-list {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .main-nav-desktop .nav-list .nav-item {
  position: relative;
}
.main-header .main-nav-desktop .nav-list .nav-item .nav-link {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  font-weight: 400;
}
.main-header .main-nav-desktop .nav-list .nav-item .nav-link:hover, .main-header .main-nav-desktop .nav-list .nav-item .nav-link.active {
  color: #333;
  font-weight: 700;
}
.main-header .main-nav-desktop .nav-list .nav-item .subnav-container {
  position: absolute;
  top: 30px;
  left: 0;
  padding: 0 0 5px 0;
  min-width: 200px;
  z-index: 1000;
}
.main-header .main-nav-desktop .nav-list .nav-item .subnav-container.subnav-horizontal {
  padding: 0;
}
.main-header .main-nav-desktop .nav-list .nav-item .subnav-container .subnav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .main-nav-desktop .nav-list .nav-item .subnav-container .subnav-list .subnav-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 1px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-weight: 400;
  white-space: nowrap;
}
.main-header .main-nav-desktop .nav-list .nav-item .subnav-container .subnav-list .subnav-link:hover, .main-header .main-nav-desktop .nav-list .nav-item .subnav-container .subnav-list .subnav-link.active {
  color: #333;
  font-weight: 700;
}
.main-header .main-nav-mobile {
  display: none;
}

@media (max-width: 960px) {
  .main-header {
    padding: 20px 20px 10px 20px;
    height: auto;
  }
  .main-header .header-container {
    padding: 0;
  }
  .main-header .header-container .header-left {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .main-header .header-container .header-left .logo {
    height: 24px;
    transform: none !important;
    -webkit-transform: none !important;
    image-orientation: none;
    -webkit-image-orientation: none;
  }
  .main-header .header-container .header-right .burger-menu {
    display: flex;
  }
  .main-header .main-nav-desktop {
    display: none !important;
  }
  .main-header .main-nav-mobile {
    display: block;
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    height: calc(100vh - 54px);
    background-color: #eeecea;
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
    overflow-y: auto;
    padding: 20px 20px 40px 20px;
  }
  .main-header .main-nav-mobile.active {
    transform: translateY(0);
  }
  .main-header .main-nav-mobile .nav-list {
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: #333;
    text-transform: lowercase;
    letter-spacing: 1px;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .nav-link.active {
    font-weight: 700;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .subnav-container {
    position: static;
    padding: 0 0 10px 20px;
    display: block !important;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .subnav-container .subnav-list {
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .subnav-container .subnav-list .subnav-link {
    display: block;
    padding: 4px 0;
    font-size: 16px;
    text-decoration: none;
    color: #666;
    text-transform: lowercase;
    letter-spacing: 1px;
  }
  .main-header .main-nav-mobile .nav-list .nav-item .subnav-container .subnav-list .subnav-link.active {
    color: #333;
    font-weight: 700;
  }
}
.mobile-subnav {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-subnav {
    display: block !important;
    padding: 12px 20px;
    background-color: #eeecea;
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    z-index: 998;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-subnav::-webkit-scrollbar {
    display: none;
  }
  .mobile-subnav .mobile-subnav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    min-width: max-content;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    text-transform: lowercase;
    letter-spacing: 1px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
    padding: 4px 0;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-link:hover, .mobile-subnav .mobile-subnav-list .mobile-subnav-link.active {
    color: #333;
    font-weight: 700;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 400;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-back-link i {
    font-size: 14px;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-back-link span {
    text-transform: lowercase;
    letter-spacing: 1px;
  }
  .mobile-subnav .mobile-subnav-list .mobile-subnav-back-link:hover {
    color: #333;
    font-weight: 700;
  }
  body.mwai-projects main,
  body.mwai-insights main,
  body.mwai-project main,
  body.mwai-insight main {
    padding-top: 46px;
  }
}
.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding-top: 1rem;
}
@media (min-width: 1700px) {
  .project-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .project-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7/8;
}
.project-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.project-item {
  cursor: pointer;
}
.project-item::after {
  pointer-events: none;
}
.project-item.no-link {
  cursor: default;
}
.project-item.no-link::after {
  display: none;
}
.project-item.no-link > div {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 3;
}
.project-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 3;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.project-item:hover img {
  filter: saturate(50%) brightness(0.8);
}
.project-item .project-text {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 3;
  text-align: center;
  width: 90%;
}
.project-item h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.project-item .project-location {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  margin: 0;
  text-transform: none;
}

footer {
  padding: 1rem 1rem 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 auto;
  padding: 0 40px;
}
footer .footer-content .footer-left {
  text-align: left;
  min-width: 20vw;
}
footer .footer-content .footer-left img {
  height: 3rem;
  width: auto;
}
footer .footer-content .footer-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-content .footer-right .footer-right-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-content .footer-right .footer-right-item p {
  margin: 0;
}
footer .footer-content .footer-right .footer-right-item p em {
  font-style: normal;
}

@media (max-width: 768px) {
  footer {
    padding: 1.5rem 1rem;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    align-items: center;
  }
  footer .footer-content .footer-left {
    text-align: center;
    min-width: auto;
    width: 100%;
  }
  footer .footer-content .footer-left img {
    height: 2.5rem;
    width: auto;
  }
  footer .footer-content .footer-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  footer .footer-content .footer-right .footer-right-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
  }
  footer .footer-content .footer-right .footer-right-item p {
    font-size: 14px;
    line-height: 1.4;
  }
  footer .footer-content .footer-right .footer-right-item p em {
    display: block;
  }
}
.profile-section .profile-content .profile-text .profile-text-wrapper h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.profile-section .profile-content .profile-text .profile-text-wrapper ul li, .profile-section .profile-content .profile-text .profile-text-wrapper ul, .profile-section .profile-content .profile-text .profile-text-wrapper p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 46rem;
}
.profile-section .profile-content .profile-text .profile-text-wrapper ul li:last-child, .profile-section .profile-content .profile-text .profile-text-wrapper ul:last-child, .profile-section .profile-content .profile-text .profile-text-wrapper p:last-child {
  margin-bottom: 0;
}
.profile-section .profile-content .profile-text .profile-text-wrapper ul strong, .profile-section .profile-content .profile-text .profile-text-wrapper p strong {
  font-weight: 600;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.hero-image {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}
@media (max-width: 960px) {
  .hero-image {
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }
}
.hero-image > video,
.hero-image > img,
.hero-image .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-image .hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-image .hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-image .hero-image-container picture {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-image .hero-image-container picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-image .hero-image-container video {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-image .logo-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.hero-image .logo-holder img {
  width: auto;
  height: 70px;
}
@media (max-width: 768px) {
  .hero-image .logo-holder img {
    height: 50px;
  }
}
.hero-image > .claim {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  width: 90%;
  max-width: 900px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero-image > .claim {
    font-size: 22px;
    line-height: 1.4;
    width: 85%;
    max-width: none;
    padding: 0 10px;
  }
}
.hero-image .scroll-arrow-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-image .scroll-arrow-container {
    bottom: 2rem;
    z-index: 100;
  }
}
.hero-image .scroll-arrow-container .scroll-arrow-text {
  color: #fff;
  text-align: center;
}
.hero-image .scroll-arrow-container .scroll-arrow-text h1, .hero-image .scroll-arrow-container .scroll-arrow-text h2 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-image .scroll-arrow-container .scroll-arrow-text {
    padding: 0 20px;
    margin-top: -10px;
  }
  .hero-image .scroll-arrow-container .scroll-arrow-text h1, .hero-image .scroll-arrow-container .scroll-arrow-text h2 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.hero-image .scroll-arrow-container .scroll-arrow {
  cursor: pointer;
}
.hero-image .scroll-arrow-container .scroll-arrow i {
  font-size: 50px;
  color: #fff;
  transition: color 0.3s ease;
  animation: scroll-bounce 2s infinite ease-in-out;
}
.hero-image .scroll-arrow-container .scroll-arrow:hover i {
  color: #ccc;
}

.white-space {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
@media (max-width: 768px) {
  .white-space {
    height: auto;
    padding: 60px 20px;
  }
}
.white-space h2,
.white-space h4 {
  font-size: 28px;
  font-weight: 300;
  z-index: 2;
  line-height: 1.3;
  width: 70%;
  max-width: 50rem;
  text-align: center;
}
@media (max-width: 768px) {
  .white-space h2,
  .white-space h4 {
    font-size: 20px;
    width: 90%;
    line-height: 1.5;
  }
}

.profile-section {
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.profile-section .profile-content {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  align-items: stretch;
}
.profile-section .profile-content .profile-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
.profile-section .profile-content .profile-text .profile-text-wrapper {
  padding: 3rem 4rem;
}
.profile-section .profile-content .profile-text .profile-text-wrapper p.no-margin {
  margin-bottom: 0;
}
.profile-section .profile-content .profile-text .profile-text-wrapper ul {
  list-style: disc;
  padding: 0 0 0 1rem;
  margin: 0.5rem 0;
}
.profile-section .profile-content .profile-text .profile-text-wrapper ul li {
  list-style: disc;
  padding: 0 0 0 0.5rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}
.profile-section .profile-content .profile-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 0;
}
.profile-section .profile-content .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile-section.reverse .profile-content {
  flex-direction: row-reverse;
}
.profile-section:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  @keyframes slideUpCTA {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .profile-section .profile-content {
    flex-direction: column;
  }
  .profile-section .profile-content .profile-text .profile-text-wrapper {
    padding: 2rem 1.5rem;
  }
  .profile-section .profile-content .profile-text .profile-text-wrapper h3 {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .profile-section .profile-content .profile-text .profile-text-wrapper p,
  .profile-section .profile-content .profile-text .profile-text-wrapper li {
    font-size: 14px;
    line-height: 1.5;
  }
  .profile-section .profile-content .profile-image {
    min-height: 300px;
  }
  .profile-section.reverse .profile-content {
    flex-direction: column;
  }
  .profile-section .profile-content .profile-text .profile-text-wrapper h3 {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .profile-section .profile-content .profile-text .profile-text-wrapper p, .profile-section .profile-content .profile-text .profile-text-wrapper ul, .profile-section .profile-content .profile-text .profile-text-wrapper ul li {
    font-size: 14px;
    line-height: 1.5;
  }
}
.balloon-widget {
  color: white;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  cursor: pointer;
  background-image: url("/img/cta-bubble-shadow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 220px;
  aspect-ratio: 118/107;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .balloon-widget {
    width: min(100% - 2rem, 180px);
    bottom: 60px;
    right: 1rem;
    padding: 0 1rem 1.9rem 1rem;
  }
}
.balloon-widget.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.balloon-widget.hide {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}
.balloon-widget.vibrate {
  animation: balloonVibrate 0.6s ease-in-out;
}
.balloon-widget:hover {
  transform: translateY(-8px) translateX(0);
}

.balloon-icon {
  display: flex;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 25px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.balloon-icon:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.balloon-icon i {
  color: white;
}

.balloon-content {
  position: relative;
  padding-top: 2rem;
  padding-right: 1rem;
}
.balloon-content .balloon-text {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .balloon-content .balloon-text {
    font-size: 1rem;
  }
}
.balloon-content .balloon-text span {
  display: block;
}

/* Button vibration animation */
@keyframes buttonVibrate {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  10% {
    transform: translateX(-2px) translateY(-1px) scale(1.02);
  }
  20% {
    transform: translateX(2px) translateY(1px) scale(1.02);
  }
  30% {
    transform: translateX(-1px) translateY(-1px) scale(1.01);
  }
  40% {
    transform: translateX(1px) translateY(1px) scale(1.01);
  }
  50% {
    transform: translateX(-1px) translateY(0) scale(1);
  }
  60% {
    transform: translateX(1px) translateY(0) scale(1);
  }
  70% {
    transform: translateX(-1px) translateY(0) scale(1);
  }
  80% {
    transform: translateX(1px) translateY(0) scale(1);
  }
  90% {
    transform: translateX(0) translateY(0) scale(1);
  }
}
/* Balloon vibration animation */
@keyframes balloonVibrate {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  10% {
    transform: translateX(-3px) translateY(-1px);
  }
  20% {
    transform: translateX(3px) translateY(1px);
  }
  30% {
    transform: translateX(-2px) translateY(-1px);
  }
  40% {
    transform: translateX(2px) translateY(1px);
  }
  50% {
    transform: translateX(-1px) translateY(0);
  }
  60% {
    transform: translateX(1px) translateY(0);
  }
  70% {
    transform: translateX(-1px) translateY(0);
  }
  80% {
    transform: translateX(1px) translateY(0);
  }
  90% {
    transform: translateX(0) translateY(0);
  }
}
.contacts-and-socials ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 2rem 0 1rem 0;
  gap: 2rem;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.contacts-and-socials ul li {
  width: 10rem;
  text-align: center;
}
.contacts-and-socials ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.contacts-and-socials ul li a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .contacts-and-socials ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0 1rem 0;
  }
  .contacts-and-socials ul li {
    width: 100%;
  }
  .contacts-and-socials ul li a {
    font-size: 14px;
  }
}
.project-detail {
  max-width: none;
  padding: 0;
}
.project-detail .hero {
  position: relative;
  margin-bottom: 0;
}
.project-detail .hero .white-space h1 {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 2rem;
}
.project-detail .hero .white-space h2 {
  font-size: 22px;
}
.project-detail .hero-image {
  position: relative;
}
@media (max-width: 960px) {
  .project-detail .hero-image {
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
  }
}
.project-detail .hero-image img,
.project-detail .hero-image video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.project-detail .hero-image .claim-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10 !important;
  text-align: center;
  pointer-events: none;
  gap: 0.5rem;
}
.project-detail .hero-image .claim-container .claim {
  position: relative;
  z-index: 11;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  width: 90%;
  max-width: 900px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .project-detail .hero-image .claim-container .claim {
    font-size: 22px;
    line-height: 1.4;
    max-width: none;
    padding: 0 10px;
  }
}
.project-detail .hero-image .claim-container .claim-location {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-transform: capitalize;
  position: relative;
  z-index: 11;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .project-detail .hero-image .claim-container .claim-location {
    font-size: 18px;
  }
}
.project-detail .hero-image .hero-video {
  object-fit: cover;
}
.project-detail .hero-image .scroll-arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 12;
  cursor: pointer;
  pointer-events: auto;
}
.project-detail .hero-image .scroll-arrow i {
  font-size: 50px;
  color: #fff;
  transition: color 0.3s ease;
  animation: scroll-bounce 2s infinite ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.project-detail .hero-image .scroll-arrow:hover i {
  color: #ccc;
}
@media (max-width: 768px) {
  .project-detail .hero-image .scroll-arrow {
    bottom: 2rem;
    z-index: 100;
  }
  .project-detail .hero-image .scroll-arrow i {
    font-size: 40px;
  }
}

.image-overlay {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.image-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.image-gallery {
  margin-bottom: 0;
  padding: 0;
}

.gallery-grid {
  width: 100%;
  margin: 0 auto;
}

.grid-item {
  float: left;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}
.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.grid-item.wide {
  width: 100%;
  aspect-ratio: 16/9;
}
.grid-item.wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-item.tall {
  width: calc(50% - 4px);
  aspect-ratio: 3/4;
}
.grid-item.tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-item.square {
  width: calc(50% - 4px);
  aspect-ratio: 3/4;
}
.grid-item.square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details {
  padding: 40px 80px;
}

.details-content h1 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #333;
}
.details-content h1 em {
  font-size: 18px;
  display: block;
}
.details-content .address {
  margin-bottom: 20px;
}
.details-content .address p {
  color: #333;
  margin: 0;
  line-height: 1.4;
}
.details-content .subheading {
  margin-bottom: 30px;
}
.details-content .subheading h3 {
  font-size: 18px;
  color: #333;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}
.details-content .details-flex {
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  .details-content .details-flex {
    flex-direction: column;
  }
}
.details-content .details-flex .details-left {
  flex: 1;
}
.details-content .details-flex .details-left .details-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
}
.details-content .details-flex .details-left .next-project-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.details-content .details-flex .details-left .next-project-container .next-project-icon {
  font-size: 18px;
}
.details-content .details-flex .details-left .next-project-container .next-project-content {
  font-size: 16px;
  line-height: 1.6;
}
.details-content .details-flex .details-left .next-project-container .next-project-content .next-project-label {
  color: #333;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}
.details-content .details-flex .details-left .next-project-container .next-project-content .next-project-title {
  font-size: 16px;
  display: block;
  color: #666;
}
@media (max-width: 768px) {
  .details-content .details-flex .details-left .next-project-container {
    display: none;
  }
}
.details-content .details-flex .details-right {
  flex: 1;
}
.details-content .details-flex .details-right .project-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.details-content .details-flex .details-right .project-meta .meta-item {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
}
.details-content .details-flex .details-right .project-meta .meta-item strong {
  font-weight: 300;
  color: #333;
}
.details-content .details-flex .details-right .next-project-container-mobile {
  display: none;
}
@media (max-width: 768px) {
  .details-content .details-flex .details-right .next-project-container-mobile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
  }
  .details-content .details-flex .details-right .next-project-container-mobile .next-project-icon {
    font-size: 18px;
  }
  .details-content .details-flex .details-right .next-project-container-mobile .next-project-content {
    font-size: 16px;
    line-height: 1.6;
  }
  .details-content .details-flex .details-right .next-project-container-mobile .next-project-content .next-project-label {
    color: #333;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
  }
  .details-content .details-flex .details-right .next-project-container-mobile .next-project-content .next-project-title {
    font-size: 16px;
    display: block;
    color: #666;
  }
}

.mwai-coming-soon {
  padding: 0;
  margin: 0;
}
.mwai-coming-soon main {
  height: 100vh;
  display: flex;
  background-color: #666;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mwai-coming-soon main img {
  width: auto;
  height: 100px;
}

.mwai-home {
  padding: 0;
  margin: 0;
}
.mwai-home .hero-image {
  height: 100vh;
  height: 100dvh;
}
@media (max-width: 768px) {
  .mwai-home .hero-image {
    height: 100vh;
    height: 100dvh;
  }
}
.mwai-home .main-header {
  position: relative !important;
  top: auto !important;
}
.mwai-home .main-header.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000 !important;
}
@media (max-width: 960px) {
  .mwai-home .main-header {
    display: none !important;
  }
}
.mwai-home main {
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Noto Serif", serif;
}
@media (max-width: 768px) {
  .mwai-home main .white-space {
    padding: 50px 20px;
  }
}
.mwai-home main .nav-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.25rem;
}
.mwai-home main .nav-images .nav-images-item {
  flex: 1;
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mwai-home main .nav-images .nav-images-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 1024px) {
  .mwai-home main .nav-images .nav-images-item {
    flex: 0 0 calc(50% - 0.125rem);
    min-width: calc(50% - 0.125rem);
  }
}
.mwai-home main .nav-images .nav-images-item:hover::before {
  filter: brightness(0.8);
}
.mwai-home main .nav-images .nav-images-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 0.3s ease;
  z-index: 1;
}
.mwai-home main .nav-images .nav-images-item.nav-images-item-about::before {
  background-image: url("/img/home/about-bg.jpg");
}
.mwai-home main .nav-images .nav-images-item.nav-images-item-projects::before {
  background-image: url("/img/home/projects-bg.jpg");
}
.mwai-home main .nav-images .nav-images-item.nav-images-item-services::before {
  background-image: url("/img/home/services-bg.jpg");
}
.mwai-home main .nav-images .nav-images-item.nav-images-item-insights::before {
  background-image: url("/img/home/insights-bg.jpg");
}
.mwai-home main .nav-images .nav-images-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  z-index: 2;
}
@media (max-width: 1300px) {
  .mwai-home main .nav-images .nav-images-item a {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .mwai-home main .nav-images .nav-images-item a {
    font-size: 24px;
  }
}

.mwai-about main .team-grid .team-item.team-description .team-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.mwai-about main .team-grid .team-item.team-description .team-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 46rem;
}
.mwai-about main .team-grid .team-item.team-description .team-content p:last-child {
  margin-bottom: 0;
}
.mwai-about main .team-grid .team-item.team-description .team-content p strong {
  font-weight: 600;
}

.mwai-about {
  padding: 0;
  margin: 0;
}
.mwai-about main {
  padding: 0;
  margin: 0;
  text-align: center;
}
.mwai-about main .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .mwai-about main .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .mwai-about main .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.mwai-about main .team-grid .team-item {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .mwai-about main .team-grid .team-item {
    aspect-ratio: auto;
  }
}
.mwai-about main .team-grid .team-item.team-description {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 0;
  text-align: left;
}
.mwai-about main .team-grid .team-item.team-description .team-content h3 {
  margin-bottom: 1rem;
}
.mwai-about main .team-grid .team-item.team-member {
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mwai-about main .team-grid .team-item.team-member .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 2rem;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  overflow-y: auto;
  z-index: 1;
}
.mwai-about main .team-grid .team-item.team-member .team-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}
.mwai-about main .team-grid .team-item.team-member .team-overlay .team-abstract {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #000;
}
.mwai-about main .team-grid .team-item.team-member .team-details {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  background: transparent;
  color: #000;
  padding: 0;
  padding-top: 6.5rem;
  opacity: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  overflow-y: auto;
  pointer-events: none;
  z-index: 1;
}
.mwai-about main .team-grid .team-item.team-member:hover .team-overlay {
  opacity: 1;
}
.mwai-about main .team-grid .team-item.team-member:hover .team-details {
  opacity: 1;
}
@media (max-width: 768px) {
  .mwai-about main .team-grid .team-item.team-member {
    display: flex;
    flex-direction: column;
    background: #fff !important;
    aspect-ratio: auto;
    cursor: default;
  }
  .mwai-about main .team-grid .team-item.team-member::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 5/6;
    background-image: var(--mobile-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    order: 2;
  }
  .mwai-about main .team-grid .team-item.team-member .team-overlay {
    position: static;
    opacity: 1;
    background: #eeecea;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .mwai-about main .team-grid .team-item.team-member .team-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .mwai-about main .team-grid .team-item.team-member .team-overlay .team-abstract {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
    color: #666;
  }
  .mwai-about main .team-grid .team-item.team-member .team-details {
    position: static;
    opacity: 1;
    background: #eeecea;
    order: 3;
    padding: 1.5rem;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
    text-align: left;
    pointer-events: auto;
  }
}
.mwai-about main .contact-section {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mwai-about main .contact-section .contact-content {
  text-align: left;
  padding: 0 4rem;
}
.mwai-about main .contact-section .contact-content h3 {
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 2rem;
}
.mwai-about main .contact-section .contact-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 16rem;
}
.mwai-about main .contact-section .contact-content p a {
  color: #000;
  font-weight: 400;
}

@media (max-width: 768px) {
  .mwai-about main .contact-section .contact-content {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
    padding: 0 1.5rem;
  }
  .mwai-about main .contact-section .contact-content h3 {
    font-size: 28px;
    margin-right: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .mwai-about main .contact-section .contact-content .contact-info p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.mwai-services {
  padding: 0;
  margin: 0;
}
.mwai-services main {
  padding: 0;
  margin: 0;
  text-align: center;
}
.mwai-services main .content-section {
  padding: 4rem 2rem;
  text-align: left;
}
.mwai-services main .content-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
.mwai-services main .content-section .section-placeholder {
  min-height: 200px;
}

.mwai-legal-page {
  background-color: #eeecea;
}
.mwai-legal-page .legal-content {
  padding: 80px 40px;
  min-height: 60vh;
}
.mwai-legal-page .legal-content .legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  background-color: #fff;
}
.mwai-legal-page .legal-content .legal-container h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #333;
  text-align: left;
}
.mwai-legal-page .legal-content .legal-container p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: left;
}
.mwai-legal-page .legal-content .legal-container p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mwai-legal-page .legal-content {
    padding: 40px 20px;
  }
  .mwai-legal-page .legal-content .legal-container {
    padding: 40px 20px;
  }
  .mwai-legal-page .legal-content .legal-container h1 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .mwai-legal-page .legal-content .legal-container p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  body.mwai-projects,
  body.mwai-insights,
  body.mwai-project,
  body.mwai-insight {
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
  .main-nav {
    gap: 20px;
  }
  .tag-navigation {
    padding: 15px 20px;
    gap: 20px;
    overflow-x: auto;
  }
  main {
    padding: 20px 10px;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .image-overlay {
    bottom: 20px;
    right: 20px;
    padding: 20px;
    max-width: 300px;
  }
  .project-details {
    padding: 40px 20px;
  }
  .details-content h2 {
    font-size: 28px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .grid-item.wide, .grid-item.tall, .grid-item.square {
    width: 100%;
    height: 50vh;
  }
}
@media (max-width: 1024px) {
  .details-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-item.tall, .grid-item.square {
    width: 100%;
    height: 60vh;
  }
}
.desktop-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}
.mobile-only img, .mobile-only video, .mobile-only picture {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .desktop-only img, .desktop-only video, .desktop-only picture {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .mobile-only picture {
    display: block !important;
  }
}
body.menu-open {
  overflow: hidden;
}

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