* {
  font-family: ‘SUIT’, sans-serif, AppleSDGothic !important;
}
video::-webkit-media-controls-mute-button {
  display: none;
}
video::-webkit-media-controls-fullscreen-button {
  display: none;
}
video::-webkit-media-controls-volume-slider {
  display: none;
}

html,
body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  /* overflow-y: hidden; */
}
.loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(63, 56, 56);
  width: 100%;
  height: 100%;
  z-index: 100;
}
.loader img {
  width: 80%;
}

/************************** navigation *****************************/
.header {
  position: sticky;
  width: 100%;
  height: fit-content;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background-color: white;
}
.header__inner li {
  cursor: pointer;
  font-size: 2em;
}
.date {
  display: flex;
  flex-direction: row;
}
.date__web {
  display: flex;
  flex-direction: row;
}
.date__link {
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  width: 5.11em;
  margin: 0;
  padding: 0.5em;
}
.date__mobile {
  display: none;
  z-index: 2;
}
.activated--mark {
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background-color: rgb(247, 37, 0);
  top: 14%;
  right: 24%;
}
.info__link a {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  margin-right: 0.8em;
}
/************************** aritist-bar  *****************************/
.artist {
  position: sticky;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background-color: white;
}
.artist__name {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  width: 25%;
  padding: 0.5em 0;
  font-size: 1.2em;
  position: relative;
}
.artist__activated--mark {
  position: absolute;
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  background-color: rgb(247, 37, 0);
  top: 14%;
  right: calc(45% - 0.1em);
  z-index: 99;
}
/************************** main  *****************************/
.hide__section {
  position: fixed;
  width: 100%;
  background-color: rgb(255, 255, 255);
  height: 1.36em;
  z-index: 3;
}
.main {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  z-index: 1;
}
.video {
  margin-top: 0.5em;
  top: 6em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
}
.video__screen {
  width: 25%;
  margin: 0.5em;
  position: relative;
  display: flex;
  flex-direction: column;
}
.video__file {
  object-fit: cover;
  width: 100%;
  position: sticky;
  top: 8em;
  z-index: 2;
}
.text__desc {
  z-index: 1;
  /* overflow-y: scroll; */
  visibility: hidden;
  padding: 0.5em 0;
  width: 100%;
  height: 80%;
  font-size: 1.3em;
  line-height: 1.4;
}
.text__desc .blank {
  margin: 1em;
}
.text__desc .act {
  font-style: italic;
  color: rgba(255, 118, 6, 0.774);
}
.text__desc.active {
  visibility: visible;
  animation: slide-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

/************************** modal  *****************************/
.modal {
  z-index: 100;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  color: black;
}
.modal__inner {
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 20em;
  height: 15em;
  background-color: rgb(240, 240, 240);
  border-radius: 0.5em;
  color: #666;
}
.modal__desc {
  /* text-align: center; */
  font-size: 1em;
}
.modal__desc--img {
  width: 3em;
}
.modal__btn {
  background-color: rgb(243, 241, 241);
  border: 1px solid rgba(102, 102, 102, 0.767);
  color: #666;
  border-radius: 0.5em;
  width: 3.5em;
  height: 2.5em;
}
.modal__btn:hover {
  background-color: #666;
  color: #fff;
}
/************************** response ****************************/
@media (max-width: 2300px) {
  .artist__activated--mark {
    right: calc(44.5% - 0.1em);
  }
  .text__desc {
    font-size: 1.4em;
    line-height: 1.4;
  }
}
@media (max-width: 1850px) {
  .artist__activated--mark {
    right: calc(45% - 0.5em);
  }
}
@media (max-width: 1730px) {
  .artist__activated--mark {
    right: calc(45% - 0.6em);
  }
  .text__desc {
    font-size: 1.2em;
    line-height: 1.4;
  }
}
@media (max-width: 1550px) {
  .artist__activated--mark {
    right: calc(45% - 0.7em);
  }
}
@media (max-width: 1460px) {
  .text__desc {
    font-size: 1.2em;
    line-height: 1.4;
  }
}
@media (max-width: 1300px) {
  .artist__activated--mark {
    right: calc(45% - 0.8em);
  }
}
@media (max-width: 1200px) {
  .loader h3 {
    font-size: 8em;
  }
  .artist__activated--mark {
    right: calc(45% - 0.9em);
  }
  .text__desc {
    font-size: 1.2em;
  }
}
@media (max-width: 1100px) {
  .artist__activated--mark {
    right: calc(45% - 1em);
  }
  .modal__inner {
    width: 20em;
    height: 15em;
  }
}
@media (max-width: 992px) {
  .loader h3 {
    font-size: 6em;
  }
  .artist__activated--mark {
    right: calc(45% - 1.1em);
  }
  .text__desc {
    padding: 0.5em 0 0 0.5em;
    font-size: 1em;
  }
}
@media (max-width: 820px) {
  .hide__section {
    visibility: hidden;
  }
  body {
    overflow-y: scroll;
  }
  .header__inner li {
    cursor: pointer;
    font-size: 1.8em;
  }
  .artist__activated--mark {
    right: calc(45% - 1.2em);
  }
  .video {
    width: 100%;
    height: 80vh;
    margin-top: 0.5em;
    top: 6em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: unset;
    justify-content: unset;
  }
  .video__screen {
    width: 50%;
    height: fit-content;
    overflow: hidden;
    margin: 0;
    padding: 0.5em;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .video__file {
    object-fit: cover;
    width: 100%;
    position: unset;
    top: 0;
  }
  .text__desc {
    padding: 0 0.1em;
    visibility: hidden;
    width: 100%;
    overflow: scroll;
    height: 15em;
    font-size: 1.2em;
    line-height: 1.4;
  }
  .modal__inner {
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(240, 240, 240);
    border-radius: 0.5em;
    color: #666;
    font-size: 0.9em;
    padding: 0 1em;
    line-height: 1.5;
  }
  .modal__desc--img {
    width: 2em;
    margin: 1em 0;
  }
}

@media (max-width: 576px) {
  .loader h3 {
    font-size: 5em;
  }
  body {
    overflow-y: scroll;
  }
  .date__web {
    display: none;
  }
  .date__mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 5.11em;
  }
  .date__mobile .date__mobile__bar {
    font-size: 1.5em;
    color: rgb(51, 51, 51);
    padding: 0.6em;
  }
  .date__mobile .date__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 3.45em;
  }

  .date__mobile .date__links > li:first-child {
    border-top: 1px solid #888;
  }
  .date__mobile .date__link {
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    background-color: #fff;
    padding: 0.5em;
    border-bottom: 1px solid #888;
  }
  .date__mobile .date__link:hover {
    background-color: rgb(233, 233, 233);
    color: black;
  }
  .artist__name {
    position: relative;
  }
  .artist__activated--mark {
    right: calc(45% - 1.3em);
  }
  .main {
    display: flex;
    width: 100%;
  }
  .video {
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .video__screen {
    width: 100%;
    height: fit-content;
    /* overflow: hidden; */
    margin: 0;
    /* padding: 1em 1em 0 1em; */
  }
  .video__file {
    object-fit: cover;
    width: 100%;
    padding-bottom: 0.5em;
    /* height: 100%; */
  }
  .text__desc {
    padding: 0.8em 0.1em 0 0.1em;
    z-index: 1;
    visibility: hidden;
    width: 100%;
    font-size: 1.3em;
    overflow: scroll;
    height: 0;
  }

  .text__desc.active {
    visibility: visible;
    padding: 0.8em 0.1em 0 0.1em;
    z-index: 1;
    width: 100%;
    font-size: 1.3em;
    overflow: scroll;
    height: 15em;
    line-height: 1.4;
    animation: slide-bottom2 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  @keyframes slide-bottom2 {
    0% {
      transform: translateY(-30%);
    }
    100% {
      transform: translateY(0px);
    }
  }

  .modal__inner {
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(240, 240, 240);
    border-radius: 0.5em;
    color: #666;
    padding: 2em;
    font-size: 0.8em;
  }
}
@media (max-width: 404px) {
  .artist__activated--mark {
    right: calc(45% - 1.4em);
  }
  .info__link a {
    font-size: 0.8em;
  }
  .text__desc.active {
    visibility: visible;
    padding: 0.8em 0.1em 0 0.1em;
    z-index: 1;
    width: 100%;
    font-size: 1em;
    overflow: scroll;
    height: 15em;
    line-height: 1.4;
    animation: slide-bottom2 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
}
@media (max-width: 375px) {
  .loader h3 {
    font-size: 3em;
  }
  .artist__activated--mark {
    right: calc(45% - 1.4em);
  }
  .text__desc {
    font-size: 0.8em;
  }
  .modal__inner {
    padding: 2em;
    font-size: 0.8em;
  }
  .modal__desc {
    margin: 1em 0;
  }
  .modal__btn {
    margin-top: 1em;
    width: 3em;
    height: 2.5em;
  }
}
