.home-hero {
  width: 100%;
  height: 100vh;
  height: calc(var(--vhi, 1vhi) * 100);
  position: relative;
  background: #000;
  overflow: hidden;
}

.hero-title {
  position: absolute;
  text-align: center;
  color: #fff;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 28px 0px;
  opacity: 0;
}

.hero-title img {
  max-width: 100%;
}

@media screen and (max-width: 799px) {
  .hero-title img {
    max-width: 85%;
  }
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  filter: blur(0);
}

.hero-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-scroll {
  color: #fff;
  text-decoration: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 70px;
  height: 70px;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  margin-left: -35px;
  transform: translateY(-20px);
}

.hero-scroll span {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 500;
  position: absolute;
  font-size: 17px;
  width: 70px;
  height: 20px;
  line-height: 20px;
  left: 0;
  top: 0;
  display: block;
  text-align: center;
}

.hero-scroll::before {
  width: 1px;
  height: 40px;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  left: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  border-top: 0 solid white;
  border-bottom: 0 solid white;
  will-change: all;
  animation: stretch-border 0s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
}

@keyframes stretch-border {
  0% {
    border-top-color: transparent;
    border-top-width: 0;
    border-bottom-width: 0;
  }
  19% {
    border-top-color: white;
    border-top-width: 40px;
    border-bottom-width: 0;
  }
  20% {
    border-top-width: 0;
    border-bottom-width: 40px;
  }
  40% {
    border-top-width: 0;
    border-bottom-width: 0;
  }
  100% {
    border-top-width: 0;
    border-bottom-width: 0;
  }
}

.home-hero.cue .hero-bg {
  opacity: 1;
  transition: all 1.1s cubic-bezier(0.39, 0.575, 0.565, 1);
  filter: blur(0px);
}

.home-hero.cue .hero-bg img {
  transition: all 2s cubic-bezier(0.39, 0.575, 0.565, 1);
  transform: scale(1.0);
}

.home-hero.cue .hero-title {
  opacity: 1;
  transition: all 1s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.home-hero.cue .hero-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.section-about .copy {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}

.section-about .copy p {
  margin: 24px 0;
}

@media screen and (max-width: 799px) {
  .section-about .copy {
    font-size: 15px;
    text-align: left;
  }
}

.section-about .overview-table {
  width: 100%;
}

.section-about .overview-table th, .section-about .overview-table td {
  vertical-align: top;
  line-height: 1.5;
  padding-bottom: 8px;
}

.section-about .overview-table th {
  width: 140px;
  padding-right: 30px;
}

@media screen and (max-width: 799px) {
  .section-about .overview-table {
    display: block;
  }
  .section-about .overview-table th, .section-about .overview-table td {
    display: block;
    width: 100%;
  }
  .section-about .overview-table th {
    padding-bottom: 4px;
  }
  .section-about .overview-table td {
    padding-bottom: 12px;
  }
}

.section-about .about-whats .image {
  text-align: center;
}

.section-about .about-whats .image img {
  width: 100%;
}

@media screen and (max-width: 799px) {
  .section-about .about-whats .image {
    margin-bottom: 40px;
  }
  .section-about .about-whats .image img {
    width: 80%;
  }
}

.section-about .about-whats .text {
  padding-left: 60px;
}

.section-about .about-whats .text .title {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

@media screen and (max-width: 799px) {
  .section-about .about-whats .text {
    padding-left: 0;
  }
  .section-about .about-whats .text .title {
    margin-bottom: 12px;
    font-size: 22px;
  }
}

.section-artists {
  padding: 90px 80px;
}

@media screen and (min-width: 800px) and (max-width: 1109px) {
  .section-artists {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 799px) {
  .section-artists {
    padding: 45px 23px;
  }
}

.artists-list {
  display: flex;
  flex-wrap: wrap;
}

.artists-list + .title-sub-section {
  margin-top: 150px;
}

@media screen and (max-width: 799px) {
  .artists-list + .title-sub-section {
    margin-top: 50px;
    margin-bottom: 25px;
  }
}

.artists-list .item {
  width: 25%;
  padding: 10px;
}

.artists-list .item.modal-none {
  pointer-events: none !important;
}

@media screen and (max-width: 799px) {
  .artists-list .item {
    width: 50%;
    padding: 5px;
  }
}

.artists-card {
  display: block;
  color: #C8C8C8;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-bottom: 30px;
}

.artists-card .name {
  font-size: 20px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 799px) {
  .artists-card .name {
    font-size: 16px;
  }
}

.artists-card .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #fff;
  backface-visibility: hidden;
}

.artists-card .image img {
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.artists-card .data {
  display: none;
}

html.mouse .artists-card:hover,
html.touch .artists-card.touched {
  color: #fff;
}

html.mouse .artists-card:hover .image img,
html.touch .artists-card.touched .image img {
  transform: scale(1.08);
  opacity: 0.9;
  transition: all 4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 799px) {
  .section-map .btn-lg.btn-mail {
    margin-top: 10px;
  }
}

.map-head {
  width: 100%;
  height: 400px;
  background: url(../../img/home/map_head.jpg) center center no-repeat;
  background-size: cover;
}

html.mouse .map-head {
  background-attachment: fixed;
}

@media screen and (max-width: 799px) {
  .map-head {
    height: 200px;
  }
}

.map-detail .title {
  font-size: 26px;
}

@media screen and (max-width: 799px) {
  .map-detail {
    margin-top: 40px;
  }
  .map-detail .title {
    font-size: 20px;
  }
}

.map-terms .terms-content {
  overflow: hidden;
  height: 258px;
}

@media screen and (max-width: 799px) {
  .map-terms .terms-content {
    height: 255px;
  }
  .map-terms .terms-content,
  .map-terms .terms-content .text-large {
    font-size: 12px !important;
  }
}

.map-terms.open .terms-content {
  height: auto;
}

.map-terms.open .btn-accordion {
  display: none;
}

@media screen and (max-width: 799px) {
  .map-terms .terms-content {
    height: 255px;
  }
  .map-terms .terms-content,
  .map-terms .terms-content .text-large {
    font-size: 12px !important;
  }
}
