@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Black.woff2") format("woff2"), url("../fonts/Gotham-Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Ultra.woff2") format("woff2"), url("../fonts/Gotham-Ultra.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }
:root {
  --color-primary: #F4BA09;
  --color-dark: #1E1E1E; }

body {
  font-family: "Gotham", sans-serif;
  background-color: #fff; }

body.disabled {
  overflow: hidden; }

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px; }

.subtitle {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary); }

@media only screen and (max-width: 767px) {
  .subtitle {
    font-size: 3rem; } }
strong, p {
  color: var(--color-dark); }

.bold {
  font-weight: 700; }

.btn {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 22px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease-in-out; }

.btn:hover {
  background-color: #c39507; }

.header {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  z-index: 200; }

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.nav__list {
  display: flex;
  flex-direction: row;
  gap: 30px; }

.nav__item a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out; }

.nav__item a:hover {
  color: var(--color-primary); }

@media only screen and (max-width: 767px) {
  .nav {
    display: none; }

  .nav__list {
    flex-direction: column;
    text-align: center; }

  .nav__item a {
    color: #fff;
    font-size: 1.4rem; } }
.nav__item--dropdown {
  position: relative; }

.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 10px; }

.nav__caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: rgba(0, 0, 0, 0.85);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 500; }

.nav__dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 500; }

.nav__dropdown li a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-primary); }

.nav__dropdown .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block; }

@media (hover: hover) and (pointer: fine) {
  .nav .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

  .nav .nav__item--dropdown:hover .nav__caret {
    transform: rotate(225deg); } }
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-position: center; }

.hero__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }

.hero__bg-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.1) 100%); }

.hero__content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
  padding-top: 80px; }

.hero__content-wrapper a,
.hero__content-wrapper button,
.hero__content-wrapper .hero__pagination {
  pointer-events: auto; }

.hero__container {
  width: 100%; }

.hero__content {
  max-width: 520px; }

.hero__title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px; }

.hero__title span {
  color: var(--color-primary); }

.hero__text {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 420px;
  margin-bottom: 40px; }

.hero__text strong {
  color: #fff;
  font-weight: 700; }

.hero__pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: auto; }

.hero__bullet {
  display: block;
  height: 25px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
  width: 24px; }

.hero__bullet--active {
  width: 52px;
  background: var(--color-primary); }

@media only screen and (max-width: 767px) {
  .hero {
    height: 75vh; }

  .hero__title {
    font-size: 3.5rem; }

  .hero__content-wrapper {
    padding-top: 40px; } }
@media only screen and (max-width: 575px) {
  .hero__text {
    font-size: 1rem; } }
.hero--priestory {
  background-image: url("../assets/hero-slider3.webp"); }

.hero--priestory .hero__text {
  color: #fff;
  list-style: disc;
  margin-left: 20px; }

.hero--projekt {
  background-size: cover;
  background-position: center; }

.hero--kontakt {
  background-image: url("../assets/hero-kontakt.webp"); }

.hero--kontakt .hero__title {
  color: var(--color-primary); }

.text-gallery {
  padding-top: 80px;
  padding-bottom: 80px; }

.text-gallery__first {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start; }

@media only screen and (max-width: 767px) {
  .text-gallery__first {
    grid-template-columns: 1fr;
    gap: 40px; } }
.text-gallery__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.8; }

.text-gallery__img {
  width: 100%; }

.text-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }

.text-gallery__grid--wide {
  grid-column: span 2; }

.text-gallery__grid a {
  display: block;
  overflow: hidden; }

.text-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.text-gallery__video {
  margin-top: 30px; }

.video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9; }

@media only screen and (max-width: 767px) {
  .video-card {
    aspect-ratio: 4/3; } }
.video-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; }

.video-card__badge {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 3;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 18px 28px;
  border-radius: 0 30px 30px 0;
  transition: opacity 0.25s ease, transform 0.25s ease; }

@media only screen and (max-width: 767px) {
  .video-card__badge {
    font-size: 1.5rem;
    padding: 12px 18px; } }
.video-card__play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease; }

.video-card__play-icon {
  display: grid;
  place-items: center;
  position: relative; }

.video-card__play-icon img {
  width: 110px;
  height: 110px; }

@media only screen and (max-width: 767px) {
  .video-card__play-icon img {
    width: 80px;
    height: 80px; } }
.video-card.is-playing .video-card__play {
  opacity: 0;
  pointer-events: none; }

.video-card.is-playing .video-card__badge {
  opacity: 0;
  pointer-events: none; }

.references {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #F2F2F2;
  text-align: center; }

