@import url("bootstrap.min.css");
@import url("bootstrap.min.css");
body {
  font-family: futura-pt, sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

body.page-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-fade.page-fade--visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.page-fade,
  body.page-fade.page-fade--visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.container {
  max-width: 1460px;
}
@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
}

/* ===========================
   Varibles
=========================== */
:root {
  --color-1: black;
  --color-2: #004672;
  --sp-font: futura-pt-bold, sans-serif;
  --body-font: futura-pt, sans-serif;
  --grey: #9E9FA7;
  --white: #fff;
  --orange: #FF6B1B;
  --blue: #007EB6;
  --red: #ff0000;
  --yellow: #F4A830;
  --main-color: black;
}

.content-orange {
  --main-color:var(--orange);
}
.content-blue {
  --main-color:var(--blue);
}
.content-red {
  --main-color:var(--red);
}
.content-yellow {
  --main-color:var(--yellow);
}

.container,
.row {
  --bs-gutter-x: 5rem;
}
@media (max-width: 767.98px) {
  .container,
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

main {
  --main-color: black;
  overflow: hidden;
  position: relative;
}
main section {
  position: relative;
  z-index: 2;
}
main.orange {
  --main-color: var(--orange);
}
main.orange::before {
  --size: 95vw;
  content: "";
  display: block;
  position: absolute;
  background-image: url(img/decor-ring-orange.svg);
  background-repeat: no-repeat;
  width: var(--size);
  height: var(--size);
  left: 50%;
  transform: translate(-50%);
  top: 50%;
  background-size: cover;
}
main.red {
  --main-color: var(--red);
}
main.red::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(img/decor-ring-red.svg);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vw;
  left: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.3;
  transform: translate(50%, 50%);
}
main.blue {
  --main-color: var(--blue);
}
main.blue::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(img/decor-ring-blue.svg);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vw;
  left: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  background-size: cover;
  opacity: 0.5;
}
main.yellow {
  --main-color: var(--yellow);
}
main.yellow::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(img/decor-ring-yellow.svg);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vw;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 0%);
  background-size: cover;
  opacity: 0.5;
}

