@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
.preloader {
  display: flex;
  align-items: center;
  pointer-events: none;
  justify-content: center;
  position: fixed;
  z-index: 13000;
  background-position: 50%;
  background-size: cover;
  will-change: opacity;
  transition: opacity 0.5s linear;
  opacity: 1;
}
.preloader,
.preloader:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.preloader:before {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  background-color: #4d2b62;
}
.preloader-content {
  position: relative;
  width: 100%;
}
.preloader-icon-container {
  margin-bottom: 12px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.preloader-icon {
  height: 35px;
  width: 35px;
  fill: #fff;
  animation: rotating 2s linear infinite;
}
@keyframes rotating {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader-text {
  height: 1.58em;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  text-align: center;
  font-weight: 600;
  color: #fff;
  line-height: 1.58em;
  font-family: "Roboto Mono", monospace;
  letter-spacing: 0.8px;
  font-size: 14px;
  text-transform: uppercase;
}
.iframe-con {
  padding-top: 4%;
}
.mobile-iframe {
  display: none;
}
@media only screen and (max-width: 480px) {
  .mobile-iframe {
    display: block;
    position: relative;
  }
  .desk-iframe {
    display: none;
  }
  .iframe-con {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .iframe-res {
    /* display: none; */
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    border: none;
  }
  #youtube-embed{
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0%;
    bottom: 0%;
    right: 0%;
    left: 0%;
  }
}
