body {
  font-size: 1.6rem;
  font-weight: 400;
  overflow-x: hidden !important;
}

.main {
  padding: 0 1rem;
}

.bg-video {
  position: fixed;
  top: 1rem;
  left: 1rem;
  height: calc(100% - 1rem);
  width: calc(100% - 2rem);
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
}

.header.sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(144deg, #6ca6c2, #5c95ae);
  filter: blur(1px);
  opacity: 0.95;
  z-index: -1;
}

.header .nav.desktop .site-logo {
  display: none;
  transition: 300ms all ease-in-out;
}

.header.sticky .nav.desktop .site-logo {
  display: block;
}

.header.sticky .logo {
  padding: 1.2rem 0;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.mobile {
  display: none;
}

.min-w-md {
  min-width: 18rem;
}

.nav .controls {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-left: 1.2rem;
  transition: 300ms all ease-in-out;
}

.header.sticky .nav.desktop .controls {
  display: none;
}

.nav .controls button {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.mute-unmute img {
  width: 2.4rem;
}

.nav .controls button.hamburger {
  height: 4.2rem;
  width: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--white-clr);
  margin-left: 1rem;
}

.nav .controls button.hamburger img {
  filter: invert(1);
}

.nav .controls button.hamburger img.close,
.nav .controls button.hamburger.active img.bars {
  display: none;
}

.nav .controls button.hamburger.active img.close {
  display: block;
}

.nav .controls .languages .language img {
  vertical-align: middle;
  padding-bottom: 0.4rem;
}

.nav .controls .languages .language.active img {
  border-bottom: 0.2rem solid var(--white-clr);
}

.nav .controls .languages img {
  width: 3.3rem;
}

.nav .logo a {
  font-size: 5.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav.mobile .logo a {
  font-size: 2.8rem;
}

.nav .menus {
  position: relative;
}

.nav .menus h4 {
  text-align: right;
  cursor: pointer;
}

.nav .menus h4 span {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
}

.nav .menus h4 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  border-bottom: 0.1rem solid var(--white-clr);
  transition: 300ms all linear;
  opacity: 0;
}

.nav .menus h4:hover span::before {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.nav .menus .submenu {
  position: absolute;
  right: 0;
  min-width: 18rem;
  background: var(--white-clr);
  border-top: 0.2rem solid var(--blue-clr);
  opacity: 0;
  pointer-events: none;
}

.nav .menus:hover .submenu {
  opacity: 1;
  pointer-events: all;
}

.nav .menus .submenu a {
  text-transform: uppercase;
  color: var(--black-clr);
  line-height: 1;
  display: block;
  border: 0.1rem solid transparent;
  padding: 0.8rem;
  transition: 200ms all linear;
}

.nav .menus .submenu a:focus {
  border: 1px dotted #000;
}

.nav .menus .submenu a:hover {
  color: var(--blue-clr);
}

.mobile-menus {
  position: absolute;
  left: 0;
  top: 7.2rem;
  width: 100%;
  background: var(--white-clr);
  font-size: 1.4rem;
  transform: scaleY(0);
  transform-origin: top;
  transition: 300ms all ease-in-out;
}

.mobile-menus.active {
  transform: scaleY(1);
}

.header.sticky .mobile-menus {
  top: 6.2rem;
}

.mobile-menus .menu-header {
  min-height: 4rem;
  line-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.mobile-menus .menu-header a {
  color: var(--black-clr);
}

.mobile-menus .menu-header button {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.mobile-menus .menu-header button img {
  height: 1rem;
}

.mobile-menus .submenu {
  display: none;
}

.mobile-menus .submenu.active {
  display: block;
}

.mobile-menus .submenu li {
  border-top: 0.1rem solid #eaeaea;
  min-height: 4rem;
  line-height: 4rem;
  padding: 0 2rem;
}

.mobile-menus .submenu a {
  color: var(--black-clr);
}

.section-intro-title {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0.3rem 0.6rem #00000040;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.hero .hero-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 5.5rem;
}

.hero .hero-contents h2 {
  margin-bottom: 0.6rem;
}

.navigations {
  max-width: 105rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.navigations li {
  min-width: 23rem;
  text-align: center;
  padding: 1rem;
}

.navigations h3 {
  font-size: 2.4rem;
  text-shadow: 0 0.3rem 0.6rem #00000040;
}

.mouseicon {
  height: 1.7rem;
  width: 2.7rem;
  border-radius: 3rem;
  border: 0.2rem solid #ffffff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.2rem 0.3rem;
  transform: rotate(90deg);
}

.mousewheel {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #ffffff;
  animation-name: scrolling;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0, 0.56, 0.44, 0.83);
  animation-iteration-count: infinite;
}

@keyframes scrolling {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10px);
  }
  100% {
    transform: translate(0);
  }
}

/*.project, .sustainability, .contact {
  padding-top: 95px;
}
*/
.project h2 {
  margin-bottom: 5rem;
}

.project .flex-container {
  max-width: 114rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.7rem;
}

.project .flex-container li h3 {
  font-size: 2.4rem;
  font-weight: 400;
}

.project .image {
  max-width: 48rem;
  margin: 0 auto;
  margin-bottom: 2.4rem;
  text-align: center;
}

.project .image img {
  width: 100%;
}

.project h3 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
}

.project .brand-label {
  position: absolute;
  max-width: 7.1rem;
  bottom: 0;
  right: 5.6rem;
}

.sustainability h2 {
  margin-bottom: 2rem;
}

.sustainability .two-column-layout {
  max-width: 116rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.sustainability .two-column-layout .column {
  width: 50%;
}

.sustainability .two-column-layout .column .icon {
  text-align: center;
}

.sustainability .two-column-layout .column .icon img {
  max-width: 10rem;
}

.sustainability .two-column-layout .column ul {
  padding: 1rem 0;
}

.sustainability .two-column-layout .column:nth-child(1) ul {
  padding-right: 3rem;
}

.sustainability .two-column-layout .column:nth-child(2) ul {
  padding-left: 3rem;
}

.sustainability .two-column-layout .column li {
  margin-bottom: 1.2rem;
}

.sustainability .two-column-layout .column li p {
  font-size: 2.4rem;
  letter-spacing: -0.75px;
  line-height: 1.1;
  text-shadow: 0 0.3rem 0.6rem #00000040;
}

.contact .group {
  max-width: 116rem;
  margin: 0 auto;
}

.contact .section-intro-title {
  margin-bottom: 4.6rem;
}

.contact .contact-details-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.contact .contact-details-wrapper .contact-details {
  width: 55%;
}

.contact .contact-details-wrapper .contact-details ul {
  max-width: 50rem;
}

.contact .contact-details-wrapper .contact-details ul li {
  margin-bottom: 2rem;
}

.contact .contact-details-wrapper .directions {
  width: 45%;
}

.contact .contact-details-wrapper .group {
  padding-block: 1rem;
  padding-left: 8rem;
}

.contact .contact-details-wrapper h3 {
  font-size: 2.4rem;
  font-weight: 400;
  text-shadow: 0 0.3rem 0.6rem #00000040;
  line-height: 1.3;
}

.contact .contact-details-wrapper .map {
  max-width: 40rem;
  height: 17.5rem;
}

.contact .contact-details-wrapper .map iframe {
  height: 100%;
  width: 100%;
}

.contact .contact-details-wrapper .group h2 {
  margin-block: 2rem;
}

.social-handles ul {
  display: flex;
  margin-top: 5rem;
}

.social-handles ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
}

.social-handles ul li a:focus {
  border: 0.1rem dotted #3a3a3a;
}

.social-handles ul li img {
  height: 2.5rem;
  filter: invert(1);
}

#hero {
    padding-top: 0 !important;
    border-top: 10px solid  #ffffff
}
.fp-tableCell{
  vertical-align: top;
}