/* ===========================
   Decor Rings
=========================== */
.decor-ring {
  --size: auto;
  --start-color: rgb(225, 225, 225);
  --end-color: rgba(219, 219, 219, 0.1);
  width: var(--size);
  height: var(--size);
  max-width: var(--max-size);
  max-height: var(--max-size);
  border-radius: 50%;
  border-color: none !important;
  position: relative;
}
.decor-ring.mask {
  padding-bottom: 100%;
}
.decor-ring.mask::before {
  content: "";
  background: linear-gradient(270deg, var(--start-color) 0%, var(--end-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.decor-ring.mask::after {
  content: "";
  background: white;
  width: 87%;
  height: 87%;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.decor-ring.mask:hover::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.decor-ring.mask > div,
.decor-ring.mask > .img-wrapper {
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  overflow: hidden;
  height: 80%;
  border-radius: 50%;
  z-index: 2;
}
.decor-ring.mask > div .simpleParallax,
.decor-ring.mask > .img-wrapper .simpleParallax {
  height: 100%;
}
.decor-ring.mask > div .simpleParallax img,
.decor-ring.mask > .img-wrapper .simpleParallax img {
  max-width: 100%;
}

.bg-decor-ring {
  position: absolute;
  width: 150vw;
  right: 5vw;
  z-index: -1;
  pointer-events: none;
}

/* ===========================
   Text
=========================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: normal;
}

.display-1 {
  margin-bottom: 0.5em;
  line-height: 1em;
}

p {
  line-height: 1.6em;
  font-size: 1.2em;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: underline;
}

.ls-tiny {
  letter-spacing: -0.02em;
}

.ls-sm {
  letter-spacing: 0.05em;
}

.ls-1 {
  letter-spacing: 0.1em;
}

.ls-2 {
  letter-spacing: 0.2em;
}

.text-color {
  color: var(--color-2) !important;
}

.text-grey {
  color: var(--grey) !important;
}

.text-color-2 {
  color: var(--color-1) !important;
}

.larger {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.625rem);
}

.underline {
  text-decoration: underline !important;
  cursor: pointer;
}

.text-sp {
  font-family: var(--sp-font) !important;
}

.text-normal {
  font-family: var(--b-font) !important;
}

.entry-content {
  position: relative;
  z-index: 1;
}

/* ===========================
    Buttons    
=========================== */
.dot-buttons {
  display: flex;
  justify-content: space-between;
  align-items: bottom;
  position: relative;
}
@media (max-width: 991.98px) {
  .dot-buttons {
    flex-direction: column;
  }
}
.dot-buttons > a {
  flex: 1;
  margin-right: 1%;
  color: inherit;
  display: flex;
  align-items: flex-end;
  position: relative;
  border-bottom: 5px solid #8D8D8D;
  padding: 0.5em 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .dot-buttons > a {
    margin-right: 0;
    width: 100%;
    border-bottom-width: 2px;
  }
}
.dot-buttons > a:last-of-type {
  margin-right: 0;
}
.dot-buttons > a span {
  display: inline-block;
}
.dot-buttons > a.active, .dot-buttons > a:hover {
  border-color: var(--color-1);
}
.dot-buttons > a.active::after, .dot-buttons > a:hover::after {
  opacity: 1;
}
.dot-buttons > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-bottom: 0.5em;
  background: var(--color-1);
  box-shadow: 0px 0px 7px 1px var(--color-1);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.btn.btn-arrow,
.wp-block-button.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  margin-bottom: 0;
}
.btn.btn-arrow a:after,
.wp-block-button.btn-arrow a:after {
  content: "";
  display: inline-block;
  background-color: var(--main-color);
  border-radius: 50%;
  background-image: url(img/icon-arrow.svg);
  height: 1.5em;
  width: 1.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-size: 50%;
  aspect-ratio: 1/1;
  margin-left: 0.5em;
  margin-top: -0.25em;
}
.btn.btn-arrow.white,
.wp-block-button.btn-arrow.white {
  color: white;
}
.btn.btn-arrow.white::after,
.wp-block-button.btn-arrow.white::after {
  background-color: #000;
  filter: invert(1);
}
.btn.btn-arrow a,
.wp-block-button.btn-arrow a {
  padding: 0;
  background: none;
  color: inherit;
  font-weight: 500;
}

/* ===========================
   Nav
=========================== */
header {
  position: fixed;
  width: 100vw;
  padding-right: 15px;
  left: 0;
  top: 0;
  z-index: 1024;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
header::after {
  content: "";
  display: block;
  height: 0;
}
@media (max-width: 991.98px) {
  header::after {
    display: none;
  }
}
header .no-link,
header .no-link > a {
  cursor: default;
}
header .current-menu-item > a,
header .current-menu-parent > a {
  text-decoration: underline;
}
header .line {
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  background: var(--color-2);
  bottom: 50px;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  max-width: 1460px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1279.98px) {
  header .line {
    display: none;
  }
}
header .menu-description {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3 ease-in-out;
  position: absolute;
  bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-style: italic;
  border-top: 1px solid rgb(70, 70, 70);
}
header::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/header-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
header::after {
  height: 0;
  transition: height 0.3s ease-in-out;
}
header.show-sub-nav {
  background: #000;
}
header.show-sub-nav .menu-description {
  opacity: 1;
}
header.show-sub-nav .line {
  opacity: 1;
}
header.show-sub-nav.show-bg::before {
  transform: translate(-50%, 0);
}
header.show-sub-nav::after {
  height: 350px;
}
header.active {
  background: black;
}
header .site-logo {
  left: 0;
  z-index: 9999;
}
header .site-logo > img {
  max-width: 122px;
  height: auto;
}
@media (max-width: 1279.98px) {
  header .site-logo > img {
    max-width: 80px;
  }
}
header .site-logo .logo-dark {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
header .main-nav {
  height: 100px;
  position: relative;
}
header .main-nav.active .menu {
  transform: translateX(0);
}
header .main-nav .contact {
  z-index: 9999;
}
@media (max-width: 767.98px) {
  header .main-nav .contact img {
    width: 40px;
  }
  header .main-nav .contact span {
    display: none;
  }
}
header .main-nav .nav-wrapper {
  width: 100vw;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 0;
  height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}
header .main-nav .nav-wrapper.active {
  opacity: 1;
  pointer-events: all;
}
header .main-nav .nav-wrapper a:hover {
  text-decoration: none;
}
header .main-nav .nav-wrapper .content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
@media (max-width: 575.98px) {
  header .main-nav .nav-wrapper .content {
    font-size: 0.75em;
  }
}
header .main-nav .nav-wrapper .content.active {
  max-height: 100vh;
  transition: max-height 0.2s ease-in-out;
}
header .main-nav .nav-wrapper .social-icons {
  max-width: unset;
  width: 100vw;
}
header .main-nav .nav-wrapper .menu-main-container {
  transition: all 0.3s ease-in-out;
}
header .main-nav .nav-wrapper.show-mobile-footer .menu-main-container {
  margin-bottom: 50%;
}
@media (max-width: 575.98px) {
  header .main-nav .nav-wrapper.show-mobile-footer .menu-main-container {
    margin-bottom: 60%;
  }
}
header .main-nav .nav-wrapper.show-mobile-footer .nav-footer-dots {
  bottom: 40%;
}
@media (max-width: 575.98px) {
  header .main-nav .nav-wrapper.show-mobile-footer .nav-footer-dots {
    bottom: 47%;
  }
  header .main-nav .nav-wrapper.show-mobile-footer .nav-footer-dots > div {
    width: 0.7rem;
    height: 0.7rem;
  }
}
header .main-nav .nav-wrapper .toggle-content {
  display: flex;
  margin-bottom: 1em;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
header .main-nav .nav-wrapper .toggle-content::after {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  margin-left: 1em;
  background-image: url(img/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
}
header .main-nav .nav-wrapper .toggle-content.active::after {
  transform: rotate(180deg);
}
header .main-nav .nav-wrapper .mobile-footer {
  position: absolute;
  bottom: 0;
  flex-direction: column;
  color: white;
  padding-bottom: 2em;
}
header .main-nav .menu {
  position: relative;
  z-index: 98;
}
@media (max-width: 991.98px) {
  header .main-nav .menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    flex-direction: column;
    background: #000;
    justify-content: center;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
}
header .main-nav .menu-item.blue a:hover {
  color: var(--blue);
}
header .main-nav .menu-item.orange a:hover {
  color: var(--orange);
}
header .main-nav .menu-item.red a:hover {
  color: var(--red);
}
header .main-nav .menu-item.yellow a:hover {
  color: var(--yellow);
}
header .main-nav .decor-ring-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.6s ease, left 0.6s ease;
}
header .main-nav .decor-ring {
  --size: 110vh;
  animation: spin 6s linear infinite;
  opacity: 0.5;
  transition: all 0.5s ease-in-out, --start-color 0.5s ease, --end-color 0.5s ease;
}
header .main-nav .decor-ring.focus {
  opacity: 1;
  --size: 40vh;
}
header .main-nav .decor-ring::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: black;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .main-nav .nav-footer-dots {
  display: flex;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 420px;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
header .main-nav .nav-footer-dots > div {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
}
header .main-nav .nav-footer-dots > div.active {
  transform: translateY(-100%);
}
header .main-nav .nav-footer-dots > div.blue {
  border-color: var(--blue);
}
header .main-nav .nav-footer-dots > div.red {
  border-color: var(--red);
}
header .main-nav .nav-footer-dots > div.yellow {
  border-color: var(--yellow);
}
header .main-nav .nav-footer-dots > div.orange {
  border-color: var(--orange);
}
@media (max-width: 1279.98px) {
  header .main-nav {
    height: 80px;
    width: 100%;
    display: flex;
  }
  header .main-nav .nav-wrapper {
    width: 100vw;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  header .main-nav .nav-wrapper.active {
    opacity: 1;
    pointer-events: inherit;
    transition: all 0.3s ease-in-out;
  }
  header .main-nav .menu-menu-1-container {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-1);
    display: flex;
    align-items: center;
    padding-bottom: 200px;
  }
  header .main-nav .menu-menu-1-container > ul {
    flex-direction: column;
    font-size: 20px;
    width: 100%;
  }
  header .main-nav .menu-menu-1-container > ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  header .main-nav .menu-menu-1-container > ul li a {
    display: block;
    width: 100%;
  }
}
header .top-nav {
  width: 100%;
  height: 40px;
  background-color: var(--color-1);
}
header nav .menu-description {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-2);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
}
header nav .menu-description.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767.98px) {
  header nav .menu-description {
    display: none;
  }
}
header nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
header nav a:hover {
  color: white;
}
header nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
  align-items: center;
  width: 100%;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
}
header nav ul li {
  padding: 0 1em;
  line-height: 3em;
  color: white;
}
@media (max-width: 991.98px) {
  header nav ul li {
    padding: 0;
    line-height: 2em;
    width: 100%;
    padding: 0 40px;
    flex-direction: column;
    margin-bottom: 2em;
  }
  header nav ul li a {
    width: 100%;
    display: block;
    font-size: clamp(1rem, 3vw, 2rem);
  }
}
header nav ul li:last-of-type {
  padding-right: 0;
}
header .menu-item-has-children,
header .has-dropdown {
  position: relative;
  margin-right: 1em;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  header .menu-item-has-children,
  header .has-dropdown {
    margin-right: 0;
  }
}
header .menu-item-has-children > a .dropdown-toggle,
header .has-dropdown > a .dropdown-toggle {
  display: inline-block;
  margin-left: 0.5em;
  width: 0.8em;
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  header .menu-item-has-children > a .dropdown-toggle,
  header .has-dropdown > a .dropdown-toggle {
    display: none;
  }
}
header .menu-item-has-children:hover > a .dropdown-toggle, header .menu-item-has-children.show-sub > a .dropdown-toggle,
header .has-dropdown:hover > a .dropdown-toggle,
header .has-dropdown.show-sub > a .dropdown-toggle {
  transform: rotate(90deg);
}
header .menu-item-has-children.show-sub > ul.sub-menu,
header .has-dropdown.show-sub > ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: inherit !important;
}
@media (max-width: 1279.98px) {
  header .menu-item-has-children.show-sub > ul.sub-menu,
  header .has-dropdown.show-sub > ul.sub-menu {
    max-height: 1000px;
    pointer-events: all;
  }
}
header .menu > li > a {
  font-weight: 500;
}
header .menu > li .sub-menu {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  font-weight: 300;
  z-index: 1000;
  padding-top: 0.5rem;
  padding-bottom: 3em;
  min-height: 17em;
  pointer-events: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  font-size: 1.5em;
  min-width: 480px;
  text-align: left;
  align-items: flex-start;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
header .menu > li .sub-menu li {
  position: relative;
  padding-right: 1.5em;
  line-height: 1em;
  padding-left: calc(var(--bs-gutter-x) * 0.25);
  margin-bottom: 0.5em;
}
header .menu > li .sub-menu li a {
  text-transform: none;
  letter-spacing: 0.01em;
  text-decoration: none;
}
header .menu > li .sub-menu li a:hover {
  text-decoration: none;
}
header .menu > li .sub-menu li:hover::after {
  opacity: 1;
}
header .menu > li .sub-menu li::after {
  content: "";
  display: block;
  background-image: url(img/icon-arrow-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.875em;
  height: 0.875em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
header .menu > li .sub-menu li.has-dropdown > .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 2em;
  min-height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header .menu > li .sub-menu li.has-dropdown:hover > .sub-menu, header .menu > li .sub-menu li.has-dropdown.show-sub > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (max-width: 1279.98px) {
  header .menu > li .sub-menu li.has-dropdown:hover > .sub-menu, header .menu > li .sub-menu li.has-dropdown.show-sub > .sub-menu {
    max-height: 500px;
  }
}
header .menu > li .sub-menu li.has-dropdown .sub-menu li.has-dropdown > .sub-menu {
  left: 100%;
  top: 0;
}
@media (max-width: 1279.98px) {
  header .menu > li .sub-menu li.has-dropdown .sub-menu li.has-dropdown > .sub-menu {
    left: 0;
    padding-left: 1em;
  }
}
@media (max-width: 991.98px) {
  header .menu > li .sub-menu {
    display: none;
  }
  header .menu > li .sub-menu li {
    font-family: var(--body-font);
    margin-bottom: 0.5em;
  }
  header .menu > li .sub-menu li a {
    font-size: 1em;
  }
}
@media (max-width: 1279.98px) {
  header .menu-desktop-menu-container {
    display: none !important;
  }
}
header .menu-mobile-menu-container {
  display: none !important;
  height: 100%;
  z-index: 999;
}
@media (max-width: 1279.98px) {
  header .menu-mobile-menu-container {
    display: flex !important;
  }
}
header .menu-mobile-menu-container #menu-mobile-menu {
  flex-direction: column;
  justify-content: center;
}
header .menu-mobile-menu-container #menu-mobile-menu li:last-of-type {
  padding-right: 1em !important;
}
header .menu-mobile-menu-container a {
  color: var(--color-2) !important;
  font-size: 3vw;
  display: block;
  margin-bottom: 1em;
}
@media (max-width: 991.98px) {
  header .menu-mobile-menu-container a {
    font-size: 5vw;
    margin-bottom: 0.5em;
  }
}

.hamburger {
  position: fixed;
  right: 20px;
  width: 19px;
  height: 13px;
  z-index: 99;
  display: block;
}
.hamburger span {
  background: white;
  position: absolute;
  height: 2px;
  border-radius: 0;
  width: 100%;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 6px;
}
.hamburger span:nth-child(4) {
  top: 12px;
}
.hamburger.active span {
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.hamburger.active span:nth-child(1), .hamburger.active span:nth-child(4) {
  opacity: 0;
}
.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}
.hamburger.active:before {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 56.25vw;
  background-color: var(--color-bg);
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 100vw;
  }
}
.hero .category-name {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: white;
  padding-bottom: 0.75rem;
  border-bottom: 5px solid var(--color-1);
  font-size: 1.125em;
}
.hero .category-name > span {
  display: inline-flex;
  align-items: center;
}
.hero .category-name > span::after {
  content: "";
  margin-left: 0.5em;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--color-1);
  box-shadow: 0px 0px 7px 1px var(--color-1);
}
.hero.darken-hero-bg {
  background: #000;
}
.hero.darken-hero-bg .bg {
  opacity: 0.5;
}
.hero .bg {
  width: 100%;
  height: 56.25vw;
  object-fit: cover;
  object-position: center;
  min-height: 700px;
}
.hero iframe {
  background: var(--color-bg);
  height: 56.25vw;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 1279.98px) {
  .hero iframe {
    height: 100vw;
    margin-top: -20vw;
    width: 178vw;
    margin-left: -39vw;
  }
}
@media (max-width: 991.98px) {
  .hero iframe {
    margin-top: 0vw;
  }
}
.hero .caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .caption .page-title {
  font-family: var(--body-font) !important;
  font-size: 1.25rem;
  position: relative;
}
.hero .caption .page-title::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  margin-top: -0.25em;
  background: var(--color-1);
  border-radius: 50%;
  box-shadow: 0px 0px 7px 1px var(--color-1);
}
.hero .caption h2, .hero .caption .h2 {
  font-size: clamp(2.5rem, 5.25vw, 6.25em);
}
.hero .learnmore {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  max-width: 136px;
  width: 20vw;
}
.hero .learnmore img {
  width: 100%;
}
.hero .buttons-wrapper {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 40px;
  color: white;
}
.hero .buttons-wrapper .dot-buttons {
  position: relative;
  width: 100%;
}
/* ===========================
   Other
=========================== */
.section-title {
  font-family: var(--body-font) !important;
  font-size: 1rem !important;
  font-weight: 600;
  text-transform: uppercase;
}

.keep-height {
  min-height: 150vh;
  height: auto !important;
}

.arrow-down {
  width: 2em;
  height: 2em;
  display: block;
  background-image: url(img/arrow-down-o.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.has-bg {
  background-size: contain;
  background-repeat: no-repeat;
}
.has-bg.bottom {
  background-position: center bottom;
}
@media (max-width: 991.98px) {
  .has-bg {
    min-height: 700px;
  }
}

.bg-blue {
  background: var(--color-2);
}

.bg-color {
  background: var(--color-bg) !important;
}

.bg-white {
  background: white;
}
.bg-white * {
  color: black;
}

hr,
hr.wp-block-separator {
  border: none;
  border-bottom: 1px solid var(--grey);
  opacity: 1;
}
hr.medium,
hr.wp-block-separator.medium {
  border-width: 5px;
}
hr.thick,
hr.wp-block-separator.thick {
  border-width: 10px;
}
hr.blue,
hr.wp-block-separator.blue {
  border-color: var(--color-2);
  border-width: 2px;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

/* ===========================
   Featured Projects
=========================== */
.featured-projects {
  min-height: 80vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: -15%;
}
@media (max-width: 991.98px) {
  .featured-projects {
    margin-bottom: 3rem;
  }
}
.featured-projects::after {
  content: "";
  display: block;
  width: 110vw;
  aspect-ratio: 1/1;
  background-image: url(img/ring.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: transform 1s ease-in-out;
}
@media (max-width: 767.98px) {
  .featured-projects::after {
    width: 130vw;
    opacity: 0.4;
  }
}
@media (max-width: 575.98px) {
  .featured-projects::after {
    width: 200vw;
    opacity: 0.4;
  }
}
.featured-projects:hover::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.featured-projects.about::after {
  transform: translate(-50%, -80%);
  width: 140vw;
  left: 0;
}
.featured-projects .overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3em;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .featured-projects .overlay {
    padding: 1.5em;
  }
}
.featured-projects .overlay * {
  position: relative;
  z-index: 1;
}
.featured-projects .overlay::after {
  content: "";
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(171deg, rgb(25, 76, 117) 15%, rgba(22, 72, 112, 0) 100%);
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.featured-projects .swiper-slide:hover .overlay::after {
  opacity: 0.8;
  background-color: var(--color-1);
  mix-blend-mode: multiply;
}
.featured-projects a.link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
}
.featured-projects img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
/* ===========================
   Read more
=========================== */
.read-more-wrapper.active .read-more {
  transform: translate(-50%, -50%) rotate(180deg);
}
.read-more-wrapper.active::after {
  opacity: 1;
  transition-delay: 0s;
}
.read-more-wrapper.active .more {
  opacity: 1;
  transition-delay: 0.3s;
}
.read-more-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-1);
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}
.read-more-wrapper > img {
  position: relative;
  z-index: 0;
}
.read-more-wrapper .read-more {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.read-more-wrapper .more {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0;
}

/* ===========================
   Footer
=========================== */
footer {
  background: black;
  color: white;
  border-top: 1px solid var(--grey);
}
footer a {
  color: white;
  font-weight: 300;
}
footer .logo {
  max-width: 187px;
  display: block;
}
footer .social-icons img {
  height: 1.5em;
  width: 1.5em;
  object-fit: contain;
}
footer strong {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 2em;
}
footer strong a {
  font-size: inherit;
}

#footer-menu {
  width: 100%;
}
#footer-menu > li {
  flex: 1 1 auto;
  text-transform: uppercase;
  position: relative;
}
#footer-menu > li::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
}
#footer-menu > li:last-of-type::after {
  display: none;
}
#footer-menu > li ul {
  margin-top: 1em;
  text-transform: none;
  list-style: none;
  padding-left: 0;
}
.f-nav .orange {
  --main-color: var(--orange);
}
.f-nav .red {
  --main-color: var(--red);
}
.f-nav .blue {
  --main-color: var(--blue);
}
.f-nav .yellow {
  --main-color: var(--yellow);
}
.f-nav a span {
  color: var(--main-color);
}