.references__title {
  color: #AAAAAA;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 40px; }

@media only screen and (max-width: 767px) {
  .references__title {
    font-size: 1.2rem; } }
.references__images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px; }

@media only screen and (max-width: 767px) {
  .references__images {
    flex-direction: column;
    gap: 30px; } }
.references__images img {
  width: 100px;
  height: auto;
  object-fit: cover;
  display: block; }

.gallery {
  padding-top: 70px;
  padding-bottom: 90px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px; }

@media only screen and (max-width: 991px) {
  .gallery__grid {
    gap: 18px; } }
@media only screen and (max-width: 767px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  display: block;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 1/1; }

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; }

.gallery__item--wide {
  grid-column: 1/-1;
  aspect-ratio: 21/9; }

@media only screen and (max-width: 767px) {
  .gallery__item--wide {
    aspect-ratio: 16/9; } }
.gallery__btn {
  margin-top: 30px;
  display: block;
  text-align: center; }

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden; }

.footer p {
  color: #fff; }

.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

@media only screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    gap: 20px; } }
.footer__title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; }

@media only screen and (max-width: 767px) {
  .footer__title {
    font-size: 3rem; } }
.footer__img {
  width: 300px;
  height: auto;
  object-fit: cover;
  display: block; }

@media only screen and (max-width: 767px) {
  .footer__img {
    width: 200px; } }
.footer__logo {
  background-color: #fff;
  position: absolute;
  top: 50px;
  padding: 20px 40px;
  width: 800px; }

@media only screen and (max-width: 767px) {
  .footer__logo {
    position: static;
    width: auto; } }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 100px;
  text-decoration: underline; }

.footer__contact a {
  color: #fff;
  font-size: 2rem;
  font-weight: 800; }

@media only screen and (max-width: 767px) {
  .footer__contact a {
    font-size: 1.4rem; } }
@media only screen and (max-width: 767px) {
  .footer__contact {
    margin-top: 20px; } }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px; }

@media only screen and (max-width: 767px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 40px; } }
.contact > div {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.contact__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 1.1rem;
  line-height: 1.8; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: underline; }

.contact__details a {
  color: #000;
  font-size: 2rem;
  font-weight: 800; }

@media only screen and (max-width: 767px) {
  .contact__details a {
    font-size: 1.4rem; } }
.contact-form {
  padding-top: 0;
  padding-bottom: 80px; }

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }

@media only screen and (max-width: 767px) {
  .contact-form__grid {
    grid-template-columns: 1fr; } }
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px; }

.contact-form__field--full {
  grid-column: 1 / -1; }

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark); }

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.2s; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary); }

.contact-form textarea {
  resize: vertical;
  min-height: 140px; }

.contact-form__error {
  color: #c0392b;
  font-size: 0.85rem; }

.contact-form__success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-weight: 600; }

.building-details {
  padding-top: 60px;
  padding-bottom: 30px; }

.building-details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; }

@media only screen and (max-width: 991px) {
  .building-details__grid {
    grid-template-columns: repeat(2, 1fr); } }
@media only screen and (max-width: 767px) {
  .building-details__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; } }
.building-details__item {
  background: #fff;
  border: 1px solid #AAAAAA;
  padding: 50px 30px 70px;
  text-align: center;
  position: relative; }

.building-details__item hr {
  position: absolute;
  bottom: -20px;
  left: -1px;
  right: 0;
  height: 13px;
  border: none;
  background-color: var(--color-primary);
  width: 101%; }

.building-details__item img {
  height: 70px;
  margin-bottom: 30px; }

@media only screen and (max-width: 767px) {
  .building-details__item {
    padding: 25px 15px 40px; } }
.building-details__title {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px; }

@media only screen and (max-width: 767px) {
  .building-details__title {
    font-size: 1.2rem; } }
.building-details__desc {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000; }

@media only screen and (max-width: 767px) {
  .building-details__desc {
    font-size: 1rem; } }
.building__two-images {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }

@media only screen and (max-width: 767px) {
  .building__two-images {
    grid-template-columns: 1fr; } }
.building__two-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.building__map {
  margin-top: 30px; }

.building__map iframe {
  width: 100%; }

.hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 9999; }

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px; }

.hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center; }

.hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0; }

.hamburger span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  transform-origin: left center; }

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px; }

.hamburger span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  transform-origin: left center; }

.nav-toggler {
  display: none; }

@media only screen and (max-width: 991px) {
  .hamburger, .nav-toggler {
    display: block; } }
.mobile-menu {
  margin-top: 0;
  background: #000;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 110; }

.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all; }

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