@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap);
*,
:focus {
  outline: 0 !important;
}
body {
  font-family: Montserrat, sans-serif;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, #cac9ca, #c3c2c4, #b8b6b8);
  font-weight: 400;
}

.main {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.main .links {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 72%;
  height: 90%;
  z-index: 9999;
  margin: auto;
}
.main .links a {
  position: absolute;
  height: 50%;
  width: 100%;
  display: block;
  top: 0;
}

.main .links a:last-child {
  top: auto;
  bottom: 0;
}

.cursor {
  z-index: 9999;
  position: fixed;
  width: 15px;
  height: 15px;
  background-color: #fec10f;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  transition: 0.3s linear;
  transition-property: width, height, background-color;
  backdrop-filter: grayscale(1) blur(0.5px);
}

.video_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  overflow: hidden;
}

.video_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin: auto;
}
.video_wrap .mobile_intro {
  display: none;
  height: 100%;
  width: 100%;
  position: relative;
  margin: auto;
}
.video_wrap .mobile_intro a {
  display: block;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  position: absolute;
  height: 54%;
  object-fit: cover;
  left: 0;
  top: 3%;
    transition: 0.3s linear all;
}
.video_wrap .mobile_intro a:last-child {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  top: auto;
  bottom: 3%;
}

.video_wrap .mobile_intro a:first-child.done{
  top: 0;
}

.video_wrap .mobile_intro a:last-child.done{
  bottom: 0;
}
.video_wrap .mobile_intro a img.logo {
  position: absolute !important;
  width: 201px;
  height: auto;
}
.video_wrap .mobile_intro a:first-child img.logo {
  left: 25px !important;
  top: 25px !important;
}
.video_wrap .mobile_intro a:last-child img.logo {
  right: 25px;
  left: auto !important;
  margin-bottom: 25px;
  bottom: 5px !important;
  top: auto !important;
}
.video_wrap .mobile_intro a img {
  height: 100%;
  width: 100%;
  display: block;
}
@media all and (max-width: 991.98px) {
  .cursor {
    display: none;
  }
  .video_wrap .desktop_intro {
    object-fit: contain;
  }
}
@media all and (max-width: 576px) {
  .desktop_intro {
    display: none;
  }
  .video_wrap .mobile_intro {
    display: block;
  }
}
@media all and (max-width: 1199px) {
  .main .links {
    height: 85%;
    width: 80%;
  }
}
@media all and (max-width: 991.98px) {
  .main .links {
    height: 70%;
    width: 70%;
  }
}
@media all and (max-width: 870px) {
  .main .links {
    height: 39%;
  }
}
@media all and (max-width: 640px) {
  .main .links {
    height: 34%;
  }
}

@media all and (max-width: 576px) {
  .main .links {
    display: none;
  }
}

video::-webkit-media-controls {
  display: none !important;
}
*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.enter {
  animation: enter 0.4s linear;
  animation-delay: 1s;
}
.enter_rev {
  animation: enter_rev 0.4s linear;
  animation-delay: 1s;
}

@keyframes enter {
  0% {
    margin-left: -240px;
    opacity: 0;
  }
  0% {
    margin-left: -200px;
    opacity: 0;
  }
  100% {
    margin-left: 25px;
  }
}
@keyframes enter_rev {
  0% {
    opacity: 0;
    margin-right: -240px;
  }
  50% {
    opacity: 1;
    margin-right: -200px;
  }
  100% {
    margin-right: 25px;
  }
}