/* ===========================
   Accordion
=========================== */
#why .accordion-toggle:hover::after {
  background-color: var(--color-1);
}

.custom-accordion {
  overflow: hidden;
}

.accordion-toggle,
.accordion-header {
  background: transparent;
  padding: 1rem 0;
  padding-left: 2.5em;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  position: relative;
  border: none;
}
.accordion-toggle .accordion-button,
.accordion-header .accordion-button {
  padding: 0;
  font-size: 1.5em;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  color: inherit;
  position: unset;
}
.accordion-toggle .accordion-button::after,
.accordion-header .accordion-button::after {
  content: "";
  text-align: center;
  color: white;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  position: absolute;
  background: black;
  background-size: contain;
  background-image: url(img/icon-plus.svg);
  left: 0;
  top: 1rem;
  transform: translateY(0) rotate(45deg);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.accordion-toggle .accordion-button.collapsed::after,
.accordion-header .accordion-button.collapsed::after {
  transform: translateY(0) rotate(0deg);
}
.accordion-toggle > *,
.accordion-header > * {
  margin-bottom: 0 !important;
}
.accordion-toggle:hover::after,
.accordion-header:hover::after {
  background-color: var(--color-2);
}

.accordion-item {
  margin-bottom: 1em;
  position: relative;
  overflow: hidden;
  border: none;
}
.accordion-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--grey);
  position: absolute;
  left: 2.5rem;
  bottom: 0;
}
.accordion-item .accordion-body {
  padding-left: 2.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
  padding: 1em 0 3em;
  max-height: 100vh;
}
@media (max-width: 767.98px) {
  .accordion-content.open {
    max-height: 200vh;
  }
}

