body {
  margin: 0;
  font-family: proxima_regular, sans-serif;
  font-style: normal;
  font-weight: 100;
  overflow-x: hidden;
}

header {
  margin-bottom: 2vh;
}
header .header-inner {
  display: flex;
}
header .header-inner .logo {
  z-index: 4;
}
header .header-inner .logo img {
  width: 25vw;
  height: auto;
  margin: 5vh 0px 0px 5vh;
}

.top-inner {
  margin: 0 10vw;
  display: flex;
}
@media (max-width: 600px) {
  .top-inner {
    display: block;
  }
}
.top-inner .text {
  width: 50%;
}
@media (max-width: 600px) {
  .top-inner .text {
    width: 100%;
  }
}
.top-inner .text .name h2 {
  text-transform: uppercase;
  font-size: 3.5vw;
  color: black;
  margin: 0;
}
.top-inner .text .name h1 {
  text-transform: uppercase;
  font-size: 8vw;
  color: rgb(63, 135, 149);
  margin: 0;
  font-family: proxima_bold, sans-serif;
  font-weight: 200;
}
.top-inner .text .pros ul {
  list-style: none;
  padding-left: 10px;
}
.top-inner .text .pros ul li {
  line-height: 3vw;
  font-size: 1.7vw;
  font-family: proxima_bold;
}
.top-inner .text .pros ul li::before {
  content: "";
  display: inline-block;
  height: 1.75vw;
  width: 1.75vw;
  margin-right: 1vw;
  background-image: url("../../img/swoosh.svg");
}
.top-inner .text-long p {
  text-align: justify;
  color: rgb(120, 120, 120);
  font-size: 1.75vw;
}
@media (max-width: 600px) {
  .top-inner .text-long p {
    background-color: white;
    padding: 15px;
    border-radius: 25px;
  }
}
.top-inner .text .qr {
  display: flex;
  gap: 2vw;
}
.top-inner .text .qr .image img {
  width: 8vw;
}
.top-inner .text .qr .brochure {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-inner .text .qr .brochure h3 {
  margin: 0;
  font-size: 2.1vw;
  color: rgb(63, 135, 149);
  text-transform: uppercase;
  font-family: proxima_bold, sans-serif;
}
.top-inner .text .qr .brochure p {
  margin: 0;
  font-size: 1.9vw;
  color: rgb(120, 120, 120);
}
.top-inner .img {
  width: 50%;
  align-items: center;
  display: flex;
}
@media (max-width: 600px) {
  .top-inner .img {
    width: 100%;
    margin: 100px 0;
  }
}
.top-inner .img .rotate {
  width: 100%;
  max-width: 800px;
  position: relative;
}
.top-inner .img .rotate #canvas {
  display: block;
}
.top-inner .img .rotate img {
  position: absolute;
  bottom: 40%;
  right: -4vw;
  width: 5vw;
  padding: 1vw;
  max-width: 100px;
}
@media (min-width: 2000px) {
  .top-inner .img .rotate img {
    padding: 40px;
  }
}
@media (max-width: 800px) {
  .top-inner .img .rotate img {
    transform: translate(50%, 0%);
  }
}
@media (max-width: 600px) {
  .top-inner .img .rotate img {
    transform: translate(0%, 0%);
  }
}
.top-inner .img:has(.display) {
  margin: 0;
}
.top-inner .img .display > img {
  position: absolute;
  width: 100%;
  transform: scaleX(-1);
  z-index: -1;
  right: 0;
  top: 0;
}

