:root {
  --fs-1000: clamp(2.25rem, 1.6731rem + 2.3077vw, 3.75rem);
  --fs-900: clamp(2rem, 1.5673rem + 1.7308vw, 3.125rem);
  --fs-800: clamp(1.25rem, 1.0096rem + 0.9615vw, 1.875rem);
  --fs-700: clamp(1.125rem, 1.0529rem + 0.2885vw, 1.3125rem);
  --fs-600: clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem);
  --fs-500: clamp(1rem, 0.9279rem + 0.2885vw, 1.1875rem);
  --fs-400: clamp(0.875rem, 0.8269rem + 0.1923vw, 1rem);
  --c-neutral-900: #221f20;
  --c-neutral-200: #f2f2f2;
  --c-neutral-100: #ffffff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  position: absolute !important;
  overflow: hidden;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  padding: 15px 23px 14px;
  display: block;
  height: auto;
  width: auto;
  left: 5px;
  top: 5px;
  z-index: 100000;
  color: #21759b;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
}

body {
  --header-height: 80px;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: var(--header-height);
}
@media (max-width: 767px) {
  body {
    --header-height: 60px;
  }
}

main {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  padding-inline: 20px;
  width: min(1220px, 100%);
}

html {
  font-family: var(--ff-primary, "DIN Pro", sans-serif);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--c-neutral-900, #221f20);
}

body {
  font-family: inherit;
  font-size: var(--fs-400, clamp(0.875rem, 0.8269rem + 0.1923vw, 1rem));
  line-height: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 25px;
  font-family: "EngschriftDIN-D", "DIN Pro", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }
}

h1 {
  font-size: var(--fs-1000, clamp(2.25rem, 1.6731rem + 2.3077vw, 3.75rem));
  line-height: 1.28;
}

h2 {
  font-size: var(--fs-900, clamp(2rem, 1.5673rem + 1.7308vw, 3.125rem));
  line-height: 1;
}

h3 {
  font-size: var(--fs-800, clamp(1.25rem, 1.0096rem + 0.9615vw, 1.875rem));
}

p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  p {
    margin-bottom: 20px;
  }
}