/* ===========================
   Parallax Text
=========================== */
.parallax-text-wrapper {
  height: 100vw;
  display: flex;
  flex-direction: column;
}
.parallax-text-wrapper .parallax-container {
  position: relative;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.parallax-text {
  font-size: clamp(5rem, 12.864583vw + 1rem, 15.4375rem);
  color: var(--color-2);
  white-space: nowrap;
  will-change: transform;
  font-family: var(--sp-font);
}
.parallax-text span {
  padding-bottom: 0.1em;
}

/* ===========================
   Feature Slider
=========================== */
#featured-projects-slider {
  position: relative;
  z-index: 1;
}
#featured-projects-slider .project-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
#featured-projects-slider .project-slide a {
  width: 100%;
}
#featured-projects-slider .project-slide .project-image {
  width: 50%;
  transition: width 0.3s ease-in-out;
  min-height: 30vw;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  #featured-projects-slider .project-slide .project-image {
    width: 90%;
  }
}
#featured-projects-slider .project-slide.is-active {
  opacity: 1;
}
#featured-projects-slider .project-slide.is-active .project-image {
  width: 100%;
}
#featured-projects-slider .project-slide.is-active .project-content {
  opacity: 1;
}
#featured-projects-slider .project-slide .project-content {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 400px;
  letter-spacing: 0.1em;
}
#featured-projects-slider .splide__pagination {
  position: relative;
  transform: none;
  bottom: unset;
  margin-top: 0.5em;
  display: flex;
}
#featured-projects-slider .splide__pagination__page {
  background: none;
  margin: 0 0.5em;
  border-radius: 0;
  height: 100%;
  padding-bottom: 0.4em;
  width: 1em;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  color: var(--grey);
}
#featured-projects-slider .splide__pagination__page.is-active {
  transform: none;
  border-color: var(--grey);
}
#featured-projects-slider .splide__arrows {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 32px;
}
#featured-projects-slider .splide__arrow {
  background-image: url(img/slider-arrow-c.svg);
  background-color: transparent;
  background-size: contain;
}
#featured-projects-slider .splide__arrow--next,
#featured-projects-slider .splide__arrow--prev {
  position: relative;
  top: unset;
  transform: none;
  margin-right: 1em;
}
#featured-projects-slider .splide__arrow--next {
  transform: rotate(180deg);
  margin-left: 1em;
  margin-right: 0;
}

