.grey_bk {
  background: #f7f7f7;
  padding-top: 30px;
}
.main-content.page h1 {
  font-size: 2em;
  text-shadow: none;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.section-black, .main-content.page {
  background: #000;
}
.gallery-block {
  padding-top: 120px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.gallery{
  position:relative;
  width:300px;
  height:200px;
  transform-style:preserve-3d;
  animation:rotate 35s linear infinite;
}
/*.gallery:hover {
  animation-play-state: paused;
}*/
@keyframes rotate{
  from{
    transform:perspective(1200px) rotateY(0deg);
  }
  
  to{
    transform:perspective(1200px) rotateY(360deg);
  }
}
.gallery span{
  position:absolute;
  width:100%;
  height:100%;
  transform-origin:center;
  transform-style:preserve-3d;
  transform:rotateY(calc(var(--i) * 45deg)) translateZ(380px);
}
.gallery span img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}
.brochure {
  background: #222;
}
.brochure .row.align-items-center {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  border-radius: 15px 15px 15px 15px;
}
.space {
  padding: 40px;
}
.brochure p {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.8;
}
.brochure .imgs {
  width: 100%;
}
.brochure h3 {
  color: #fff;
}
.brochure .btn-custom {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
}
/* Load only essential styles first */
@media screen and (max-width: 768px) {
  .video-background video {
      height: auto;
      width: 100vw;
  }
}