.show {
  display: none;
  position: fixed;
  z-index: 6;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 1s;
}
.show button {
  text-align: center;
  position: absolute;
  top: 50vh;
  height: 4vh;
  width: 4vh;
  background-color: rgb(63, 135, 149);
  color: white;
  border-radius: 25%;
}
.show button#prev {
  left: 0.7vw;
}
.show button#prev img {
  transform: scaleX(-1);
}
.show button#next {
  right: 0.7vw;
}
.show .close {
  position: absolute;
  top: 5vh;
  right: 10vw;
  color: #fff;
  font-size: 10vw;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  background-color: rgb(63, 135, 149);
  border-radius: 15%;
  line-height: 5vw;
  padding: 1vw;
}
.show .inside-foto {
  margin: auto;
  display: block;
  width: 80%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  max-width: 80vh;
  -webkit-animation-name: zoomin;
  -webkit-animation-duration: 0.6s;
  animation-name: zoomin;
  animation-duration: 0.6s;
}
.show.closing .inside-foto {
  -webkit-animation-name: zoomout;
  -webkit-animation-duration: 0.6s;
  animation-name: zoomout;
  animation-duration: 0.6s;
}
.show.closing .close {
  animation-name: close;
  animation-duration: 0.5s;
}

@-webkit-keyframes zoomin {
  from {
    -webkit-transform: scale(0) translatey(0%);
  }
  to {
    -webkit-transform: scale(1) translatey(-50%);
  }
}
@keyframes zoomin {
  from {
    transform: scale(0) translatey(0%);
  }
  to {
    transform: scale(1) translatey(-50%);
  }
}
@-webkit-keyframes zoomout {
  from {
    -webkit-transform: scale(1) translatey(-50%);
  }
  to {
    -webkit-transform: scale(0) translatey(0%);
  }
}
@keyframes zoomout {
  from {
    transform: scale(1) translatey(-50%);
  }
  to {
    transform: scale(0) translatey(0%);
  }
}
@keyframes close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.gallery-inner {
  margin: 25px 10vw;
}
.gallery-inner > img {
  width: 100%;
}
@media (max-width: 600px) {
  .gallery-inner {
    margin: 25px 50px;
  }
}
@media (max-width: 450px) {
  .gallery-inner {
    margin: 25px 30px;
  }
}
.gallery-inner .video {
  width: 100%;
  background-color: rgb(63, 135, 149);
  aspect-ratio: 16/9;
  margin-bottom: 25px;
  position: relative;
}
.gallery-inner .video video {
  width: 90%;
  height: 90%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.gallery-inner .video .video-overlay-play-button {
  width: 15vw;
  height: 15vw;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  cursor: pointer;
  transition: opacity 150ms;
  z-index: 4;
  transform: translate(-50%, -50%);
}
.gallery-inner .video .video-overlay-play-button.is-hidden {
  display: none;
}
.gallery-inner .images {
  display: flex;
  gap: 25px;
}
.gallery-inner .images .item {
  width: calc(33.3333% - 8.3333333333px);
  border: 1px solid rgb(180, 180, 180);
  transition: all 2s;
}
.gallery-inner .images .item img {
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.fake-footer {
  height: 15vw;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  padding-top: 2vw;
  z-index: 5;
}
footer .footer-inner {
  margin: 0 2vw;
}
footer .footer-inner .text {
  color: rgb(63, 135, 149);
  display: flex;
  font-size: 2.5vw;
  margin-bottom: 10px;
}
footer .footer-inner .text .left {
  width: 50%;
  position: relative;
}
footer .footer-inner .text .left h3 {
  margin: 0;
}
footer .footer-inner .text .right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: end;
}
footer .footer-inner .text .right h4 {
  margin: 0;
}
footer .footer-inner .text .right .buttons {
  position: relative;
}
footer .footer-inner .text .right .buttons-inner {
  position: absolute;
  right: 10px;
  display: flex;
  gap: 2vw;
  padding-bottom: 2.2vw;
  bottom: 0;
}
footer .footer-inner .text .right .buttons-inner .link img {
  width: 3.6vw;
}
footer .footer-inner .text .right .buttons-inner .link.house img {
  width: 4vw;
  transform: translateY(-0.3vw);
}
footer .footer-inner .line {
  height: 1vh;
  background-color: rgb(63, 135, 149);
}

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