.case-study #featured-projects-slider .project-content {
  order: 1;
  margin-bottom: 40px;
}
.case-study #featured-projects-slider .py-lg-5 {
  display: none;
}
.case-study #featured-projects-slider .project-image {
  order: 3;
}
.case-study #featured-projects-slider .splide__arrows {
  bottom: 0 !important;
}

/* ===========================
   Building
=========================== */
#building {
  background-image: url(img/building-bg.jpg);
  background-size: auto 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 50vw;
  display: flex;
  align-items: center;
  max-height: 886px;
  position: relative;
}
@media (max-width: 991.98px) {
  #building {
    height: 100vw;
    background-size: 50% auto;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  #building {
    background-size: 80% auto;
    background-position: 120% 130%;
  }
  #building::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 0;
    opacity: 0.7;
  }
}
#building .container {
  position: relative;
  z-index: 1;
}
#building .icon {
  width: 2em;
}

#obenGroup .accordion-toggle {
  padding: 3rem 0;
}
#obenGroup .accordion-toggle:hover::after {
  background-color: transparent;
}
#obenGroup .accordion-toggle::after {
  background-image: url(img/Icon-ion-ios-plus-outline.png);
  height: 1em;
  width: 1em;
}
#obenGroup .accordion-toggle.active::after {
  transform: translateY(-50%) rotate(45deg);
  border: none !important;
}
#obenGroup .accordion-content {
  transition: all 0.3s ease-in-out;
}
#obenGroup .accordion-content.open {
  padding-top: 0;
  padding-bottom: 3rem;
}
#obenGroup .accordion-content::before {
  content: "";
  display: block;
  width: 100%;
  margin-bottom: 3rem;
  border-top: 5px solid var(--color-1);
}