a {
  color: var(--c-neutral-900, #221f20);
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

b,
strong {
  font-weight: 700;
}

sup, sub {
  font-size: 0.75em;
  vertical-align: top;
}

.branding {
  flex: 0 0 auto;
  margin-right: -1px;
  position: relative;
}
.branding:before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 2;
  background-color: var(--c-neutral-100, #ffffff);
}
@media (max-width: 767px) {
  .branding__logo {
    width: auto;
    height: 60px;
  }
}

.nav {
  padding-right: 20px;
}
@media (max-width: 959px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  text-decoration: none;
}
.nav__link:hover, .nav__link:active {
  text-decoration: none;
}
.nav--primary .nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  width: min(1140px, 100%);
  position: relative;
}
@media (max-width: 1019px) {
  .nav--primary .nav__list {
    gap: 20px;
  }
}
@media (max-width: 959px) {
  .nav--primary .nav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 20px;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background-color: var(--c-neutral-900, #221f20);
    position: absolute;
    top: var(--header-height);
    right: -101%;
    z-index: 10;
    transition: 250ms all ease-in-out;
  }
}
@media (max-width: 959px) {
  .nav--primary .nav__list.is-visible {
    right: 0;
  }
}
@media (min-width: 960px) {
  .nav--primary .nav__item {
    height: 100%;
  }
}
.nav--primary .nav__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 5px;
  height: 100%;
  font-size: var(--fs-500, clamp(1rem, 0.9279rem + 0.2885vw, 1.1875rem));
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-neutral-100, #ffffff);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: 150ms all ease-in-out;
}
@media (max-width: 959px) {
  .nav--primary .nav__link {
    padding-inline: 0;
    border-width: 2px;
  }
}
.nav--primary .nav__link:hover, .nav--primary .nav__link:active {
  border-color: var(--c-neutral-100, #ffffff);
}
.nav--primary .nav__link--active {
  border-color: var(--c-neutral-100, #ffffff);
}
.nav--primary .nav__toggle {
  display: none;
  padding-inline: 4px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20;
  background: none;
  border: none;
}
@media (max-width: 959px) {
  .nav--primary .nav__toggle {
    display: block;
  }
}
.nav--primary .nav__toggle:after {
  content: url("../../assets/svg/ico-menu-toggle.svg");
  display: block;
  width: 30px;
  height: 26px;
}
.nav--primary .nav__toggle.is-expanded:after {
  content: url("../../assets/svg/ico-menu-togle-close.svg");
}
.nav--footer .nav__list {
  line-height: 1.5;
}

.social {
  display: flex;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  display: block;
  position: relative;
}
figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  padding-inline: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--c-neutral-100, #ffffff);
  background-color: var(--c-neutral-900, #221f20);
}

.tabs {
  padding-block: 60px;
}
@media (max-width: 767px) {
  .tabs {
    padding-block: 30px;
  }
}
.tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
  height: 84px;
  background-color: var(--c-neutral-200, #f2f2f2);
  list-style: none;
}
@media (max-width: 767px) {
  .tabs__nav {
    gap: 20px;
  }
}
@media (max-width: 679px) {
  .tabs__nav {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    height: unset;
  }
}
.tabs__nav li {
  height: 100%;
}
@media (max-width: 679px) {
  .tabs__nav li {
    flex-basis: 50%;
  }
}
.tabs__nav a {
  display: inline-flex;
  align-items: center;
  padding-inline: 16px;
  height: 100%;
  font-size: var(--fs-500, clamp(1rem, 0.9279rem + 0.2885vw, 1.1875rem));
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 7px solid transparent;
}
@media (max-width: 679px) {
  .tabs__nav a {
    display: grid;
    place-content: center;
    padding-inline: 10px;
    width: 100%;
    min-height: 50px;
    line-height: 1.25;
    text-align: center;
    border: 0;
  }
}
.tabs__nav a:hover, .tabs__nav a:active {
  border-color: var(--c-neutral-900, #221f20);
  text-decoration: none;
}
@media (max-width: 679px) {
  .tabs__nav a:hover, .tabs__nav a:active {
    color: var(--c-neutral-100, #ffffff);
    background-color: var(--c-neutral-900, #221f20);
  }
}
.tabs__nav a.is-active {
  border-color: var(--c-neutral-900, #221f20);
}
@media (max-width: 679px) {
  .tabs__nav a.is-active {
    color: var(--c-neutral-100, #ffffff);
    background-color: var(--c-neutral-900, #221f20);
  }
}
.tabs__panel {
  display: none;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .tabs__panel {
    padding-top: 30px;
  }
}
.tabs__panel.is-active {
  display: block;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--c-neutral-900, #221f20);
}
.header__nav {
  display: flex;
  margin-inline: auto;
  width: min(1440px, 100%);
}

.footer {
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: var(--c-neutral-200, #f2f2f2);
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 399px) {
  .footer__wrapper {
    grid-template-columns: 1fr;
  }
}
.footer__heading {
  margin-bottom: 15px;
  font-family: "DIN Pro", sans-serif;
  font-size: var(--fs-400, clamp(0.875rem, 0.8269rem + 0.1923vw, 1rem));
  text-transform: unset;
}
.footer__section p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer__section--contact {
    order: 2;
  }
}
@media (max-width: 767px) {
  .footer__section--social, .footer__section--investor {
    order: 3;
  }
}

.hero {
  display: flex;
  align-items: center;
  min-height: 988px;
  position: relative;
}
@media (max-width: 959px) {
  .hero {
    height: calc(100svh - var(--header-height));
    min-height: unset;
  }
}
.hero h2 {
  margin-bottom: 0;
  font-size: var(--fs-1000, clamp(2.25rem, 1.6731rem + 2.3077vw, 3.75rem));
  line-height: 1.28;
  color: var(--c-neutral-100, #ffffff);
  text-shadow: 0 4px 7px rgba(0, 0, 0, 0.75);
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
 #background: rgba(244, 242, 235, 0.39);
  mix-blend-mode: hard-light;
}
.hero__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  object-fit: cover;
}

.building {
  margin-top: 75px;
}
@media (max-width: 767px) {
  .building {
    margin-top: 30px;
  }
}
.building__content {
  display: grid;
  grid-template-columns: 1fr 480px;
  justify-content: space-between;
  gap: 156px;
}
@media (max-width: 1219px) {
  .building__content {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
@media (max-width: 1219px) {
  .building__content {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .building__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.building__section p:last-of-type {
  margin-bottom: 0;
}
.building__section + .building__section {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .building__section + .building__section {
    margin-top: 20px;
  }
}
.building__image {
  margin-top: -170px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}
@media (max-width: 1219px) {
  .building__image {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .building__image {
    margin-top: 0;
  }
}

.location__description {
  display: grid;
  grid-template-columns: 480px 480px;
  gap: 120px;
  padding-block: 70px 100px;
}
@media (max-width: 1119px) {
  .location__description {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 959px) {
  .location__description {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .location__description {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-block: 30px;
  }
}
.location__description .location__heading + p {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .location__description .location__heading + p {
    margin-top: 0;
  }
}
.location__description p:last-of-type {
  margin-bottom: 0;
}
.location__separator {
  margin-inline: auto;
  width: 100%;
  height: 425px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .location__separator {
    height: 200px;
  }
}

.map__content {
  height: 678px;
  position: relative;
}
@media (max-width: 1280px) {
  .map__content {
    height: 540px;
  }
}
@media (max-width: 767px) {
  .map__content {
    height: 400px;
  }
}
.map__legend {
  padding-block: 56px;
  background-color: var(--c-neutral-200, #f2f2f2);
}
@media (max-width: 767px) {
  .map__legend {
    padding-block: 30px;
  }
}

.legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .legend {
    gap: 10px;
  }
}
.legend__heading {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .legend__heading {
    margin-bottom: 20px;
  }
}
.legend__item {
  list-style: none;
}
.legend__input {
  display: none;
}
.legend__input:checked + .legend__label {
  opacity: 1;
}
.legend__label {
  font-size: var(--fs-700, clamp(1.125rem, 1.0529rem + 0.2885vw, 1.3125rem));
  line-height: 1.25;
  cursor: pointer;
  opacity: 0.5;
  gap: 30px;
  align-items: center;
  display: flex;
  transition: opacity 0.25s ease-in-out 0s;
}
@media (max-width: 767px) {
  .legend__label {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .legend__icon {
    width: 32px;
    height: 32px;
  }
}

.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 90px 100px;
  padding: 0;
  background-color: var(--c-neutral-900, #221f20);
}
@media (max-width: 959px) {
  .box {
    margin-block: 50px;
  }
}
@media (max-width: 767px) {
  .box {
    flex-direction: column;
    margin-block: 20px;
  }
}
.box__content {
  padding: 45px;
  width: 100%;
  max-width: 600px;
  color: var(--c-neutral-100, #ffffff);
}
@media (max-width: 959px) {
  .box__content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .box__content {
    max-width: unset;
  }
}
.box__content h2 {
  margin-bottom: 0;
}
.box__content h2 + p {
  margin-top: 55px;
}
@media (max-width: 959px) {
  .box__content h2 + p {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .box__content h2 + p {
    margin-top: 10px;
  }
}
.box__content p {
  max-width: 446px;
}
.box__content p:last-of-type {
  margin-bottom: 0;
}
.box__image {
  max-width: 50%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 959px) {
  .box__image {
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  .box__image {
    width: 100%;
    height: 300px;
    max-width: unset;
  }
}

.offices-summary {
  display: grid;
  grid-template-columns: 185px 1fr 185px;
  align-items: end;
  gap: 20px;
  margin-block: 65px 75px;
}
@media (max-width: 959px) {
  .offices-summary {
    grid-template-columns: 1fr 1fr;
    margin-block: 50px;
  }
}
@media (max-width: 767px) {
  .offices-summary {
    margin-block: 30px;
  }
}
@media (max-width: 579px) {
  .offices-summary {
    grid-template-columns: 1fr;
  }
}
.offices-summary__info {
  margin-bottom: 70px;
}
@media (max-width: 959px) {
  .offices-summary__info {
    margin-bottom: 0;
    text-align: center;
  }
}
.offices-summary__info span {
  display: block;
  font-family: "EngschriftDIN-D", "DIN Pro", sans-serif;
  font-size: var(--fs-900, clamp(2rem, 1.5673rem + 1.7308vw, 3.125rem));
  white-space: nowrap;
}
.offices-summary__image {
  margin-inline: auto;
}
@media (max-width: 959px) {
  .offices-summary__image {
    grid-column: span 2;
    order: 2;
  }
}
@media (max-width: 579px) {
  .offices-summary__image {
    grid-column: unset;
  }
}

.offices-table {
  margin-block: 75px 100px;
}
@media (max-width: 959px) {
  .offices-table {
    margin-block: 50px;
  }
}
@media (max-width: 767px) {
  .offices-table {
    margin-block: 30px;
  }
}
.offices-table__heading {
  margin-bottom: 50px;
  text-align: center;
}
.offices-table__table {
  margin-inline: auto;
  max-width: 328px;
  border-collapse: collapse;
}
.offices-table__table thead tr {
  border-bottom: 1px solid var(--c-neutral-900, #221f20);
}
.offices-table__table thead th {
  font-family: "EngschriftDIN-D", "DIN Pro", sans-serif;
  font-size: var(--fs-600, clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem));
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.offices-table__table thead th:first-of-type {
  width: 120px;
}
.offices-table__table thead th:nth-of-type(2) {
  width: 208px;
  padding-inline: 20px;
}
.offices-table__table tbody {
  text-align: center;
}
.offices-table__table tbody tr {
  border-bottom: 1px solid #ededed;
}
.offices-table__table tbody td {
  line-height: 34px;
}

.offices-adv {
  margin-block: 100px 90px;
}
@media (max-width: 959px) {
  .offices-adv {
    margin-block: 50px;
  }
}
@media (max-width: 767px) {
  .offices-adv {
    margin-block: 30px;
  }
}
.offices-adv__heading {
  margin-bottom: 0;
}
.offices-adv__description {
  margin-top: 55px;
  max-width: 780px;
}
@media (max-width: 959px) {
  .offices-adv__description {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .offices-adv__description {
    margin-top: 10px;
  }
}
.offices-adv__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  column-gap: 20px;
  row-gap: 50px;
  margin-top: 70px;
  list-style: none;
}
@media (max-width: 959px) {
  .offices-adv__list {
    margin-top: 30px;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .offices-adv__list {
    margin-top: 10px;
    row-gap: 10px;
  }
}
.offices-adv__item {
  text-align: center;
}
.offices-adv__icon {
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .offices-adv__icon {
    width: 65px;
    height: 65px;
    margin-bottom: 0;
  }
}

.offices-gallery__featured {
  margin-bottom: 80px;
}
@media (max-width: 959px) {
  .offices-gallery__featured {
    margin-block: 40px;
  }
}
@media (max-width: 767px) {
  .offices-gallery__featured {
    margin-block: 20px;
  }
}
.offices-gallery__heading {
  margin-bottom: 60px;
}
@media (max-width: 959px) {
  .offices-gallery__heading {
    margin-block: 40px;
  }
}
@media (max-width: 767px) {
  .offices-gallery__heading {
    margin-block: 20px;
  }
}
.offices-gallery__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 579px) {
  .offices-gallery__gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 399px) {
  .offices-gallery__item {
    height: 200px;
    object-fit: cover;
  }
}

.offices-plans__heading {
  margin-top: 100px;
  margin-bottom: 0;
}
@media (max-width: 959px) {
  .offices-plans__heading {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .offices-plans__heading {
    margin-top: 30px;
  }
}
.offices-plans__slider {
  margin-top: 60px;
  position: relative;
}
@media (max-width: 959px) {
  .offices-plans__slider {
    margin-block: 30px;
  }
}
@media (max-width: 767px) {
  .offices-plans__slider {
    margin-block: 20px;
  }
}
.offices-plans__plan img {
  margin-inline: auto;
}
.offices-plans__description {
  margin-block: 12px 0;
  margin-inline: auto;
  padding-inline: 12px;
  max-width: 1020px;
}
.offices-plans__controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 767px) {
  .offices-plans__controls {
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
  }
}

.offices-facilities {
  padding-block: 50px 45px;
  color: var(--c-neutral-100, #ffffff);
  background-color: var(--c-neutral-900, #221f20);
}
.offices-facilities__heading {
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .offices-facilities__heading {
    text-align: center;
  }
}
.offices-facilities__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 959px) {
  .offices-facilities__wrapper {
    display: block;
  }
}
.offices-facilities__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}
@media (max-width: 639px) {
  .offices-facilities__list {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }
}
@media (max-width: 399px) {
  .offices-facilities__list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.offices-facilities__item {
  text-align: center;
}
.offices-facilities__icon {
  margin-bottom: 12px;
  margin-inline: auto;
}

.ecology {
  margin-block: 100px;
}
@media (max-width: 959px) {
  .ecology {
    margin-block: 40px;
  }
}
@media (max-width: 767px) {
  .ecology {
    margin-block: 20px;
  }
}
.ecology__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 959px) {
  .ecology__wrapper {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .ecology__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 959px) {
  .ecology__image {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .ecology__image {
    width: 100%;
    max-width: unset;
    height: 300px;
    object-fit: cover;
  }
}
.ecology__content {
  max-width: 478px;
}
@media (max-width: 767px) {
  .ecology__content {
    order: -1;
  }
}
.ecology__content p:last-of-type {
  margin-bottom: 0;
}
.ecology__heading {
  max-width: 425px;
}
.ecology__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 50px;
  margin-block: 100px;
  list-style: none;
}
@media (max-width: 959px) {
  .ecology__list {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    margin-block: 50px;
  }
}
@media (max-width: 579px) {
  .ecology__list {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.ecology__item {
  text-align: center;
}
.ecology__item span {
  display: block;
  margin-inline: auto;
  max-width: 240px;
}
.ecology__icon {
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ecology__icon {
    width: 65px;
    height: 65px;
    margin-bottom: 0;
  }
}

.community {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 20px;
  margin-block: 70px 90px;
}
@media (max-width: 959px) {
  .community {
    grid-template-columns: 1fr 1fr;
    margin-block: 50px;
  }
}
@media (max-width: 767px) {
  .community {
    grid-template-columns: 1fr;
    margin-block: 30px;
  }
}
.community__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 399px) {
  .community__column figure {
    height: 200px;
    max-height: unset;
  }
}
.community__column--left {
  max-width: 480px;
}
@media (max-width: 767px) {
  .community__column--left {
    max-width: unset;
  }
}
.community__column--right a {
  display: block;
  width: 100%;
  height: 100%;
}
.community__column--right a figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 399px) {
  .community__column--right a figure {
    height: 200px;
  }
}
.community__column-wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 399px) {
  .community__column-wrapper {
    flex-direction: column;
  }
}
.community__column-wrapper figure {
  width: 100%;
  max-height: 620px;
}
.community__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: var(--c-neutral-100, #ffffff);
  background-color: var(--c-neutral-900, #221f20);
}
.community__content p:last-of-type {
  margin-bottom: 0;
}
.community__heading {
  margin-bottom: 23px;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1099px) {
  .contact {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .contact {
    flex-direction: column;
  }
}
.contact__heading {
  margin-bottom: 0;
}
.contact__subheading {
  margin-top: 35px;
  margin-bottom: 0;
  text-transform: unset;
}
@media (max-width: 767px) {
  .contact__subheading {
    margin-top: 10px;
  }
}
.contact__agent {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact__agent {
    margin-top: 10px;
  }
}
.contact__agent p {
  margin-bottom: 0;
}
.contact__agent-name:is(p) {
  margin-bottom: 16px;
}
@media (max-width: 1099px) {
  .contact img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .contact img {
    width: 100%;
  }
}

.investor {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .investor {
    grid-template-columns: 1fr;
  }
}
.investor__content p:last-of-type {
  margin-bottom: 0;
}
.investor__gallery {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .investor__gallery {
    grid-column: unset;
    margin-top: 0;
  }
}
@media (max-width: 579px) {
  .investor__gallery {
    grid-template-columns: 1fr;
  }
}
.investor__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contractor {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .contractor {
    grid-template-columns: 1fr;
  }
}
.contractor__content p:last-of-type {
  margin-bottom: 0;
}

.architect {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .architect {
    grid-template-columns: 1fr;
  }
}
.architect__content p:last-of-type {
  margin-bottom: 0;
}

.swiper-button {
  background: none;
  border: none;
  cursor: pointer;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #ffffff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #ffffff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #ffffff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #ffffff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #ffffff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #ffffff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #ffffff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #ffffff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000000;
  }
}
/*# sourceMappingURL=app.css.map */