html {
  overflow: hidden;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  overflow: auto;
  overscroll-behavior-y: none;
}

.fullscreen {
  width: 100vw;
  height: 100vh;
  background: #d7d7d7;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fullscreen::before {
  content: '';
  background: #000;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  opacity: 0.7;
}

.fullscreen__social {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
}

.fullscreen__location {
  position: absolute;
  display: flex;
  left: 20px;
  font-family: 'Open Sans', sans-serif;
  top: 17px;
  z-index: 10;
  color: #FFf;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
}

.fullscreen__location img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.fullscreen--icon {
  width: 24px;
  height: 24px;
  margin: 0px 5px;
  filter: brightness(0) invert(1);
}

.fullscreen--icon:hover {
  filter: none;
}

.fullscreen--left,
.fullscreen--right {
  width: 50vw;
  height: 100vh;
}


.fullscreen__logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  background: #000;
  width: 50vh;
  height: 50vh;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 3;
  box-shadow: -1px 1px 25px 12px rgb(123 123 123 / 42%);
  opacity: 0;
  visibility: hidden;
}

.active-logo {
  opacity: 1;
  transition: all 500ms ease-in;
  transition-delay: 300ms;
  visibility: visible;
}

.unmute-button {
  position: absolute;
  height: 30px;
  width: 30px;
  z-index: 2;
  filter: invert(1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hide-unmute {
  display: none;
}

.logo-top {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 222;
  top: 30px;
  left: -30px;
}

.logo-hidden {
  display: none;
}

#logo {
  width: 80%;
  position: relative;
  /* top: -30px; */
  top: -20px;
}

.fullscreen--appoint {
  font-family: 'Open Sans', sans-serif;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 20px;
  z-index: 3;
}

.fullscreen__placeholder {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fullscreen--appoint__link {
  color: #fff;
  width: 100%;
  font-size: 16px;
  letter-spacing: 2px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 400ms ease;
  position: relative;
}

.fullscreen--appoint__link::before {
  content: '';
  height: 4px;
  background-color: #0f8ae6;
  display: block;
  width: 0;
  bottom: 0;
  position: absolute;
  transition: width 700ms ease;
  bottom: -5px;

}

.fullscreen--appoint__link::after {
  content: '';
  height: 4px;
  background-color: #FFF;
  display: block;
  bottom: -5px;
  position: relative;
  z-index: -1;
  width: 200px;
}

.fullscreen--appoint__link:hover {
  color: #0f8ae6;
}

.fullscreen--appoint__link:hover::before {
  width: 200px;
}

video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 1;
}

.hide-video {
  opacity: 0;
  transition: all 300ms ease-out;
}

@media (max-width: 768px) {

  .fullscreen {
    display: flex;
    flex-direction: column;
  }

  .fullscreen--left, 
  .fullscreen--right {
    width: 100vw;
    height: 50vh;
  }

  .fullscreen__logo {
    height: 25vh;
    width: 25vh;
  }

  .logo-top { 
    top: 20px;
  }

  .fullscreen--left {
    order: 1;
  }

  #logo {
    top: -10px;
  }

  .fullscreen--appoint__link {
    font-size: 14px;
  }

  .fullscreen--appoint__link::after {
    width: 180px;
  }
}