/* ===========================
   Project Slider
=========================== */
.project-slider {
  overflow: hidden !important;
  max-width: 100%;
  margin: 0 auto;
}
.project-slider .swiper-slide-next,
.project-slider .swiper-slide-prev {
  opacity: 0.3;
}
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
  width: 10vw;
  height: 100%;
  top: 0;
  margin-top: 0;
  display: none;
}
.project-slider .swiper-button-next:after,
.project-slider .swiper-button-prev:after {
  display: none;
}

.categories {
  color: var(--color-2);
  display: inline-block;
}
.categories:after {
  content: "";
  margin-left: 0.5em;
  margin-bottom: 0.2em;
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  border-radius: 50%;
  background: var(--color-1);
  box-shadow: 0px 0px 7px 1px var(--color-1);
}

.isotope-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.isotope-grid::after {
  content: "";
  display: block;
  clear: both;
}

.project {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
.project.show {
  max-height: 100vh;
}

.article-thumb {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===========================
   Single
=========================== */
.single p {
  margin-bottom: 5em;
}

/* ===========================
   Contact
=========================== */
.page-template-page-contact .bg {
  min-height: 1000px;
}

/* ===========================
   Gravity Form
=========================== */
.gform_confirmation_wrapper {
  text-align: center;
}

.gform_confirmation_message {
  margin-top: 4em;
}

.gform_wrapper.gravity-theme {
  --main-color: black;
}

.gform_wrapper.gravity-theme.color_wrapper {
  --main-color: #555;
}

.gform_wrapper.gravity-theme.color_wrapper input[type=checkbox]:checked + .gfield_consent_label::before {
  filter: invert(1);
}

.gform_wrapper.gravity-theme input,
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select {
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  font-size: 1em !important;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  letter-spacing: 0.1em;
  border-radius: 0;
}
.gform_wrapper.gravity-theme input::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder,
.gform_wrapper.gravity-theme select::placeholder {
  color: var(--main-color);
}

.gform_wrapper.gravity-theme .gfield_label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gform_wrapper.gravity-theme input[type=checkbox] {
  display: none;
}

.gform_validation_errors,
.gfield_validation_message,
.validation_message {
  display: none !important;
}

/* Style the label that comes after the checkbox */
.gfield_consent_label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  line-height: 24px;
  color: var(--main-color);
}
.gfield_consent_label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--main-color);
  background: transparent;
  border-radius: 50%; /* Makes it a circle */
  transition: all 0.2s ease-in-out;
}

/* Checked state: blue filled circle with checkmark */
input[type=checkbox]:checked + .gfield_consent_label::before {
  background-color: transparent;
  border-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4 8L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  filter: invert(1);
}

.ginput_container_fileupload input {
  cursor: pointer;
  font-size: 1em;
  line-height: 2em !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  background-image: url("../img/icon-upload.svg") !important;
  background-size: auto 50% !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
}

.gform_required_legend {
  display: none;
}

.gform_wrapper.gravity-theme input[type=submit] {
  background: var(--blue-2);
  color: white;
  border-bottom: none;
  padding: 0 2em;
  line-height: 3.4em;
  background: black;
  letter-spacing: normal;
  border: 1px solid black;
}
.gform_wrapper.gravity-theme input[type=submit]:hover {
  background: white;
  color: black;
}

.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer {
  display: flex;
  justify-content: flex-end;
}

.gform_wrapper.gravity-theme .gfield_required {
  color: var(--main-color) !important;
  display: none;
}

.page-template-page-care .hero .bg {
  object-position: center right;
}

.date {
  color: #707070;
  font-weight: 500;
}

/* ===========================
   Footer CTA
=========================== */
.decor-wrapper {
  aspect-ratio: 3/1;
  display: flex;
  align-items: flex-end;
}

.mask-container {
  position: relative;
  width: 120vw;
  margin-left: -10vw;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 100%;
}

/* Stack slices vertically */
.slice {
  width: 100%;
  height: var(--h);
  background-image: url("img/footer-sample.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: max-height 1.5s linear, opacity 1.5s ease-in-out, transform 0.3s ease-in-out;
}
.slice:nth-of-type(1) {
  height: 20%;
  transition-delay: 0.75s;
}
.slice:nth-of-type(2) {
  height: 30%;
  transition-delay: 1s;
}
.slice:nth-of-type(3) {
  height: 45%;
  transition-delay: 1.25s;
}
.slice:nth-of-type(4) {
  height: 65%;
  transition-delay: 1.5s;
}
.slice:nth-of-type(5) {
  height: 90%;
  transition-delay: 1.75s;
}

[data-aos=one-by-one].aos-init .slice {
  opacity: 0;
  max-height: 0;
}
[data-aos=one-by-one].aos-animate .slice {
  opacity: 1;
  max-height: 100%;
}

#footerCTA {
  height: 80vw;
  max-height: 700px;
  margin-bottom: 0;
  position: relative;
  background-color: black;
  display: flex;
  align-items: center;
  background-image: var(--bg-img, url(img/home/cta.jpg));
  background-size: cover;
}
@media (max-width: 767.98px) {
  #footerCTA {
    max-height: unset;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
  }
}
#footerCTA::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media (max-width: 767.98px) {
  #footerCTA::after {
    bottom: unset;
    top: 0;
    height: 100%;
  }
}
#footerCTA .container {
  position: relative;
  z-index: 2;
}
#footerCTA .decor-ring {
  border: 1px solid white;
}
#footerCTA .decor-ring.mask > .img-wrapper {
  width: 82%;
  height: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footerCTA .decor-ring.mask > .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#footerCTA .decor-ring.mask > .img-wrapper img.logo {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
