@font-face {
  font-family: SetCon;
  src: url(/set-regcond.otf);
}
* {
  margin: 0;
  padding: 0;
}

a {
  height: 600px !important;
  width: 200px;
}

body {
  background: #000;
}

.section__brand {
  width: 100%;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__brand-item:nth-child(2) {
  margin: 0 10px;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.container__heading {
  margin-top: 38px;
  text-align: center;
  color: #fff;
  font-family: SetCon;
  font-weight: 400;
}
.container__player {
  width: 100%;
  min-height: 600px;
  margin-top: 38px;
  position: relative;
}
.container__player iframe {
  height: 600px;
}

.skyscraper {
  height: 600px;
  width: 162px;
  background: #f0d000;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0); /* Dark semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: SetCon;
  z-index: 10;
  transition: opacity 0.5s ease; /* Smooth fade-out */
}

.overlay-content {
  text-align: center;
}

#timer {
  font-size: 5.8vw;
  font-weight: bold;
  margin-top: 10px;
  color: #ff4757; /* Eye-catching color for the numbers */
}

/* Class to hide the overlay */
.overlay.hidden {
  opacity: 0;
  pointer-events: none; /* Allows users to click the player underneath */
}

.banner {
  position: sticky;
}
.banner__left {
  left: 5%;
  top: 250px;
  background: url(/img/banner-left.png) no-repeat;
  background-size: cover;
  background-position: center top;
}
.banner__right {
  right: 5%;
  top: 250px;
  background: url(/img/banner-right.png) no-repeat;
  background-size: cover;
  background-position: center top;
}

@media (max-width: 1920px) {
  .banner {
    position: fixed;
  }
  .banner__left {
    left: 200px;
    top: 250px;
  }
  .banner__right {
    right: 200px;
    top: 250px;
  }
}
@media (min-width: 1921px) {
  .banner {
    position: absolute;
  }
  .banner__left {
    left: 10vw;
  }
  .banner__right {
    right: 10vw;
  }
}
@media (max-width: 1900px) {
  .banner {
    position: fixed;
  }
  .banner__left {
    left: 100px;
    top: 250px;
    background: url(/img/banner-left.png) no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .banner__right {
    right: 100px;
    top: 250px;
    background: url(/img/banner-right.png) no-repeat;
    background-size: cover;
    background-position: center top;
  }
}
@media (max-width: 1660px) {
  .banner {
    position: fixed;
  }
  .banner__left {
    left: 2px;
  }
  .banner__right {
    right: 20px;
  }
}
@media (max-width: 1441px) {
  .banner {
    position: fixed;
  }
  .banner__left {
    left: 10px;
  }
  .banner__right {
    right: 10px;
  }
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1350px) {
  .container {
    max-width: 900px;
  }
  .container__heading {
    font-size: 14px;
  }
  .section__brand {
    height: 70px;
  }
  .section__brand-item:nth-child(odd) img {
    height: 40px;
  }
  .banner {
    top: 220px;
  }
}
@media (max-width: 1279px) {
  .banner {
    display: none;
  }
  .container {
    max-width: unset;
    width: 95%;
  }
}
@media (max-width: 1028px) {
  .container {
    width: 100%;
  }
  .container__player iframe {
    height: 400px;
  }
}
@media (max-width: 728px) {
  .container__player {
    min-height: 300px;
  }
  .container__player iframe {
    height: 300px;
  }
  .container__heading h1 {
    font-size: 20px;
  }
  .container__heading {
    font-size: 12px;
  }
}/*# sourceMappingURL=main.css.map */