#main-top {
  height: calc(100vh - 4rem);
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #FFE8DA;
  position: relative;
  overflow: hidden;
}
#main-top .box-left {
  background-color: #FFF8E7;
}
#main-top .box-left.mirror {
  left: 33.33%;
  filter: brightness(0.85) saturate(0.5);
}
#main-top .box-left.mirror::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 80, 255, 0.1);
}
#main-top .box-center {
  background-color: #FEC0CB;
}
#main-top .box-center.mirror {
  left: 66.66%;
  filter: brightness(0.9) saturate(0.8);
}
#main-top .box-center.mirror::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 80, 255, 0.2);
}
#main-top .box-right {
  background-color: #7FCFF4;
}
#main-top .box-right.mirror {
  left: 33.33%;
  filter: brightness(0.9) saturate(0.4);
}
#main-top .box-right.mirror::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 100, 255, 0.3);
}
#main-top .box-left, #main-top .box-center, #main-top .box-right {
  height: calc(100vh - 4rem);
  width: 33.33%;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
#main-top .box-left svg, #main-top .box-center svg, #main-top .box-right svg {
  height: auto;
  position: absolute;
}
#main-top .box-left svg > *, #main-top .box-center svg > *, #main-top .box-right svg > * {
  cursor: pointer;
  pointer-events: fill;
}
#main-top .box-left.real, #main-top .box-center.real, #main-top .box-right.real {
  z-index: 2;
}
#main-top .box-left.mirror, #main-top .box-center.mirror, #main-top .box-right.mirror {
  z-index: 0;
  display: none;
  position: absolute;
  transform: scaleX(-1);
}
#main-top .box-left.mirror.show, #main-top .box-center.mirror.show, #main-top .box-right.mirror.show {
  display: inline-block;
}
#main-top .artist-3 {
  width: 100%;
  top: 0;
}
#main-top .artist-4 {
  width: 80%;
  left: 0;
  top: 42%;
}
#main-top .artist-5 {
  width: 80%;
  right: 0;
  bottom: 0;
}
#main-top .artist-6 {
  width: 100%;
  left: 0;
  top: -15%;
}
#main-top .artist-8 {
  width: 100%;
  left: 0;
  bottom: 0;
}
#main-top .artist-1 {
  width: 80%;
  left: 10%;
  top: 0;
}
#main-top .artist-27 {
  width: 100%;
  left: 0;
  bottom: 0;
}

#main-video {
  background-color: #ECEBED;
  padding: 5rem;
}
#main-video .iframe-box {
  border-radius: var(--radius-value);
  overflow: hidden;
  height: 40.5vw;
  width: 72vw;
}

#main-bottom {
  background-color: #FFF8E7;
  padding: 3rem 0;
}
#main-bottom .disc h6 {
  color: #999;
  font-weight: lighter;
  margin-bottom: 0.5rem;
}
#main-bottom .disc p {
  font-weight: bolder;
}
#main-bottom .box {
  display: flex;
  flex-direction: column;
  position: relative;
}
#main-bottom .box .iframe-box {
  border-radius: var(--radius-value);
  overflow: hidden;
  width: 100%;
  height: 22vw;
}
#main-bottom .box h6 {
  padding-top: 1rem;
}

#footer {
  background-color: #B2ABA4;
  padding: 3rem 0;
  color: white;
}
#footer b {
  padding-right: 1.5rem;
}
#footer a:link, #footer a:visited {
  color: white;
}
#footer a:link:hover, #footer a:visited:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767.98px) {
  #main-top {
    height: 55vw;
  }
  #main-top .box-left, #main-top .box-center, #main-top .box-right {
    height: 55vw;
  }
  #main-top .artist-3 {
    width: 100%;
    top: 0;
  }
  #main-top .artist-4 {
    width: 100%;
    left: 0;
    top: 35%;
  }
  #main-top .artist-5 {
    width: 100%;
    right: 0;
    bottom: 0;
  }
  #main-top .artist-6 {
    width: 100%;
    left: 0;
    top: 0;
  }
  #main-top .artist-8 {
    width: 100%;
    left: 0;
    bottom: 0;
  }
  #main-top .artist-1 {
    width: 100%;
    left: 0%;
    top: 0;
  }
  #main-top .artist-27 {
    width: 100%;
    left: 0;
    bottom: 0;
  }

  #main-video {
    padding: 3rem 1.5rem;
  }
  #main-video .iframe-box {
    width: 100%;
    height: calc(52vw - 1rem);
  }

  #main-bottom {
    padding: 3rem 1.5rem;
  }
  #main-bottom .box .iframe-box {
    height: calc(52vw - 1rem);
  }

  #footer {
    padding: 3rem 1.5rem;
  }
  #footer .col-md-5 {
    margin-bottom: 3rem;
  }
}