#footerCTA .decor-ring.mask::after {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid white;
}

/* ===========================
   AOS reset
=========================== */
#building [data-aos=fade-left] {
  transform: translate3d(20px, 0, 0);
}
#building [data-aos=fade-left].aos-animate {
  transform: translate3d(0, 0, 0);
}

/* ===========================
   Animation
=========================== */
@keyframes spin {
  from {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  to {
    transform: rotate(360deg); /* Rotate to a full circle (360 degrees) */
  }
}
/* ===========================
   Page Hero
=========================== */
section.page-hero {
  height: 100vh;
  max-height: 56.25vw;
  background: black;
  overflow: hidden;
  position: relative;
  --circle-size: 62vw;
  z-index: 50;
}
@media (max-width: 1919.98px) {
  section.page-hero {
    --circle-size: 82vw;
  }
}
@media (max-width: 991.98px) {
  section.page-hero {
    --circle-size: 120vw;
    min-height: 120vw;
  }
}
@media (max-width: 767.98px) {
  section.page-hero {
    min-height: 150vw;
    --circle-size: 140vw;
  }
}
section.page-hero .logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8vw;
  min-width: 250px;
  max-width: 316px;
  z-index: 12;
}
@media (max-width: 991.98px) {
  section.page-hero .logo {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30vw;
    min-width: 200px;
  }
}
section.page-hero .bg-circle {
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  width: var(--circle-size);
  background-color: #fff;
  left: 45vw;
  border-radius: 50%;
  top: calc(-1 * (var(--circle-size) - 56.25vw) * 0.5);
  background-position: center;
  background-size: cover;
}
@media (max-width: 1919.98px) {
  section.page-hero .bg-circle {
    left: 33vw;
  }
}
@media (max-width: 991.98px) {
  section.page-hero .bg-circle {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
section.page-hero .circle {
  --size: 40vw;
  background-color: black;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  z-index: 9;
  position: absolute;
  left: calc(45vw + var(--circle-size) / 2);
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/video-border-grey.png);
  background-size: contain;
}
@media (max-width: 1919.98px) {
  section.page-hero .circle {
    left: calc(33vw + var(--circle-size) / 2);
  }
}
@media (max-width: 991.98px) {
  section.page-hero .circle {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    --size: 60vw;
  }
}
@media (max-width: 767.98px) {
  section.page-hero .circle {
    --size: 90vw;
  }
}
section.page-hero .circle .mask {
  width: 82%;
  height: 82%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
}
section.page-hero .circle .mask img,
section.page-hero .circle .mask iframe {
  width: 100%;
  height: 100%;
}

/* ===========================
   Projects
=========================== */
.projects .item {
  display: flex;
  flex-direction: column;
}
.projects .item h3 {
  height: 2.2em;
  margin: 1rem 0;
}
.projects .item .thumbnail {
  padding-bottom: 100%;
  position: relative;
  display: block;
  position: relative;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.projects .item .thumbnail .arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.projects .item .thumbnail::before, .projects .item .thumbnail::after {
  content: "";
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 104%;
  height: 104%;
  border-radius: 50%;
  position: absolute;
  border: 0px solid #EDEDED;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
.projects .item .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects .item .project-address {
  border-top: 1px solid var(--grey);
  padding: 1em 0;
}
.projects .item:hover .thumbnail {
  border-radius: 50%;
}
.projects .item:hover .thumbnail .arrow {
  opacity: 1;
}
.projects .item:hover .thumbnail::before {
  border-width: 50px;
  border-color: white;
}
.projects .item:hover .thumbnail::after {
  border-width: 40px;
}

.project-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  width: 24%;
  cursor: pointer;
  font-size: 1.25em;
  border-bottom: 1px solid #F0EFED;
  color: #9E9FA7;
}
.filter-btn:hover {
  text-decoration: none;
  color: black;
}
.filter-btn.active {
  color: black;
  border-bottom: 2px solid black;
}

.project-hero {
  position: relative;
}
.project-hero:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0.1;
}

/* ===========================
   Team
=========================== */
.team-col {
  transition: all 0.3s ease;
}

.toggle-bio {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(img/icon-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.team-member {
  cursor: pointer;
}
.team-member .toggle-bio {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.team-member img {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.team-member:hover .member-photo .toggle-bio {
  opacity: 1;
}
.team-member:hover .member-photo img {
  opacity: 0.5;
}
.team-member:hover .member-photo::before {
  transform: rotate(90deg);
}
.team-member:hover .member-photo::after {
  filter: brightness(0.9);
}

.team-member .member-bio {
  display: none;
}

.team-member.active .member-bio {
  display: block;
}

.team-col {
  transition: all 0.3s ease;
}

.addition-title {
  display: none;
}

#team {
  position: relative;
  z-index: 10;
}
#team .title,
#team .division {
  font-weight: 500;
  line-height: 1em;
  font-size: 0.85em;
  margin-bottom: 0.25em;
}
#team .title {
  max-width: 250px;
}
#team .info .title {
  margin: 1em auto;
}
#team .wrapper {
  width: 100%;
  text-align: center;
}
@media (max-width: 767.98px) {
  #team .wrapper {
    flex-direction: column;
  }
}
#team .member-photo {
  margin: auto;
}

