html {
  font-size: 0.625rem;
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: #fff;
  background: #000;
  margin: 0;
  padding: 0;
}
.outsidewrapper {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}
.container.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
header.header .logo {
  content: url('../Images/corporatefilm/v3g_icon.png');
  height: 5rem;
}
@media (min-width: 768px) {
  header.header .logo {
    content: url('../Images/corporatefilm/logo_vandriegroup.png');
  }
}
footer.footer {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/corporatefilm/chairs.jpg') center top no-repeat;
  background-size: 100% 100%;
  opacity: 0.6;
  animation-name: chairs_out;
  animation-duration: 4.5s;
}
@media (orientation: portrait) {
  footer.footer {
    background-size: 100% 50%;
  }
}
.content {
  position: relative;
  margin-top: 7rem;
  width: 100%;
  padding: 0 5%;
}
.content:before,
.content:after {
  content: '';
  position: absolute;
  top: 0;
  width: 5%;
  height: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.6;
  animation-name: curtain_out;
  animation-duration: 6s;
  z-index: 10;
}
.content:before {
  left: 0;
  background-image: url('../Images/corporatefilm/curtain-left.jpg');
}
.content:after {
  right: 0;
  background-image: url('../Images/corporatefilm/curtain-right.jpg');
}
.videocontainer {
  position: relative;
  width: 100%;
  padding: 56.25% 0 0 0;
}
#vimeoPlayer,
#vimeo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity ease 0.4s;
}
.buttons,
.button-container {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  aspect-ratio: 100 / 56.25;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 0 5%;
  gap: 20px 2%;
  z-index: 1;
  color: #fff;
  opacity: 1;
  animation-name: buttons_in;
  animation-duration: 6s;
}
.buttons .button,
.button-container .button,
.buttons .video-button,
.button-container .video-button {
  width: 23.5%;
}
.buttons .button span.mobile,
.button-container .button span.mobile,
.buttons .video-button span.mobile,
.button-container .video-button span.mobile {
  display: none;
}
.buttons .button span.language,
.button-container .button span.language,
.buttons .video-button span.language,
.button-container .video-button span.language {
  display: flex;
}
.buttons:not(.mobile) .button,
.button-container:not(.mobile) .button,
.buttons:not(.mobile) .video-button,
.button-container:not(.mobile) .video-button {
  font-size: clamp(16px, 2.6vw, 26px);
  font-style: italic;
  font-weight: bold;
  width: 32%;
  background-image: url('../Images/corporatefilm/bg-buttons-2025.jpg');
  background-size: 310% auto;
}
@media (max-width: 768px) {
  .buttons:not(.mobile) .button span.mobile,
  .button-container:not(.mobile) .button span.mobile,
  .buttons:not(.mobile) .video-button span.mobile,
  .button-container:not(.mobile) .video-button span.mobile {
    display: flex;
  }
  .buttons:not(.mobile) .button span.language,
  .button-container:not(.mobile) .button span.language,
  .buttons:not(.mobile) .video-button span.language,
  .button-container:not(.mobile) .video-button span.language {
    display: none;
  }
}
.buttons:not(.mobile) .button:nth-child(1),
.button-container:not(.mobile) .button:nth-child(1),
.buttons:not(.mobile) .video-button:nth-child(1),
.button-container:not(.mobile) .video-button:nth-child(1) {
  background-position: left top;
}
.buttons:not(.mobile) .button:nth-child(2),
.button-container:not(.mobile) .button:nth-child(2),
.buttons:not(.mobile) .video-button:nth-child(2),
.button-container:not(.mobile) .video-button:nth-child(2) {
  background-position: center top;
}
.buttons:not(.mobile) .button:nth-child(3),
.button-container:not(.mobile) .button:nth-child(3),
.buttons:not(.mobile) .video-button:nth-child(3),
.button-container:not(.mobile) .video-button:nth-child(3) {
  background-position: right top;
}
.buttons:not(.mobile) .button:nth-child(4),
.button-container:not(.mobile) .button:nth-child(4),
.buttons:not(.mobile) .video-button:nth-child(4),
.button-container:not(.mobile) .video-button:nth-child(4) {
  background-position: left bottom;
}
.buttons:not(.mobile) .button:nth-child(5),
.button-container:not(.mobile) .button:nth-child(5),
.buttons:not(.mobile) .video-button:nth-child(5),
.button-container:not(.mobile) .video-button:nth-child(5) {
  background-position: center bottom;
}
.buttons:not(.mobile) .button:nth-child(6),
.button-container:not(.mobile) .button:nth-child(6),
.buttons:not(.mobile) .video-button:nth-child(6),
.button-container:not(.mobile) .video-button:nth-child(6) {
  background-position: right bottom;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button,
.button-container:not(.mobile):has(:nth-child(7)) .video-button {
  width: 23.5%;
  background-size: 400% auto;
  animation-name: buttons_zoom_in;
  animation-duration: 6s;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(1),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(1) {
  background-position: left 10%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(2),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(2) {
  background-position: 33% 10%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(3),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(3) {
  background-position: 67% 10%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(4),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(4) {
  background-position: right 5%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(5),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(5) {
  background-position: 13% 85%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(6),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(6) {
  background-position: center 85%;
}
.buttons:not(.mobile):has(:nth-child(7)) .video-button:nth-child(7),
.button-container:not(.mobile):has(:nth-child(7)) .video-button:nth-child(7) {
  background-position: 87% 85%;
}
.buttons.mobile,
.button-container.mobile {
  position: fixed;
  top: 15px;
  left: unset;
  right: 20px;
  height: 40px;
  max-width: calc(100% - 100px);
  aspect-ratio: unset;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 0;
  gap: 5px;
  z-index: 2;
}
.buttons.mobile .button,
.button-container.mobile .button,
.buttons.mobile .video-button,
.button-container.mobile .video-button {
  width: 40px;
  height: 40px;
  color: #999;
}
.buttons.mobile .button span.mobile,
.button-container.mobile .button span.mobile,
.buttons.mobile .video-button span.mobile,
.button-container.mobile .video-button span.mobile {
  display: flex;
}
.buttons.mobile .button span.language,
.button-container.mobile .button span.language,
.buttons.mobile .video-button span.language,
.button-container.mobile .video-button span.language {
  display: none;
}
.button,
.video-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #666;
  cursor: pointer;
  transition: all ease 0.4s;
}
.button span,
.video-button span {
  position: relative;
  z-index: 1;
}
.button:after,
.video-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all ease 0.4s;
  animation-name: buttons_darken;
  animation-duration: 6s;
}
.button:hover,
.video-button:hover {
  color: #000;
  background-color: #fff;
  box-shadow: 0 0 35px 0 rgba(255, 255, 255, 0.75);
}
.button:hover:after,
.video-button:hover:after {
  background: rgba(255, 255, 255, 0.33);
}
.cookiemessage {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.75);
  border-top: 1px solid #fff;
  z-index: 2;
  display: none;
}
.cookiemessage .contentcontainer {
  padding: 0;
  margin: 0;
}
.cm_content {
  text-align: center;
}
.cm_content * {
  display: inline-block;
  color: #fff;
  text-align: center;
}
.cm_content ul {
  margin: 0;
}
.cm_content li {
  padding: 0 10px;
}
.cm_content li:last-child {
  cursor: pointer;
  text-decoration: underline;
  border-left: 1px dotted rgba(255, 255, 255, 0.6);
}
@keyframes curtain_out {
  0% {
    width: 51%;
    opacity: 1;
  }
  33.33% {
    width: 51%;
    opacity: 1;
  }
  100% {
    width: 5%;
    opacity: 0.6;
  }
}
@keyframes chairs_out {
  0% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes buttons_in {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes buttons_zoom_in {
  0% {
    background-size: 10% auto;
  }
  75% {
    background-size: 10% auto;
  }
  100% {
    background-size: 400% auto;
  }
}
@keyframes buttons_darken {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  85% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.4);
  }
}
/*# sourceMappingURL=corporatefilm.css.map */