#team .team-member.active {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #f9f9f9;
  padding-bottom: 2em;
}
#team .team-member.active .member-photo {
  margin-left: 0;
}
#team .team-member.active .info .title {
  margin-left: 0;
}
#team .team-member.active .wrapper {
  width: 100%;
  text-align: left;
  display: flex;
}
#team .team-member.active .info {
  width: 35%;
  padding-right: 2em;
}
@media (max-width: 767.98px) {
  #team .team-member.active .info {
    width: 100%;
  }
}
#team .team-member.active .member-bio {
  width: 65%;
}
@media (max-width: 767.98px) {
  #team .team-member.active .member-bio {
    width: 100%;
    margin-top: 3em;
  }
}
#team .team-member.active .member-photo {
  margin-right: 70%;
}
#team .team-member.active .member-photo img {
  opacity: 1 !important;
}
@media (max-width: 767.98px) {
  #team .team-member.active .member-photo {
    margin-right: 30%;
  }
}
#team .team-member.active .addition-title {
  display: block;
}
#team .team-member.active .toggle-bio {
  display: none;
}
#team .team-member.active .close {
  background-image: url(img/icon-close.svg);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.member-photo {
  width: 100%;
  max-width: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.member-photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 15px solid #EDEDED;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: filter 0.3s ease-in-out;
}
.member-photo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0) 50%);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}
.member-photo img {
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 4;
}

.team-member-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 1100;
}
.team-member-modal p {
  font-size: 1em;
  line-height: 1.2em;
}
.team-member-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.team-member-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.team-member-modal__dialog {
  position: relative;
  z-index: 2;
  background: white;
  color: black;
  width: min(960px, 90vw);
  max-height: 70vh;
  overflow-y: hidden;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.team-member-modal__figure {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.team-member-modal__image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 12px solid #EDEDED;
}
.team-member-modal__details {
  flex: 1;
  max-height: calc(90vh - 5rem);
  padding-right: 1rem;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-member-modal__title:empty, .team-member-modal__division:empty, .team-member-modal__addition:empty {
  display: none;
}
.team-member-modal__addition {
  font-style: italic;
  color: var(--grey);
}
.team-member-modal__bio {
  margin-top: 1.5rem;
  overflow-y: auto;
  max-height: calc(50vh - 10rem);
  padding-right: 0.5rem;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.team-member-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: black;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .team-member-modal__dialog {
    padding: 2rem;
    max-height: 80vh;
    padding-bottom: 5em;
    font-size: 2vw;
  }
  .team-member-modal__figure {
    flex: none;
  }
  .team-member-modal__image {
    width: 30vw;
    height: 30vw;
  }
  .team-member-modal__details {
    padding-right: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
  }
  .team-member-modal__title, .team-member-modal__division {
    margin-bottom: 0;
    font-size: 1em;
  }
  .team-member-modal__bio {
    max-height: 30vh;
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .team-member-modal__dialog {
    font-size: 3vw;
  }
  .team-member-modal__details {
    flex: none;
  }
}

body.team-modal-open {
  overflow: hidden;
}

/* ===========================
   Misc.
=========================== */
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
}

.page-numbers {
  width: 2em;
  margin: 0 0.5rem;
  text-align: center;
  color: var(--grey);
  opacity: 0.5;
}
.page-numbers:hover {
  text-decoration: none;
}
.page-numbers.current {
  opacity: 1;
  border-bottom: 1px solid var(--grey);
}
.page-numbers.prev, .page-numbers.next {
  margin: 0 1rem;
  font-size: 0;
  width: 30px;
  height: 30px;
  background-image: url(img/icon-arrow-c-o.svg);
  display: inline-block;
  background-size: contain;
  opacity: 1;
}
.page-numbers.prev {
  transform: rotate(180deg);
}

/* ===========================
   Contact
=========================== */
#contact .bg-decor-ring {
  position: absolute;
  left: 50%;
  top: 300px;
  transform: translateX(-50%);
  pointer-events: none;
  width: 100vw;
  max-width: 1760px;
  z-index: -1;
  opacity: 0.5;
}

.bg-decor-ring {
  position: absolute;
  left: 50%;
  top: -2vw;
  transform: translateX(-50%);
  pointer-events: none;
  width: 100vw;
  max-width: 1760px;
  z-index: 1;
}

.page-template-default {
  padding-top: 200px;
  background: black;
}

.page-template-page-contact header,
.page-template-default header {
  filter: brightness(1) invert(1);
}
.page-template-page-contact header::before,
.page-template-default header::before {
  display: none;
}
.page-template-page-contact header .hamburger.active,
.page-template-default header .hamburger.active {
  filter: none;
}
.page-template-page-contact header .main-nav.active .contact,
.page-template-default header .main-nav.active .contact {
  filter: none;
}

/* ===========================
   FAQ
=========================== */
#faq {
  background: #000;
}
#faq .circle {
  width: 40vw;
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  #faq .circle {
    width: 80vw;
    margin-top: -10px;
  }
}
#faq .bg-decor-ring {
  width: auto;
  height: 2100px;
  max-width: unset;
  top: 12vw;
  transform: translate(-50%, 0);
  z-index: 0;
  opacity: 0.7;
}
#faq .accordion-toggle .accordion-button::after, #faq .accordion-header .accordion-button::before {
  content: "";
  display: block;
  background: white;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border-radius: 50%;
  z-index: 9;
  left: 0;
  top: 1rem;
  opacity: 0.1;
}
#faq section {
  position: relative;
  z-index: 1;
}

body {
  --section-space-y: 5rem;
}

section {
  margin-top: var(--section-space-y);
  margin-bottom: var(--section-space-y);
}

.privacy-policy {
  background: white;
}
